--- url: >- https://acquirer-api-docs-v4-en.pingpongx.com/notes/zh/notify/bindNotify/APM/accTokenCancelMerchantUser/index.md description: >- 用户在钱包侧发起取消签约通知接口用于接收用户取消与商户签约状态的通知。适用于需要实时更新用户签约状态的场景,确保系统数据一致性。该接口通过异步方式发送通知,包含用户标识、商户号等关键参数。 --- # 用户在钱包侧发起取消签约通知 ```apidef endpoint: POST tokenization.apm.accTokenCancelMerchantUser name: 用户在钱包侧发起取消签约通知 summary: APM 用户侧解约异步回调 variant: APM tags: Notify, Tokenization, APM ``` 用户在钱包侧发起取消签约通知接口用于接收用户取消与商户签约状态的通知。适用于需要实时更新用户签约状态的场景,确保系统数据一致性。该接口通过异步方式发送通知,包含用户标识、商户号等关键参数。 ## 请求参数 | 参数名 | 类型 | 必填 | 说明 | |--------|------|------|------| | 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 { "clientId": "2024031805505590159", "bizContent": "{\"notifyType\":\"ACCESS_TOKEN_CANCEL_OF_MERCHANT_USER\",\"payMethod\":\"Alipay\",\"merchantUserId\":\"1102190\",\"token\":\"21b2537121b9137bcf155fceba84d48a0e91d6ba4674519912b9e7237b9b6dd7\"}", "accId": "2024031805505590159628", "sign": "KDSD974023128A02AA0D01KWXSCAD002F416AB44321DB4D7F8A5B8B042LS1S", "signType": "SHA256" } ```