Transfer History
Transfer History
Query transfer history
Request frequency limit: 1/1s
Request URL
GET /deepcoin/internal-transfer/history-order
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| account | false | string | Recipient account |
| coin | false | string | Currency |
| status | false | string | Transfer status Processing: 1Approved: 2Rejected: 3 |
| receiverUID | false | string | Recipient UID |
| orderId | false | string | Order ID |
| startTime | false | int | Start timestamp, cannot exceed the last 6 months |
| endTime | false | int | End timestamp, cannot exceed the last 6 months |
| page | false | int | Page number, default 1 |
| size | false | int | Results per page, default 10 |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| data | array | Data |
| >receiverAccountType | string | Recipient account type |
| >receiverAccount | string | Recipient account |
| >receiverUID | string | Recipient UID |
| >coin | string | Currency |
| >orderId | string | Order ID |
| >amount | string | Transfer amount, excluding fees |
| >status | string | Status |
| >createTime | int | Creation timestamp |
| >transferWay | string | Transfer method |
| >updateTime | int | Last update timestamp |
| count | int | Total count |
| page | int | Current page number |
| size | int | Results per page |
Response Example
{
"code": "0",
"msg": "",
"data": {
"data": [
{
"orderId": "49e39268-42e8-4dfb-bd56-e0eff5b7c455",
"receiverAccountType": "phone",
"receiverAccount": "",
"coin": "USDT",
"amount": "10",
"transferWay": "OpenAPI",
"status": "In Process",
"receiverUID": 36007196,
"createTime": 1739258691,
"updateTime": 1739258691
},
{
"orderId": "40ce50f2-a96d-4efc-8168-148fd82df25f",
"receiverAccountType": "phone",
"receiverAccount": "",
"coin": "USDT",
"amount": "10",
"transferWay": "OpenAPI",
"status": "In Process",
"receiverUID": 36007196,
"createTime": 1739258558,
"updateTime": 1739258558
}
],
"count": 2,
"page": 1,
"size": 10
}
}