# 池添加卡

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/pool/card/add:
    post:
      summary: 池添加卡
      deprecated: false
      description: 池添加卡
      tags:
        - API接口/池
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appkey:
                  type: string
                  description: >-
                    appkey平台用以确定客户端应用的身份。应用键对应一个密钥 secret。要基于服务平台开发应用，必须事先通过申请获取
                    appkey/secret 后，才能进行应用的开发。
                timestamp:
                  type: integer
                  description: 当前时间戳，10位数字
                nonce:
                  type: integer
                  description: |
                    5位随机正整数
                sign:
                  type: string
                  description: 签名串，请求参数的签名，服务平台通过它验证请求数据的合法性。
                pool_object_id:
                  type: integer
                  description: 池对象 id
                iccid_arr:
                  type: string
                  description: |+
                    iccid 数组。用逗号分隔

              x-apifox-orders:
                - 01KDS43VKP8HNY1YZR3CDTQHM8
                - pool_object_id
                - iccid_arr
              required:
                - appkey
                - timestamp
                - nonce
                - sign
                - pool_object_id
                - iccid_arr
              x-apifox-refs:
                01KDS43VKP8HNY1YZR3CDTQHM8:
                  $ref: '#/components/schemas/oapi_base_req%20CN'
              x-apifox-ignore-properties:
                - appkey
                - timestamp
                - nonce
                - sign
            example:
              appkey: '{{APPKEY}}'
              timestamp: '{{TIMESTAMP}}'
              nonce: 95977
              sign: '{{SIGN}}'
              pool_object_id: 380
              iccid_arr: 89852000261098750306,89852000261098028000,89852000261098028026
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: 200：表示成功其他失败
                  message:
                    type: string
                    description: 成功或失败原因
                  data:
                    type: object
                    properties: {}
                    x-apifox-orders: []
                    description: |
                      响应数据
                    x-apifox-ignore-properties: []
                x-apifox-orders:
                  - 01KDS44W59D4AGAR8J9N6J47G7
                x-apifox-refs:
                  01KDS44W59D4AGAR8J9N6J47G7:
                    $ref: '#/components/schemas/oapi_base_resp%20CN'
                required:
                  - code
                  - message
                  - data
                x-apifox-ignore-properties:
                  - code
                  - message
                  - data
          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-399122606-run
components:
  schemas:
    oapi_base_req CN:
      type: object
      properties:
        appkey:
          type: string
          description: >-
            appkey平台用以确定客户端应用的身份。应用键对应一个密钥 secret。要基于服务平台开发应用，必须事先通过申请获取
            appkey/secret 后，才能进行应用的开发。
        timestamp:
          type: integer
          description: 当前时间戳，10位数字
        nonce:
          type: integer
          description: |
            5位随机正整数
        sign:
          type: string
          description: 签名串，请求参数的签名，服务平台通过它验证请求数据的合法性。
      x-apifox-orders:
        - appkey
        - timestamp
        - nonce
        - sign
      required:
        - appkey
        - timestamp
        - nonce
        - sign
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
    oapi_base_resp CN:
      type: object
      properties:
        code:
          type: string
          description: 200：表示成功其他失败
        message:
          type: string
          description: 成功或失败原因
        data:
          type: object
          properties: {}
          x-apifox-orders: []
          description: |
            响应数据
          x-apifox-ignore-properties: []
      x-apifox-orders:
        - code
        - message
        - data
      required:
        - code
        - message
        - data
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
