Endpoint

POST Callback URL configured by the merchant
Each withdrawal order will trigger two callbacks. Click here to learn more about the callback rules.

Request Parameters

ParameterData TypeRequiredDescription
webhookTypeStringYesWebhook type, set to Withdraw.
idStringYesOrder ID.
statusStringYesOrder status. Refer to the order status enum for details.
txHashStringYesOn-chain transaction hash.
networkFeeStringYesNetwork fee charged for the withdrawal.
platformFeeStringYesPlatform commission fee charged during the withdrawal process.
businessIdStringNoMerchant-defined business ID, if any.
timestampLongYesUNIX timestamp (in milliseconds).

Request Example

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