The endpoint and http method information regarding the money transfer made by a corporate account to an corporate wallet is given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/Transaction/BusinessToBusinessTransfer |
| Params | Type | Mandatory |
|---|---|---|
| sender_account_number | string | Evet |
| sender_wallet_number | string | Evet |
| ext_transaction_id | string | Evet |
| currency_code | string | Evet |
| amount | decimal | Evet |
| description | string | Hayır |
| receiver_wallet_number | string | Evet |
| hash_key | string | Hayır |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| transaction_id | string |
| transaction_amount | decimal |
| payment_balance_movement | decimal |
| cash_balance_movement | decimal |
| receiver_first_name | string |
| receiver_last_name | string |
| receiver_account_number | string |
| receiver_wallet_number | string |
| sender_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 (POST):
{
"sender_account_number": "151151155",
"sender_wallet_number": "355851155",
"amount": 1,
"currency_code": "TRY",
"receiver_wallet_number": "814513159",
"ext_transaction_id": "1555577845411",
"description": "B2B "
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": "İşlem başarılı",
"payload": {
"transaction_id": "3158191056038976525",
"transaction_amount": 1.0,
"payment_balance_movement": 0.0,
"cash_balance_movement": 10.000000,
"receiver_first_name": "",
"receiver_last_name": "",
"receiver_account_number": "0102SPYW",
"receiver_wallet_number": "814513159",
"sender_wallet_info": {
"id": "7503775172255149069",
"tenant_id": "5",
"name": "",
"account_number": "151151155",
"account_type": "Business",
"created_date_utc": "2022-01-07T12:06:20.4872807+00:00",
"number": "355831156",
"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
}
}
}