Skip to main content

Loan Search by value (From date, To date, Loan status,)

GET Loan Search by Value

This Loan Viewer api is used to search loans for values like Loan Status, From date, To date, and page number. However, the Page number is set by default to a minimum value of 1 and, Page Size is set by a maximum value of 100. 

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

RequestRequest:

Request Type: GET
Authorization: Bearer Token

 



Query ParameterParameter:
Key Data Type DescriptionValidationsDefault ValueRequired
pageNo Integer pageNo user wants to fetchN/A1N/A
pageSize Integer No of Entries to be displayedN/A100N/A
from_date Date Start date filterN/A-Optional
to_date Date Till date filterN/A-Optional
loan_status String Loan Status present in the MastersN/A-Optional

*required

 parameter

Response: 

KeyData TypeDescriptionRequired
responseStringInternal response status for the requestYes
dataJSONData reverted in response to the requestOptional
errorJSONInternal response error code Optional
 
Status Code: 200 OK

{
  "response": true,
  "data": {
  "loan": [ { "loan_id": 0, "loan_application_number": "string", "loan_creation_date": "dd/MM/yyyy", "loan_amount": 0, "loan_tenure": 0, "rate_of_interest": 0, "product": "string", "scheme": "string", "customer_name": "string", "phone_number": "string", "loan_status": "string", "disbursal_date": "dd/MM/yyyy", "maturity_date": "string", "global_customer_id": "string", "branch": "string", "disbursal_status": "string", "cancellation_date": "dd/MM/yyyy", "loan_closure_date": "dd/MM/yyyy" } ],
  "loan_linking_details": null,
 0, "total_loan_count": null
 0 },
  "error": null
}


Status Code: 400 BAD REQUEST

Condition: If no parameter is passed for the request the system will respond with the given status code


{ }