Skip to main content

AccountWithdrawalCreateRequestDTO

The AccountWithdrawalCreateRequestDTO object represents the data structure for creating a withdrawal request from a specified account. This object is used to pass all necessary data for processing the transaction.

Field Descriptions

NameTypeDescription
accountIdstringIdentifier number of the account for withdrawal.
amountstringAmount to be withdrawn.
addressstringDestination address for the withdrawal (e.g., card number or cryptocurrency address).
code2FAstringTwo-factor authentication code.
substractFeeFromAmountboolean | nullIf true, the fee will be deducted from the withdrawal amount. Default is false.

Example

{
"accountId": "df2b175e-0aef-45e3-8d03-80881389901c",
"amount": "1000.00",
"address": "TNPXDJcnLqNwPbTB6ux7k1fSgM2v7jetP9",
"code2FA": "123456",
"substractFeeFromAmount": false
}