Skip to main content

Create Customer Limit

POST Create Customer Limit

This API will be used to create customer limit on the basis of global customer ID

URL: {{base_url}}/lms/loan-modification/v1/setCustomerLimit

Request
Request Type: POST
Authorization: Bearer Token

Query Parameter
No Parameter
Request Body Required

{

   "global_customer_id": "GLBCUST202442", // you will receive it in the response of create customer API

    "total_limit": 100000, // total limit of the customer

    "limit_expiry_date": "2029-02-03", // date of limit expiry

    "limit_identifier": "Limit 1" // unique identifier for customer limit 

}

Request: 200

{

    "response": true,

    "data": {

        "limit_id": 56, // pass this in limit id while creating loans, to link the limit to your loan

        "limit_identifier": "Limit 1"

    },

    "error": null,

    "timestamp": "2024-10-11T14:52:07.065+00:00"

}