--- url: >- https://acquirer-api-docs-v4-en.pingpongx.com/notes/zh/notify/bindNotify/APM/accTokenCancelMerchant/index.md description: >- 商家取消签约通知接口用于接收商家取消支付服务签约的通知。适用于需要实时了解商家状态变更的场景,支持通过异步方式接收通知。关键参数包括merchantId(商家ID)和cancelTime(取消时间)。 --- # 商家主动发起取消签约通知 ```apidef endpoint: POST tokenization.apm.accTokenCancelMerchant name: 商家主动发起取消签约通知 summary: APM 商户发起解约异步回调 variant: APM tags: Notify, Tokenization, APM ``` 商家取消签约通知接口用于接收商家取消支付服务签约的通知。适用于需要实时了解商家状态变更的场景,支持通过异步方式接收通知。关键参数包括merchantId(商家ID)和cancelTime(取消时间)。 ## 请求参数 | 参数名 | 类型 | 必填 | 说明 | |--------|------|------|------| | accId | string | M | PingPong 店铺号 | | clientId | string | M | PingPong 商户号 | | sign | string | M | 签名 | | signType | string | M | 签名规约,支持 MD5、SHA256,具体见本文签名规约: /notes/zh/onlinePayment/developer/sign/一栏,所有参数均参与签名 | | bizContent | string | M | 响应参数作为整体传入,长度不限。该字段内容为 JSON 字符串,反序列化后的结构见 contentSchema。 | | └─ notifyType | string | M | 通知类型 | | └─ payMethod | string | M | 支付方式 | | └─ merchantUserId | string | M | 用户id | | └─ token | string | M | 授权token | ### 请求示例 ```json { "accId": "2022102018024210348883", "bizContent": "{\"notifyType\":\"ACCESS_TOKEN_CANCEL_OF_MERCHANT\",\"payMethod\":\"Boost\",\"merchantUserId\":\"1260489643332523151\",\"token\":\"60a33bc16fa8251d6207e6398a572458\"}", "clientId": "2022102018024210348", "sign": "CFBD974882298A92AA0D018630CAD002F416AB44131DB4D7F8A5B8B042312DB4", "signType": "SHA256" } ```