The relevant endpoint and http method information for making withdrawals are given below.
HTTP Method | URL |
---|---|
POST | /v1/Transaction/WithdrawalToBankInstant |
Params | Type | Mandatory |
---|---|---|
ext_transaction_id | string | Yes |
receiver_wallet_number | string | Yes |
receiver_national_id | string | Yes |
receiver_account_holder_name | string | Yes |
receiver_iban | string | Yes |
description | string | Yes |
amount | decimal | Yes |
currency_code | string | Yes |
is_save_bank_account | boolean | No |
bank_account_name | string | No |
hash_key | string | No |
kolas_address | string | No |
kolas_address_type | string | No |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | object |
transaction_id | string |
ext_transaction_id | string |
transaction_amount | decimal |
transaction_fee_amount | decimal |
previous_amount | decimal |
request_id | string |
wallet_info | object |
id | string |
tenant_id | string |
name | string |
account_number | string |
account_type | string |
created_date_utc | string |
number | string |
phone_country_code | string |
phone_number | string |
string | |
total_balance | decimal |
monthly_incoming_total | decimal |
monthly_outgoing_total | decimal |
access_level_status_id | int |
access_level_status | string |
payment_balance | object |
available | decimal |
unavailable | decimal |
cash_balance | object |
available | decimal |
unavailable | decimal |
transaction_limits | object |
max_balance | decimal |
topup_credit_limit | decimal |
topup_cash_limit | decimal |
withdrawal_limit | decimal |
payment_limit | decimal |
wallet_to_wallet_limit | decimal |
kyc_level_status | string |
currency_code | string |
user_kyc_info | string |
is_topup_default | boolean |
tax_number | string |
loyalty_record_required | boolean |
REQUEST
{
"ext_transaction_id": "aab388a8-7c54-444a-b256-304b362b0fff",
"receiver_wallet_number": "1087257111",
"receiver_national_id": "11111111111",
"receiver_account_holder_name": "John Doe",
"receiver_iban": "TR06001340000058",
"description": "Withdrawal request",
"amount": 10,
"currency_code": "TRY",
"is_save_bank_account": false,
"bank_account_name": "",
"hash_key": "",
"kolas_adress": " ",
"kolas_adress_type": " "
}
RESPONSE
{
"status": 0,
"code": "100",
"message": "İşlem Talebi Alındı.",
"payload": {
"transaction_id": "0",
"ext_transaction_id": null,
"transaction_amount": 3.0000,
"transaction_fee_amount": 0.0,
"previous_amount": 0.0,
"request_id": "0",
"wallet_info": {
"id": "886855225643543543634088461",
"tenant_id": "5",
"name": "",
"account_number": "67678682294561",
"account_type": "Personal",
"created_date_utc": "2022-08-08T08:06:50.289429+00:00",
"number": "96297830",
"phone_country_code": null,
"phone_number": null,
"email": null,
"total_balance": 4.25,
"monthly_incoming_total": 0.0,
"monthly_outgoing_total": 0.0,
"access_level_status_id": 1,
"access_level_status": "Aktif",
"payment_balance": {
"available": 0.00,
"unavailable": 0.00
},
"cash_balance": {
"available": 0.25,
"unavailable": 4.00
},
"transaction_limits": {
"max_balance": 1000000.0000,
"topup_credit_limit": 999993.0000,
"topup_cash_limit": 999993.0000,
"withdrawal_limit": 999998.7000,
"payment_limit": 999997.0000,
"wallet_to_wallet_limit": 1000000.0000
},
"kyc_level_status": null,
"currency_code": "TRY",
"user_kyc_info": null,
"is_topup_default": false,
"tax_number": null,
"loyalty_record_required": false
}
}
}