# 通知卡片被移出IMEI池

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /customerNotifyUrl:
    post:
      summary: 通知卡片被移出IMEI池
      deprecated: false
      description: ''
      tags:
        - API接口/异步通知
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
                  description: 请求的唯一标识
                timestamp:
                  type: integer
                  description: 当前时间戳，10位数字
                nonce:
                  type: string
                  description: 5位随机正整数
                sign:
                  type: string
                  description: 签名串，通知参数的签名，通过它验证请求数据的合法性。
                event:
                  type: string
                  description: 通知的类型，此通知为 CardMovedOutIMEIPool
                iccid:
                  type: string
                  description: iccid
                plockGroupId:
                  type: integer
                  description: 卡被移出之前所在的池 ID
              x-apifox-orders:
                - id
                - timestamp
                - nonce
                - sign
                - event
                - iccid
                - plockGroupId
              required:
                - id
                - timestamp
                - nonce
                - sign
                - event
                - iccid
                - plockGroupId
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          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-248790646-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
