# 刷新套餐用量

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/card/refreshUsage:
    post:
      summary: 刷新套餐用量
      deprecated: false
      description: |
        此接口用于刷新套餐的用量。调用成功后，系统会触发一次向运营商同步用量的操作。

        不要在定时任务中调用此接口，仅在用户手动刷新用量时才使用。

        5分钟内仅可调用一次。
      tags:
        - API接口/卡业务接口
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appkey:
                  type: string
                timestamp:
                  type: integer
                nonce:
                  type: integer
                sign:
                  type: string
                iccid:
                  type: string
              required:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccid
              x-apifox-orders:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccid
            example: "{\r\n    \"operator\": 5,\r\n    \"appkey\": \"{{APPKEY}}\",\r\n    \"timestamp\": {{TIMESTAMP}},\r\n    \"nonce\": 90174,\r\n    \"sign\": \"{{SIGN}}\",\r\n    \"iccid\": \"8988308650100524999\"\r\n}"
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                required:
                  - code
                  - message
                x-apifox-orders:
                  - code
                  - message
              example:
                code: '200'
                message: 操作成功
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: API接口/卡业务接口
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/2330898/apis/api-364764868-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
