The endpoint and http method information used to get the user's related wallet information is given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/Wallet/Info |
| Params | Type | Mandatory |
|---|---|---|
| account_number | string | Yes |
| wallet_number | string | Yes |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | obje |
| wallet_info | obje |
| 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 | decimal |
| payment_balance | obje |
| available | decimal |
| unavailable | decimal |
| cash_balance | obje |
| available | decimal |
| unavailable | decimal |
| transaction_limits | obje |
| 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 | obje |
| first_name | string |
| last_name | string |
| birth_year | int |
| kyc_level | int |
| kyc_level_status | string |
| national_id | string |
| sector_id | string |
| mother_name | string |
| father_name | string |
| is_topup_default | bool |
| tax_number | string |
| loyalty_record_required | bool |
**REQUEST (POST):_
{
"wallet_number": "484863917",
"account_number" : "XXX48400",
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": "Cüzdan bilgileri başarı ile dönülmüştür.",
"payload": {
"wallet_info": {
"id": "3482211222220022229",
"tenant_id": "5",
"name": "",
"account_number": "B_i_5",
"account_type": "Business",
"created_date_utc": "2021-08-27T10:59:51.5480667+00:00",
"number": "1011179271",
"phone_country_code": null,
"phone_number": null,
"email": null,
"total_balance": 4035.10,
"monthly_incoming_total": 0.0,
"monthly_outgoing_total": 0.0,
"access_level_status_id": 1,
"access_level_status": "Aktif",
"payment_balance": {
"available": 2000.00,
"unavailable": 0.00
},
"cash_balance": {
"available": 2034.10,
"unavailable": 1.00
},
"transaction_limits": {
"max_balance": 0.0000,
"topup_credit_limit": 2000.0000,
"topup_cash_limit": 2000.0000,
"withdrawal_limit": 0.0000,
"payment_limit": 0.0000,
"wallet_to_wallet_limit": 5000.0000
},
"kyc_level_status": "Unknown",
"currency_code": "TRY",
"user_kyc_info": {
"first_name": "TEST67",
"last_name": "TOPER",
"birth_year": 1967,
"kyc_level": 40,
"kyc_level_status": "Contracted",
"national_id": "96198a1",
"sector_id": "5",
"mother_name": null,
"father_name": null
}
"is_topup_default": false,
"tax_number": null,
"loyalty_record_required": false
}
}
}