We are using cookies in our website in order to offer better service to you. You allow us to use cookies by continuing to use our internet website. You can reach the detailed information on cookies from our Privacy Policy and Cookies Policy.
X
Home > Api Products > Account

Account

Description

This API returns list accounts details.

How it Works

Parameters

account_id: Integer​

Sample Request

GET {API_HOST}/api/v1/accounts

GET {API_HOST}/api/v1/accounts/{account_id}

Headers:
X-IBM-client-id: {YOUR_CLEINT_ID} 
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token} 
Content-Type: application/json


Sample Response

Sample Response - 1

{
    "data": [
        {
           "branch_code": "4299",
           "account_number": "****231",
           "account_id": "43199139",
           "account_balance": "173666.94",
           "blockage_amount": "0.00",
           "last_transactions_date": "2018-12-17+03:00",
           "available_amount": "173666.94",
           "iban": "TR******************884231",
           "overdraft_protection": false,
           "currency_code": "TRY",
           "branch_name": "BAŞKENT/ANKARA"
        },
        {
           "branch_code": "4299",
           "account_number": "****702",
           "account_id": "43202223",
           "account_balance": "106968.50",
           "blockage_amount": "0.00",
           "last_transactions_date": "2018-05-11+03:00",
           "available_amount": "106968.50",
           "iban": "TR******************900702",
           "overdraft_protection": false,
           "currency_code": "TRY",
           "branch_name": "BAŞKENT/ANKARA"
        }
    ]
}

Sample Response - 2

{
    "data": {
        "branch_code": "4299",
        "account_number": "****231",
        "account_id": "43199139",
        "account_balance": "173666.94",
        "blockage_amount": "0.00",
        "last_transactions_date": "2018-12-17+03:00",
        "available_amount": "173666.94",
        "iban": "TR******************884231",
        "overdraft_protection": false,
        "currency_code": "TRY",
        "branch_name": "BAŞKENT/ANKARA"
    }