# 取消当前会话

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/card/cancelLocation:
    post:
      summary: 取消当前会话
      deprecated: false
      description: |
        此接口会断开当前连接，迫使设备端重新发起连接。

        5分钟内仅可调用一次。
      tags:
        - API接口/卡业务接口
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appkey:
                  type: string
                timestamp:
                  type: integer
                nonce:
                  type: integer
                sign:
                  type: string
                iccid:
                  type: string
              required:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccid
              x-apifox-orders:
                - appkey
                - timestamp
                - nonce
                - sign
                - iccid
            example:
              operator: 5
              appkey: '{{APPKEY}}'
              timestamp: 1761104681
              nonce: 90174
              sign: '{{SIGN}}'
              iccid: '8988308650100524999'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                required:
                  - code
                  - message
                x-apifox-orders:
                  - code
                  - message
              example:
                code: '200'
                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-364767281-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://oapi.eiotclub.com
    description: 生产环境
security: []

```
