Get Internal Transfer Records
HTTP Request
GET /private/v1/asset/sub-member/transfer/list
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| transfer_id | false | string | Transfer result ID |
| coin | false | string | Coin |
| status | false | string | Transfer status |
| start_time | false | integer | The start timestamp (s) |
| end_time | false | integer | The end timestamp (s) |
| direction | false | integer | Pagination |
| limit | false | integer | Number of records |
| cursor | false | string | cursor information: used for pagination. Default value: "" |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| list | array | Object |
| > transfer_id | string | Transfer ID |
| > coin | string | Transferred coin |
| > amount | string | Transferred amount |
| > user_id | int32 | Account |
| > sub_user_id | int32 | Sub Account |
| > timestamp | string | Transfer created timestamp (ms) |
| > status | string | Transfer status |
| > type | true | string |
| cursor | string | Refer to the cursor request parameter |
Request Example
GET /private/v1/asset/sub-member/transfer/list?transfer_id=d5c3f1e3-097c-4532-9f4d-3b2990bdcd85 HTTP/1.1
X-BAPI-API-KEY: 0b2XYJpi8bi9tZPhft
X-BAPI-SIGN: 221ba23854643b451d49d0e56d4bdf7a3192c2e9b9dea8fbddb07e538b0fbf72
X-BAPI-TIMESTAMP: 1724600673292
X-BAPI-RECV-WINDOW: 1000000
Host: openapi-testnet.zoomex.com
Response Example
{
"ret_code": 0,
"ret_msg": "OK",
"result": {
"list": [
{
"transfer_id": "d5c3f1e3-097c-4532-9f4d-3b2990bdcd85",
"coin": "USDT",
"amount": "10",
"user_id": 100500689,
"sub_user_id": 103741450,
"timestamp": "1724600351",
"status": "SUCCESS",
"type": "IN"
}
],
"cursor": "eyJtaW5JRCI6NjEwMzExLCJtYXhJRCI6NjEwMzExfQ=="
}
}