Skip to main content

WithdrawalDTO

The WithdrawalDTO object represents withdrawal data, including information about the amount, fee, address, and operation status.

Field Descriptions

NameTypeDescription
idstringUnique identifier of the withdrawal.
createdAtstringDate and time of withdrawal creation in ISO 8601 format.
updatedAtstringDate and time of the last withdrawal update in ISO 8601 format.
sumMoneyDTOWithdrawal amount.
feeMoneyDTOWithdrawal fee.
addressstringAddress to which the withdrawal is made.
txIdstring | nullTransaction hash

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": "TMPXDJcnLqNwPbTB6ux7k1fSgM2v7jetP9",
"txId": "e0395c1b1a75547dfeff1e8c3cff4cfd31c",
"accountId": "df2b175e-0aef-45e3-8d03-80881389901c"
}