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 > HGS Payments

HGS Payments

Description

Payments

​This API retrieves the customer’s monthly HGS payments by HGS product number or plate.​

​​​How it Works

Sample Request by Product Number

GET /api/isbank/hgs/v1/payments?start_date=2019-07-01&end_date=2019-07-31&product_number=100001&offset=0&limit=100
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID} 
X-IBM-client-secret: {YOUR_CLEINT_SECRET} 
Authorization: Bearer {access_token}
Content-Type: application/json​

Sample Request by Plate

GET /api/isbank/hgs/v1/payments?start_date=2019-07-01&end_date=2019-07-31&plate=34ABC123&offset=0&limit=100
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": [
        {
            "product_number": "100001",
            "plate": "34ABC123",
            "transaction_type": "Yükleme",
            "transaction_date": "2019-07-25T18:40:38.43",
            "entry_date": "0001-01-01T00:00:00",
            "entry_place": "",
            "exit_date": "0001-01-01T00:00:00",
            "exit_place": "",
            "transaction_amount": 30.00,
            "balance": 143.65,
            "nickname": "",
            "balance_date": "2019-07-25T18:40:38.43"
        }
    ]
}