The relevant endpoint and http method information is given below to list the banks that our individual customers have registered with.
| HTTP Method | URL |
|---|---|
| POST | /v1/Account/GetPersonalBankAccountListByFilter |
| Params | Type | Mandatory | Description |
|---|---|---|---|
| account_number | string | Yes | Account Number |
| order_column | string | Yes | Order Column |
| order_by | string | No | Order By |
| page_size | integer | No | Page Size |
| page_index | integer | No | Page Index |
| Params | Type | Description |
|---|---|---|
| status | integer | Status |
| code | string | Code |
| message | string | Message |
| payload | object | Data |
| results | object | Result |
| id | string | Id |
| tenant_id | string | Tenant Id |
| bank_id | string | Bank Id |
| bank_code | string | Banka Code |
| logo_url | string | Logo URL |
| currency_code | string | Currency Code |
| name | obje | Name of the Bank Account on Record |
| account_holder_name | obje | Account Holder Name |
| iban | string | IBAN |
| account_no | string | Account Number |
| swift_code | string | Swift Code |
| branch_code | string | Branch Code |
| is_active | boolean | Is it active? |
| created_date_utc | string | Created Date |
| updated_date_utc | string | Updated Date |
| is_deleted | boolean | Was it deleted? |
| personal_account_id | string | Personal Account Id |
| bank_name | string | Bank Name |
| page_index | integer | Page Index |
| last_row_index | integer | Last Row Index |
| page_count | integer | Page Count |
| page_size | integer | Page Size |
| row_count | integer | Row Count |
| order_column | string | Order Column |
| order_by | string | Order By |
REQUEST (POST) :
{
"account_number": "baris123",
"order_column": "Id",
"order_by": "asc",
"page_size": 0,
"page_index": 0,
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": {
"results": [
{
"id": "5487598179256495117",
"tenant_id": "5",
"bank_id": "20",
"bank_code": "111",
"logo_url": "https://walletgatestatic.s3.eu-west-1.amazonaws.com/bank_logos/111.png",
"currency_code": "TRY",
"name": "QNB",
"account_holder_name": "BARİS TOPER",
"iban": "TR680011100011100112673320",
"account_no": "213214215621521",
"swift_code": "321421",
"branch_code": "421421",
"is_active": true,
"created_date_utc": "2023-01-11T10:23:03.7660353Z",
"updated_date_utc": "2023-01-11T10:23:03.7313232Z",
"is_deleted": false,
"personal_account_id": "0",
"bank_name": "QNB FİNANSBANK A.Ş.\t"
}
],
"page_index": 0,
"last_row_index": 0,
"page_count": 0,
"page_size": 0,
"row_count": 0,
"order_column": "Id",
"order_by": ""
}
}