List of store accounts
GET /api/merchant/accounts
Request example
- CURL
curl --request GET \
--url https://{{domain}}/api/merchant/accounts \
--header 'X-Identity: {{api_key}}' \
--header 'X-Signature: {{sign}}'
Response Structure
The response is returned as an array of AccountDTO objects.
Response Example
[
{
"id": "df2b175e-0aef-45e3-8d03-80881389901c",
"currency": "USDT",
"sum": {
"amount": "10.74886973",
"currency": "USDT",
"subunit": 8
},
"frozenSum": {
"amount": "0.00000000",
"currency": "USDT",
"subunit": 8
},
"withdrawalFee": {
"amount": "5.00000000",
"currency": "USDT",
"subunit": 8
}
}
]