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
Name | Type | Description |
---|---|---|
accountId | string | Identifier number of the account for withdrawal. |
amount | string | Amount to be withdrawn. |
address | string | Destination address for the withdrawal (e.g., card number or cryptocurrency address). |
code2FA | string | Two-factor authentication code. |
substractFeeFromAmount | boolean | null | If 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
}