Query Payment order
GET /api/v1/payout/query
Request header parameter description
Name
Type
Required
Description
x-api-key
string
yes
appkey【Please go to the merchant backend to obtain】
x-api-nonce
string
yes
random string
x-api-timestamp
int(10)
yes
Unix timestamp
x-api-signature
string
yes
Signature Hash value
(GET)Request parameters
Name
Type
Required
Description
sys_trade_no
string
pick one of two
System order number (sys_trade_no and out_trade_no can be selected, if both exist, the default is sys_trade_no)
out_trade_no
string
pick one of two
Merchant order number (sys_trade_no and out_trade_no can be selected. If both exist, the default is sys_trade_no)
Response example
{
"code": 0,
"msg": "successful",
"data": {
"sys_trade_no": "679f2d8c3223c6e720843a63111162c5",// System order number
"out_trade_no": "135dfacf5200bb52da53e5c512c1f229",// Merchant order number
"assets": "TRC20-USDT",// Assets Type
"quantity": 10,// Quantity of assets
"usdt_quantity":10,// Quantity of USDT
"exc_rate":1,// Assets execution exchange rate
"status": 2,// Order Status
"to": "TNBRPUdTi6JZTPjn1Pr3MbL7kVJmW9Qz6k",// Transaction receiving address
"create_time": 1695289216,// Creation time
"payfor_time": 0,// Payment time
"callbk_time": 1695289928// Callback time
}
}Last updated