Query withdrawal order fund details
GET/withdraw/transactionDetail
Query the list of transaction addresses and amounts of multiple withdrawal orders.
This interface is used by the signature tool, and merchants generally do not need to call it.
Request
Query Parameters
Chain ID
This is the platform internal ID, not the chain ID on the chain or from the wallet, can be obtained from Get Chain List interface
Possible values: >= 1
, <= 100
List of withdrawal order IDs
Responses
- 200
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
Status code
Status message on success or error message on failure
Detailed description when error
data
object
Chain ID
This is the platform internal ID, not the chain ID on the chain or from the wallet, can be obtained from Get Chain List interface
Possible values: Value must match regular expression ^0x[a-fA-F0-9]{40}$
List of token addresses involved in the transaction (not the native cryptocurrency of the current blockchain)
Address format: hexadecimal
Possible values: Value must match regular expression ^0x[a-fA-F0-9]{40}$
List of addresses where tokens are transferred to
Address format: hexadecimal
List of token transfer amounts
Note: The value of this field is an integer, calculated by (actual_amount * 10^currency_decimals)
Possible values: Value must match regular expression ^0x[a-fA-F0-9]{40}$
List of addresses where native cryptocurrencies are transferred to
Address format: hexadecimal
The native currency of the Ethereum chain is ETH, the native currency of the Tron chain is TRX, and the native currency of the Binance chain is BNB...
List of transfer amounts of native cryptocurrencies
Note: The value of this field is an integer, calculated by (actual_amount * 10^currency_decimals)
{
"code": 0,
"msg": "string",
"description": "string",
"data": {
"chainId": 0,
"erc20s": [
"string"
],
"erc20Tos": [
"string"
],
"erc20Values": [
0
],
"ethTos": [
"string"
],
"ethValues": [
0
]
}
}
{
"code": 200,
"msg": "success",
"data": {
"chainId": 1,
"erc20s": [
"0xEa51342dAbbb928aE1e576bd39eFf8aaf070A8c6",
"0xEa51342dAbbb928aE1e576bd39eFf8aaf070A8c6"
],
"erc20Tos": [
"0x005F11063C669A79Ec55D2008DE2F754fd4A37cE",
"0x005F11063C669A79Ec55D2008DE2F754fd4A37cE"
],
"erc20Values": [
10000000,
10000000
],
"ethTos": [],
"ethValues": []
}
}
Unauthorized
Forbidden
Not Found