Skip to main content

Get withdrawal info by ID

GET /api/merchant/withdrawals/{id}

URL params

NameTypeDescription
idstringWithdrawal ID

Пример запроса

curl --request GET \
--url https://{{domain}}/api/merchant/withdrawals/{{id}} \
--header 'X-Identity: {{api_key}}' \
--header 'X-Signature: {{sign}}'

Response structure

The response is returned as an array of WithdrawalDTO objects.

Response Example

{
"id": "41b2e564-ecd1-418f-8c08-176d5e081ad3",
"createdAt": "2024-11-22T08:25:40+00:00",
"updatedAt": "2024-11-22T08:25:44+00:00",
"sum": {
"amount": "10.00000000",
"currency": "USDT",
"subunit": 8
},
"fee": {
"amount": "5.00000000",
"currency": "USDT",
"subunit": 8
},
"address": "TNPXDJcnLqNwPbTB6ux7k1fSgM2v7jetP9",
"txId": "e0395c1b1a75547dfeff1e8c3cff4cfd37c"
}