Requests
Payout > Query
Query the payout order.
API URL
POST /api/v1/payout/query
Request
Request Parameters
Name | Type | Required | Description |
---|---|---|---|
pid | integer(int64) | true | Project ID |
cid | integer(int64) | true | Order Serial Number |
nonce | string | true | 6-character random string |
timestamp | integer(int64) | true | Timestamp |
sign | string | true | Signature |
Request Example
Response
Response Result
Name | Type | Description |
---|---|---|
code | string | Response Code |
msg | string | Response Message |
data | object | Response Data Object |
Response data
Object
Name | Type | Description |
---|---|---|
pid | integer(int64) | Project ID |
chain_id | string | Chain ID |
token_id | string | Token ID |
currency | string | Currency Identifier |
address | string | Address |
amount | string | Amount |
status | integer(int32) | Status |
third_party_id | string | Caller Customized ID |
remark | string | Remark |
memo | string | memo or tag on blockchain,Only support Ton and Xrp |
txid | string | Transaction Hash |
block_height | string | Block Height |
block_time | integer(int64) | Block Time |
Response status
enum
status | Description |
---|---|
0 | Awaiting audit |
3 | Audit cancel |
4 | Audit reject |
5 | Awaiting sign |
1 | Sign pass |
2 | Sign reject |
6 | Transaction success |
7 | Transaction fail |