English
List Receive Accounts
- Method:
GET - Path:
/coin/v1/receive-account/list - Parameters: Query
Request fields
| Field | Type | Required | Constraint | Description |
|---|---|---|---|---|
page | uint32 | No | ≥1; omitted or 0 treated as 1 | Page number; default 10 items per page |
currency | string | No | See Currency | Filter by currency; omit to return all |
Response fields (data)
| Field | Type | Description |
|---|---|---|
page | uint32 | Current page |
page_size | uint32 | Page size (fixed 10) |
total | uint32 | Total records |
list | array | Receive account list; element fields match Create receive account response |
Success response example
json
{
"status": 200,
"msg": "SUCCESS",
"data": {
"page": 1,
"page_size": 10,
"total": 2,
"list": [
{
"receive_account_no": "MWAxxxxxxxxxxxUT",
"currency": "USDT",
"pay_method": 2,
"account": "TXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"description": "TRC 出款地址",
"status": 1,
"pay_info": {
"network": "TRC20",
"address": "TXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"payee_name": "TRC20 · TXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
}
]
}
}