{
    "check_sum":"1234",
    "time":"12345678"
}
Description:After receiving a withdrawal request, the platform will call the secondary confirmation interface provided by the third party to confirm that the request is a withdrawal request normally initiated by the merchant. This interface only defines the interface specification, the specific interface needs to be implemented by the developer.
Interface address:The interface address is provided by the developer and can be configured on the platform by contacting the admin
Request method:POST

Decrypted Request Parameters

ParamtypeRequiredDescription
timelongRequiredCurrent timestamp
charsetStringRequiredCoding format, no special case, transfer parameter UTF-8
versionStringRequiredInterface version number, no special case,transfer parameter v2
request_idStringRequiredRequest unique identity
from_uidStringRequiredTransfer out user ID
to_addressStringRequiredTransfer in user address
amountStringRequiredWithdrawal amount, including withdrawal service charge; The service charge needs to be configured in the background of the merchant
symbolStringRequiredWithdrawal coin
check_sumStringRequiredRandom check code. The third party returns this field as it is. The platform considers it successful

**Response Data Parameters **

ParamtypeRequiredDescription
check_sumStringRequiredCheck in request parameter check_sum
timeStringOptionaltime stamp
{
    "check_sum":"1234",
    "time":"12345678"
}