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 Products

HGS Products

Description

Products

This API retrieves the balance and status information of customer’s HGS products by HGS product number or plate.

Sample Request by Product Number

GET /api/isbank/hgs/v1/products?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

Sample Request by Plate
GET /api/isbank/hgs/v1/products?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",
            "balance": 143.65,
            "status": 1
        },
        {
            "product_number": "100002",
            "plate": "34ABC012",
            "balance": 0.00,
            "status": 2
        }
    ]
}