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 | Description |
---|---|---|---|
order_column | string | Yes | Order Column |
tenant_id | int | No | Tenant Id |
account_type_id | int | No | Account Type Id |
account_id | string | No | Account Id |
name | string | No | Name |
account_number | string | No | Account Number |
currency_code | string | No | Currency Code |
kyc_level_code | int | No | KYC Level Code |
access_level_status_ids | int | No | Access Level Status Id |
start_date | string | No | Start Date |
end_date | string | No | End Date |
is_deleted | bool | No | Is Deleted ? |
page_size | int | Yes | Page Size |
page_index | int | Yes | Page Index |
order_by | string | Yes | Order By |
min | int | No | Min |
max | int | No | Max |
wallet_number | string | No | Wallet Number |
first_name | string | No | First Name |
last_name | string | No | Last Name |
national_id | string | No | National Id |
tax_number | string | No | Tax Number |
Params | Type | Description |
---|---|---|
status | int | Status |
code | string | Code |
payload | obje | Payload |
results | obje | Results |
id | string | Wallet Id |
tenant_id | string | Tenant Id |
name | string | Wallet Name |
account_number | string | Account Number |
account_type | string | Account Type |
created_date_utc | string | Created Date |
number | string | 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 | obje | Payment Balance |
available | decimal | Payment Balance / Available Balance |
unavailable | decimal | Payment Balance / Unavailable |
cash_balance | obje | Cash Balance |
available | decimal | Cash Balance / Available |
unavailable | decimal | Cash Balance / Unavailable |
transaction_limits | obje | 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 | obje | User KYC Info |
first_name | string | First Name |
last_name | string | Last Name |
birth_year | int | User Date of Birth / Year |
kyc_level | int | KYC Level |
kyc_level_status | string | KYC Level Status |
national_id | string | National Id |
sector_id | string | Sector ID |
mother_name | string | Mother Name |
father_name | string | Father Name |
register_type | int | Register Type |
is_topup_default | bool | Is Topup Default ? |
tax_number | string | Tax Number |
loyalty_record_required | bool | |
page_index | int | Page Index |
last_row_index | int | Last Row Index |
page_count | int | Page Count |
page_size | int | Page Size |
row_count | int | Row Count |
order_column | string | Order Column |
order_by | string | Order By |
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",
"fast_iban": "TR110083801024000754938444",
"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,
"register_type": 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"
}
}