Get All Order List
Query merchant's order trade history as both Maker and Taker, scroll pagination mode (recommended).
HTTP Request
- GET
/api/v3/fiat/market/order/paginationV2
Required Permission: P2P Account Read
Request Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| coinId | string | no | Coin ID (e.g., BTC) |
| advOrderNo | string | no | Order ID |
| side | string | no | Trade direction: BUY / SELL |
| orderDealState | string | no | Order status (see enum values) |
| startTime | long | no | Start time, defaults to last month if empty (timestamp) |
| endTime | long | no | End time (timestamp) |
| lastCreateTime | long | no | Last record's createTime from previous page. Not needed for first page, required for subsequent pages. |
| lastId | string | no | Last record's advOrderNo from previous page. Not needed for first page, required for subsequent pages. |
| limit | integer | no | Records per page |
Response Parameters
| Name | Type | Description |
|---|---|---|
| advOrderNo | string | Order number |
| tradableQuantity | BigDecimal | Trade quantity |
| price | BigDecimal | Trade price |
| amount | BigDecimal | Trade amount (fiat) |
| coinName | string | Coin name |
| state | string | Order status: NOT_PAID / PAID / DONE / CANCEL / TIMEOUT etc. |
| payTimeLimit | long | Payment deadline (millisecond timestamp) |
| side | string | Trade direction: BUY / SELL |
| fiatUnit | string | Fiat currency unit |
| createTime | long | Creation time (millisecond timestamp) |
| paymentInfo | array | Payment method info |
| paymentInfo[].id | integer | User payment account ID |
| paymentInfo[].payMethod | integer | Payment method type |
| paymentInfo[].account | string | Account |
| paymentInfo[].payee | string | Payee |
| paymentInfo[].extend | string | Extended info (JSON string) |
| merchantInfo | object | Returned when counterparty is a merchant (mutually exclusive with userInfo) |
| merchantInfo.uid | string | Merchant UID |
| merchantInfo.nickName | string | Merchant nickname |
| merchantInfo.memberId | string | Merchant member ID |
| userInfo | object | Returned when counterparty is a regular user (mutually exclusive with merchantInfo) |
| userInfo.account | string | User account |
| userInfo.nickName | string | User nickname |
| userInfo.roleType | integer | Role type |
| userInfo.enableMerchantApplication | boolean | Whether eligible for merchant application |
| complaining | boolean | Whether under appeal |
| unreadCount | integer | Unread message count |