Kurumsal 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/GetBusinessBankAccountListByFilter |
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ç |
id | string | Banka Hesap Id |
tenant_id | string | Tenant Id |
bank_id | string | Banka Id |
currency_code | string | Para Birimi |
name | string | Banka Hesap Adı |
account_holder_name | string | Hesap Sahibinin Adı |
iban | string | Iban Numarası |
account_no | string | Hesap Numarası |
swift_code | string | Swift Kodu |
branch_code | string | Şube Kodu |
is_active | bool | Hesap Aktif mi ? |
created_date_ut | datetime | Oluşturulma Saati |
updated_date_utc | datetime | Güncellenme Saati |
is_deleted | bool | Hesap Silindi mi ? |
business_account_id | string | Kurumsal Hesap Id |
bank_name | string | Banka Adı |
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": "2819777777",
"page_size": 1,
"page_index": 1,
"order_column": "Id",
"order_by": "asc"
}
YANIT:
{
"status": 0,
"code": null,
"message": null,
"payload": {
"results": [
{
"id": "7123429128028425222",
"tenant_id": "5",
"bank_id": "1",
"currency_code": "TRY",
"name": "TSTNAME",
"account_holder_name": "TESTNAMESURNAME",
"iban": "TR000000200112200001111111",
"account_no": "TESTNUMBER",
"swift_code": "12344",
"branch_code": "1234",
"is_active": false,
"created_date_utc": "2021-12-14T09:15:08.035Z",
"updated_date_utc": "2021-12-14T09:15:31.6718607Z",
"is_deleted": false,
"business_account_id": "3510121015111841197",
"bank_name": "AKBANK"
}
],
"page_index": 1,
"last_row_index": 0,
"page_count": 1,
"page_size": 1,
"row_count": 1,
"order_column": "Id",
"order_by": "asc"
}
}