The endpoint and http method information regarding the product payment made to a corporate account via an individual user account is given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/Transaction/Payment |
| Params | Type | Mandatory |
|---|---|---|
| sender_account_number | string | Yes |
| sender_wallet_number | string | Yes |
| ext_transaction_id | string | Yes |
| business_code | string | No |
| currency_code | string | Yes |
| amount | decimal | Yes |
| description | string | No |
| receiver_wallet_number | string | Yes |
| source_type | string | No |
| channel_type | string | No |
| hash_key | string | No |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| transaction_id | string |
| transaction_amount | decimal |
| transaction_fee | decimal |
| charged_amount | decimal |
| ext_order_id | string |
| business_code | string |
| business_name | string |
| friendly_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 | bool |
| tax_number | string |
| loyalty_record_required | bool |
REQUEST (POST):
{
"sender_account_number" : "SPY123456",
"sender_wallet_number": "SPY123456WALTRY",
"ext_transaction_id" : "ABC123132" ,
"business_code": "1234567890",
"currency_code": "TRY",
"amount": "100",
"description": "Ürün",
"receiver_wallet_number": "SPY123456WALTRY",
"source_type" : " ",
"channel_type": " ",
"hash_key": "",
"loyalty": {
"earn": 1,
"burn": 0
}
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": "İşlem başarılı",
"payload": {
"transaction_id": 4507462831010606093,
"transaction_amount": 10.0000,
"transaction_fee": 0.000000,
"charged_amount": 10.000000,
"ext_order_id": "ARC_ORDER_ID_1",
"business_code": "",
"business_name": "",
"friendly_name": "",
"receiver_account_number": "",
"receiver_wallet_number": "352758899",
"sender_wallet_info": {
"id": "2922022820202223222",
"tenant_id": "5",
"name": "",
"account_number": "XXX48400",
"number": "484863917",
"total_balance": 84.90,
"payment_balance": {
"avaiable": 84.90,
"unavaiable": 0.00
},
"cash_balance": {
"avaiable": 0.00,
"unavaiable": 0.00
},
"transaction_limits": {
"max_balance": 1250.0000,
"topup_credit_limit": 1250.0000,
"topup_cash_limit": 1250.0000,
"withdrawal_limit": 1250.0000,
"payment_limit": 1250.0000,
"wallet_to_wallet_limit": 1250.0000
},
"kyc_level_status": null,
"currency_code": "TRY",
"user_kyc_info": null,
"is_topup_default": false,
"tax_number": null,
"loyalty_record_required": false
}
}
}