Withdraw Status

Request URL:

  • /v1/token/withdraw_status

Method:

  • POST

Parameter:

Parameter name
Required
Type
Explain

merchant_id

Yes

string

hash

Yes

string

data

Yes

object

—order_id

Yes

string

—nonce

Yes

string

—timestamp

Yes

number

Request example

{
  "merchant_id": "9cc5c-d243a-9f952-66b92",     // Replace with your actual merchant ID
  "hash": "sm2uliyCbmCP0ISZw/Cm41qO3jbww7VdoH27MLWfrcDHY7IfiEPIC72VCovIlEfmeQAI3wFrKoZiflbCJKpFOA==",          // Replace with the actual encrypted hash
  "data": {
    "order_id": "17188041436139639757",     // Blockchain network (e.g., "tron")
    "nonce": "abcde12345",               // Randomly generated string for uniqueness
    "timestamp": 1627893600                 // Current timestamp (in seconds)
  }
}

Return example

  {
    "statusCode": 200,
    "order_id": 177239283928
    "chain" : "tron",
    "symbol" : "usdt",
    "amount" : 1,
    "address" : "TXsdaf34234234",
    "txid": "asdf123123123123123",
    "status": "Done",
}

Return parameter description

Parameter name
Type
Explain

statusCode

int

status

String

Pending Processing Confirming Done Failed Cancelled

Last updated