Endpoint
GET/v1/account/order/query
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | String | No | Order ID returned by the platform. |
| businessId | String | No | Merchant-defined business ID. Either id or businessId must be provided. |
| timestamp | Long | Yes | UNIX timestamp (in milliseconds). |
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | String | Yes | Unique identifier for the order, defined by the platform. |
| businessId | String | Yes | Merchant-defined business ID. |
| redirectUrl | String | Yes | URL to redirect to after payment completion. |
| amount | String | No | Payment amount defined by the merchant (empty for variable-amount orders). |
| tokenName | String | Yes | Name of the cryptocurrency used for payment, e.g., USDT, BTC. |
| chainName | String | Yes | Name of the blockchain network, e.g., Ethereum, Bsc. |
| address | String | Yes | Address to receive payment, a blockchain address. |
| status | String | Yes | Current status of the order. |
| txHash | String | No | Blockchain transaction hash, returned when the user completes payment. |
| amountActual | Double | No | Actual amount paid by the user, returned when the user completes payment. |
| createdTime | Long | Yes | Order creation time (UTC). |
| expiryTime | Long | Yes | Order expiration time (UTC). |