Fiat Withdraw Confirm
Frequency limit: 20 times/1s (UID)
Description
Submit a fiat withdrawal order. Call the Fiat Withdraw Pre-check interface first to obtain the recordCode before submitting this request.
HTTP Request
- POST /api/v2/fiat/withdraw-confirm
Request Example
curl -X POST "https://api.cointr.com/api/v2/fiat/withdraw-confirm" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{"currency":"TRY","withdrawAmount":"1000","bankCode":"AKBANK","bankName":"Akbank","accountNumber":"1234567890","accountType":"checking","channelCode":"BIRAPI","paymentMethod":"BANK_TRANSFER","bankCardId":123456}'
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| currency | String | Yes | Fiat currency code, e.g. TRY. Defaults to TRY if not provided. |
| | withdrawAmount | String | Yes | Withdrawal amount | | | bankCode | String | No | Bank code | | bankCardId | Long | No | Bank card ID |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1750055923070,
"data": {
"orderId": 1310858952417959936
}
}
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| orderId | Long | Withdrawal order ID |