Get By Id

URL

The relevant endpoint and HTTP method information for listing the IBAN details assigned to a business account according to the given Id value are provided below.

HTTP Method URL
POST /v1/TenantBank/GetAll

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
logo_url string Bank Logo URL
account_no string Account No
swift_code string Swift Code
branch_code string Branch Code
is_active bool Is Active ?
created_date_utc string Created Date UTC
updated_date_utc string Updated Date UTC
is_deleted boolean Is Deleted ?
is_available_for_topup boolean Is Available For Topup ?
is_available_for_withdraw boolean Is Available For Withdraw ?
ext_api_bank_code string Bank Code API
tenat_bank_code string Tenant Bank Code

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
    }

Chatbot