# 查询eSIM订单可退金额

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/esim/queryRefundAmount:
    post:
      summary: 查询eSIM订单可退金额
      deprecated: false
      description: ''
      tags:
        - API接口/卡业务接口
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appkey:
                  type: string
                timestamp:
                  type: integer
                nonce:
                  type: integer
                sign:
                  type: string
                orderId:
                  type: string
                  description: 订单号
              required:
                - appkey
                - timestamp
                - nonce
                - sign
                - orderId
              x-apifox-orders:
                - appkey
                - timestamp
                - nonce
                - sign
                - orderId
            example:
              appkey: string
              timestamp: 0
              nonce: 0
              sign: string
              orderId: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      amount:
                        type: integer
                        description: 金额，单位分。对于日元，单位是元。
                      currency:
                        type: string
                        description: 币种
                    required:
                      - amount
                      - currency
                    x-apifox-orders:
                      - amount
                      - currency
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: '200'
                data:
                  amount: 140
                  currency: USD
                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-268458591-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
