Skip to main content

Get Customer Limits by Global Cust ID

GET Customer limits by Global Customer ID

This is the Loan management API that can be used to fetch the list of all the limits associated to a single global customer Id. 

URL: {{base_url}}/loan-management/v1/getCustomerLimits

Request
Request Type: GET
Authorization: Bearer Token
Query Parameter
Key Data Type
globalCustomerId* String
* required Param

Response: 200
{
    "response": true,
    "data": [
        {
            "limit_category": "cust",
            "limit_value": 1000,
            "utilized_value": 900,
            "expiry_date": "18-10-2025",
            "available_limit": 100,
            "blocked_limit": 0.0,
            "limit_type": "regular",
            "limit_utilization_expiry_date": "18-10-2025",
            "limit_status": null,
            "limit_identifier": "LAN92837292FR00",
            "limit_id": 2
        },
       {
            "limit_category": "cust",
            "limit_value": 100000,
            "utilized_value": 90000,
            "expiry_date": "18-10-2025",
            "available_limit": 10000,
            "blocked_limit": 0.0,
            "limit_type": "regular",
            "limit_utilization_expiry_date": "18-10-2025",
            "limit_status": null,
            "limit_identifier": "LAN92837292FR01",
            "limit_id": 3
        }
    ],
    "error": null,
    "timestamp": "2024-10-26T10:42:02.161+00:00"
}