The endpoint and http method information regarding the money transfer made by a corporate account to an individual wallet is given below.
HTTP Method | URL |
---|---|
POST | /v1/Transaction/BusinessToPersonalTransfer |
Params | Type | Mandatory | Description |
---|---|---|---|
sender_account_number | string | Yes | Sender Account Number |
sender_wallet_number | string | Yes | Sender Wallet Number |
ext_transaction_id | string | Yes | Unique Transaction ID |
currency_code | string | Yes | Currency Code |
amount | decimal | Yes | Amount |
description | string | No | Description |
receiver_wallet_number | string | Yes | Receiver Wallet Number |
hash_key | string | No | Hash Key |
Params | Type | Description |
---|---|---|
status | int | Status |
code | string | Code |
message | string | Message |
payload | object | Payload |
transaction_id | string | Transaction Id |
transaction_amount | decimal | Transaction Amount |
receiver_first_name | string | Receiver First Name |
receiver_last_name | string | Receiver Last Name |
receiver_account_number | string | Receiver Account Number |
receiver_wallet_number | string | Receiver Wallet Number |
sender_wallet_info | object | Sender Wallet Info |
id | string | Sender Wallet Id |
tenant_id | string | Tenant Id |
name | string | Sender Wallet Name |
account_number | string | Account Number |
account_type | string | Account Type |
created_date_utc | string | Created Date |
number | string | Sender Wallet Number |
fast_iban | string | Fast IBAN |
phone_country_code | string | Phone Country Code |
phone_number | string | Phone Number |
string | ||
total_balance | decimal | Total Balance |
monthly_incoming_total | decimal | Monthly Incoming Balance |
monthly_outgoing_total | decimal | Monthly Outgoing Balance |
access_level_status_id | int | Access Level Status Id |
access_level_status | string | Account Status (Active/Inactive) |
payment_balance | object | Payment Balance |
available | decimal | Payment Balance / Available |
unavailable | decimal | Payment Balance / Unavailable |
cash_balance | object | Cash Balance |
available | decimal | Cash Balance / Available |
unavailable | decimal | Cash Balance / Unavailable |
transaction_limits | object | Transaction Limits |
max_balance | decimal | Transaction Limits / Max Balance |
topup_credit_limit | decimal | Transaction Limits / Topup Credit Limit |
topup_cash_limit | decimal | Transaction Limits / Topup Cash Limit |
withdrawal_limit | decimal | Transaction Limits / Withdrawal Limit |
payment_limit | decimal | Transaction Limits / Payment Limit |
wallet_to_wallet_limit | decimal | Transaction Limits / Wallet to Wallet Limit |
kyc_level_status | string | KYC Level Status |
currency_code | string | Currency Code |
user_kyc_info | string | User KYC Info |
is_topup_default | boolean | Is Topup Default ? |
tax_number | string | Tax Number |
loyalty_record_required | boolean |
REQUEST (POST):
{
"sender_account_number: "52152155",
"sender_wallet_number": "355851155",
"amount": 1,
"currency_code": "TRY",
"receiver_wallet_number": "854543559",
"ext_transaction_id": "1555577845411",
"hash_key": "",
"description": "P2B "
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": "İşlem başarılı",
"payload": {
"transaction_id": "3158192056038976525",
"transaction_amount": 1.0,
"receiver_first_name": "",
"receiver_last_name": "",
"receiver_account_number": "0102SPYW",
"receiver_wallet_number": "814043299",
"sender_wallet_info": {
"id": "7503775172255149069",
"tenant_id": "5",
"name": "",
"account_number": "SIPAYTEST0102",
"account_type": "Business",
"created_date_utc": "2022-01-07T12:06:20.4872807+00:00",
"number": "355831156",
"fast_iban": "TR670083801825001124462730",
"phone_country_code": null,
"phone_number": null,
"email": null,
"total_balance": 330.91,
"monthly_incoming_total": 0.0,
"monthly_outgoing_total": 0.0,
"access_level_status_id": 1,
"access_level_status": "Aktif",
"payment_balance": {
"available": 10000.00,
"unavailable": 0.00
},
"cash_balance": {
"available": 1000.91,
"unavailable": 327.00
},
"transaction_limits": {
"max_balance": 1000.0000,
"topup_credit_limit": 1000.0000,
"topup_cash_limit": 1000.0000,
"withdrawal_limit": 1000.0000,
"payment_limit": 1000.0000,
"wallet_to_wallet_limit": 1000.0000
},
"kyc_level_status": null,
"currency_code": "TRY",
"user_kyc_info": null,
"is_topup_default": false,
"tax_number": null,
"loyalty_record_required": false
}
}
}