Withdraw

Request URL:

  • /v1/token/withdraw

Method:

  • POST

Supported Symbol

  • TRC20

Parameter:

Parameter name
Required
Type
Explain

merchant_id

Yes

string

hash

Yes

string

data

Yes

object

—chain

Yes

string

TRON

—symbol

Yes

number

Token symbol (e.g., "usdt")

—address

Yes

string

—amount

Yes

number

—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": {
    "chain": "tron",                        // Blockchain network (e.g., "tron")
    "symbol": "usdt",                        // Token symbol (e.g., "usdt")
    "address": "TJCBzku1S8TPTgyyk3Ja4kepk1BFDQAVq1", // Withdrawal address
    "amount": 1,                            // Amount to withdraw
    "nonce": "abcde12345",               // Randomly generated string for uniqueness
    "timestamp": 1627893600                 // Current timestamp (in seconds)
  }
}

Return example

  {
    "statusCode": 200,
    "order_id" : "17188041436139639757"
}

Return parameter description

Parameter name
Type
Explain

statusCode

int

Last updated