Get By Id

URL

The relevant endpoint and http method information, which lists the Iban information defined to the tenant according to the given Id value, is given below.

HTTP Method URL
POST /v1/TenantBank/GetById

Request Params

Params Type Mandatory Description
id int Yes Id

Response Params

Params Type Description
status int Status
code string Code
message string Message
payload object Payload
results object Results
id string Id
bank_name string Bank Name
bank_code string Bank Code
tenant_id string Tenant Id
bank_id string Bank Id
curency_code string Currency Code
name string Name
account_holder_name string Account Holder Name
iban string IBAN Number
logo_url string Bank Logo URL
account_no string Account Number
swift_code string Swift Code
branch_code string Branch Code
is_active bool Account Is Active ?
created_date_utc string Created Date
updated_date_utc string Update Date
is_deleted bool Account Is Deleted ?
is_available_for_topup bool Is Available For Topup ?
is_available_for_withdraw bool Is Available For Withdraw ?
ext_api_bank_code string Bank Code API
tenat_bank_code string Tenant Bank Code
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):

{
  "id": 8343343847290039309
}

RESPONSE:

{
    "status": 0,
    "code": null,
    "message": null,
    "payload": {
        "id": "8343343847290039309",
        "bank_name": null,
        "bank_code": null,
        "tenant_id": "5",
        "bank_id": "24",
        "currency_code": "TRY",
        "name": "ZİRAAT BANKASI",
        "account_holder_name": "Sipay Elektronik Para ve Ödeme Hizmetleri A.Ş.",
        "iban": "TR780001000917888886225018",
        "logo_url": "https://staticmedia.walletgate.io/bank_logos/-.png",
        "account_no": "88888622",
        "swift_code": "SWIFT01",
        "branch_code": "917",
        "is_active": true,
        "created_date_utc": "2022-01-26T08:15:22Z",
        "updated_date_utc": "2022-01-26T08:15:41.0099387Z",
        "is_deleted": false,
        "is_available_for_topup": false,
        "is_available_for_withdraw": false,
        "ext_api_bank_code": null,
        "tenant_bank_code": null
    }
}