# 批量重置卡

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/card/reset:
    post:
      summary: 批量重置卡
      deprecated: false
      description: 这个接口实际是批量任务走的消息队列处理，返回结果表示本次调用API是否成功，具体执行结果需要到【CMP平台--任务管理--批量任务】查看
      tags:
        - API接口/卡业务接口
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appkey:
                  type: string
                  x-apifox-mock: '{{APPKEY}}'
                  description: >-
                    appkey平台用以确定客户端应用的身份。应用键对应一个密钥 secret。要基于服务平台开发应用，必须事先通过申请获取
                    appkey/secret 后，才能进行应用的开发。
                timestamp:
                  type: integer
                  x-apifox-mock: '{{TIMESTAMP}}'
                  description: 当前时间戳，10位数字
                nonce:
                  type: string
                sign:
                  type: string
                  x-apifox-mock: '{{SIGN}}'
                  description: 签名串，请求参数的签名，服务平台通过它验证请求数据的合法性。
                iccids:
                  type: string
                  description: iccid卡号，用英文逗号隔开,单次最多传100个
              x-apifox-orders:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccids
              required:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccids
            example: "{\r\n    \"appkey\": \"{{APPKEY}}\",\r\n    \"timestamp\": {{TIMESTAMP}},\r\n    \"nonce\": 49890,\r\n    \"sign\": \"{{SIGN}}\",\r\n    \"iccids\": \"89920919871264224367\"\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
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: API接口/卡业务接口
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2330898/apis/api-414346978-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
