Bireysel müşterilerimizin kayıt işlemini yaptığı bankaları listelemek için ilgili endpoint ve http metod bilgisi aşağıda verilmiştir.
HTTP Method | URL |
---|---|
POST | /v1/Account/GetPersonalBankAccountListByFilter |
Parametre | Tip | Zorunlu | Açıklama |
---|---|---|---|
account_number | string | Evet | Hesap Numarası |
order_column | string | Evet | Sipariş Sütunu |
order_by | string | Hayır | Siparişe Göre |
page_size | int | Hayır | Sayfa Büyüklüğü |
page_index | int | Hayır | Sayfa Dizini |
Parametre | Tip | Açıklama |
---|---|---|
status | int | Statü |
code | string | Kod |
message | string | Yanıt Mesajı |
payload | obje | Veri |
results | obje | Sonuç |
page_index | int | Sayfa Dizini |
last_row_index | int | Son Satır Dizini |
page_count | int | Sayfa Sayısı |
page_size | int | Sayfa Boyutu |
row_count | int | Satır Sayısı |
order_column | string | Sıralama Yapılacak Kolon |
order_by | string | Sıralama |
İSTEK (POST) :
{
"account_number": "baris123",
"order_column": "Id",
"order_by": "asc",
"page_size": 0,
"page_index": 0,
}
YANIT:
{
"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": ""
}
}