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 > Product Fees

Product Fees

Description

​This API is used to retrieve product fees and criterias.​

Product Fees

​This API is used to retrieve product fees.​

How it Works

Sample Request

GET /api/isbank/v1/product-fees?product_code=0001-99999&criteria_code=criteria_1
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID} 
X-IBM-client-secret: {YOUR_CLEINT_SECRET} 
Authorization: Bearer {access_token}
Content-Type: application/json

Product Fees Criterias

​This API is used to retrieve list of product criterias.​

How it Works

Sample Request

GET /api/isbank/v1/product-fees/criterias?product_code=0001
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 for Product Fees

{
    "product_code": "0001",
    "product_name": "Ürün X Ücreti",
    "safe_price": "00,00",
    "currency_code": "TRY",
    "safe_size": "criteria_1"
}

Sample Response for Product Fees Criterias

{
    "data": {
        "product_code": "0001",
        "product_name": "Ürün X Ücreti",
        "criterias": [
            "criteria_1",
            "criteria_2",
            "criteria_3",
            "criteria_4",
            "criteria_5”
        ]
    }
}