接口地址

POST 商户配置的回调地址
每笔提现订单,会回调两次,点击 这里 了解详细的回调规则。

请求参数

参数数据类型必须描述
webhookTypeString回调类型,这里为 Withdraw
idString订单 ID。
statusString订单状态,见订单枚举。
txHashString链上交易哈希
networkFeeString网络手续费
platformFeeString平台佣金,提现过程中收取的佣金
businessIdString商户自定义的业务 ID,如有。
timestampLongUNIX 时间戳(毫秒)

请求示例

{
    "businessId": "9273491234213434",
    "id": "603273294627606528",
    "networkFee": "1",
    "platformFee": "0.25",
    "status": "Success",
    "txHash": "76dfd95035a6b262ffb7ab8d255177ee05327583efbcbdf4400c52eba1de1abb",
    "webhookType": "Withdraw",
    "timestamp": 1729475874520
}