# 卡片断网通知

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /customerNotifyUrl:
    post:
      summary: 卡片断网通知
      deprecated: false
      description: |-
        客户提供接收异步通知的地址（HTTP/HTTPS）
        卡无法联网,没有其他套餐可用
      tags:
        - API接口/异步通知
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                timestamp:
                  type: integer
                  description: 当前时间戳，10位数字
                nonce:
                  type: integer
                  description: 5位随机正整数
                  minimum: 10000
                  maximum: 99999
                sign:
                  type: string
                  description: 签名串，通知参数的签名，通过它验证请求数据的合法性。
                id:
                  type: string
                  description: 请求的唯一标识
                event:
                  type: string
                  description: 通知的类型，此通知为 CardStopped
                iccid:
                  type: string
                  description: iccid
              x-apifox-orders:
                - id
                - timestamp
                - nonce
                - sign
                - event
                - iccid
              required:
                - timestamp
                - nonce
                - sign
                - id
                - iccid
                - event
            example:
              event: CardStopped
              iccid: '89852000263320817044'
              id: 7bpDUV2P4oAGv37MBBHaAeJk
              nonce: 90082
              sign: 66468E1A1E5E06DFF73E8508F95C89B19EDAC3E4
              timestamp: 1746050702
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: 成功接收响应SUCCESS
                x-apifox-orders:
                  - status
                required:
                  - status
              example:
                status: SUCCESS
          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-180590250-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
