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 > Customer Details

Customer Details

Description

​This API returns customer details.

How it Works​

Sample Request

GET {API_HOST}/api/v1/accounts

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
{
    "data": {
        "phone_numbers": [
            {
                "phone_number": "5555555555",​
                "country_code": "90",
                "verified": false
            }
        ],
        "email_addresses": [
            {
                "email_address": "tmp.name@isbank.com.tr",
                "verified": false
            }
        ],
        "accounts": [
            {
                "iban": "TR570000000000000000000000",
                "currency": "TRY"
            },
            {
                "iban": "TR080000000000000000000000",
                "currency": "TRY"
            }
        ],
        "kvkk_permit": true
    }
}​