The relevant endpoint and http method information where the wallet information is listed are given below.
HTTP Method | URL |
---|---|
POST | /v1/Wallet/ListByFilter |
Params | Type | Mandatory |
---|---|---|
order_column | string | Yes |
tenant_id | int | No |
account_type_id | int | No |
account_id | string | No |
name | string | No |
account_number | string | No |
currency_code | string | No |
kyc_level_code | int | No |
access_level_status_ids | int | No |
start_date | string | No |
end_date | string | No |
is_deleted | bool | No |
page_size | int | Yes |
page_index | int | Yes |
order_by | string | Yes |
min | int | No |
max | int | No |
wallet_number | string | No |
first_name | string | No |
last_name | string | No |
national_id | string | No |
tax_number | string | No |
Params | Type |
---|---|
status | int |
code | string |
payload | obje |
results | 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 | string |
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 |
page_index | int |
last_row_index | int |
page_count | int |
page_size | int |
row_count | int |
order_column | string |
order_by | string |
REQUEST (POST):
{
"tenant_id": 4,
"account_type_id": 0,
"account_id": 0,
"name": "string",
"account_number": "ZZZZZZ00012111210",
"currency_code": "TRY",
"kyc_level_code": 0,
"access_level_status_ids": [
0
],
"start_date": "2020-11-03T11:12:23.684Z",
"end_date": "2021-11-03T11:12:23.684Z",
"is_deleted": false,
"page_size": 100,
"page_index": 1,
"order_column":"Id",
"order_by": "desc",
"min": 0,
"max": 0,
"wallet_number": "123456789",
"first_name": "string",
"last_name": "string",
"national_id": "string"
}
RESPONSE:
"status": 0,
"code": null,
"message": null,
"payload": {
"results": [
{
"id": "722232236222392629",
"tenant_id": "5",
"name": "test21233",
"account_number": "123456",
"account_type": "Business",
"created_date_utc": "2021-07-28T15:04:27.3620138+00:00",
"number": "922262322",
"phone_country_code": null,
"phone_number": null,
"email": null,
"total_balance": 4000.0000,
"monthly_incoming_total": 0.0000,
"monthly_outgoing_total": 0.0000,
"access_level_status_id": 2,
"access_level_status": "Passive",
"payment_balance": {
"available": 2000.0000,
"unavailable": 0.0000
},
"cash_balance": {
"available": 2000.0000,
"unavailable": 0.0000
},
"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": {
"first_name": "TESTO67",
"last_name": "TOPERRRR",
"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": true,
"tax_number": null,
"loyalty_record_required": false
},
],
"page_index": 0,
"last_row_index": 0,
"page_count": 0,
"page_size": 100,
"row_count": 0,
"order_column": "Id",
"order_by": "desc"
}
}