The endpoint and http method information for send money to the relevant bank account of contracted account holders is given below.
HTTP Method | URL |
---|---|
POST | /v1/Transaction/SendMoneyToBankAccount |
Params | Type | Mandatory |
---|---|---|
sender_account_number | string | Yes |
sender_wallet_number | string | Yes |
ext_transaction_id | string | Yes |
receiver_account_holder_name | string | Yes |
receiver_iban | string | Yes |
receiver_national_id_or_tax_no | string | Yes |
description | string | No |
amount | decimal | Yes |
currency_code | string | Yes |
hash_key | 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 | datetime |
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:
{
"sender_account_number":"123456789",
"sender_wallet_number":"123456789",
"ext_transaction_id":"20351400",
"receiver_account_holder_name":"XXXX XXXX",
"receiver_iban":"TR1XXX062000XXX0000XXXXXXX",
"receiver_national_id_or_tax_no":"5XX6X70XXX0",
"description":"Sipay Money transfer",
"amount":1,
"currency_code":"TRY",
"hash_key":""
}
SUCCESSFUL RESPONSE:
{
"status": 0,
"code": "100",
"message": "İşlem Talebi Alındı.",
"payload": {
"transaction_id": "0",
"ext_transaction_id": null,
"transaction_amount": 1.0000,
"transaction_fee_amount": 0.0,
"previous_amount": 0.0,
"request_id": "0",
"wallet_info": {
"id": "88685522566315561564088461",
"tenant_id": "5",
"name": "",
"account_number": "6123156294561",
"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": 1.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": 1.00
},
"transaction_limits": {
"max_balance": 1000000.0000,
"topup_credit_limit": 999996.0000,
"topup_cash_limit": 999996.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
}
}
}