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

Request

Request Type: GET
Authorization: Bearer Token

Query Parameter
Key Data Type Default Value
pageNo StringInteger 1
pageSize
Integer
100
from_date
Date
-
to_date
Date
-
loan_status
String
-

*required parameter


Request:Response:
Status Code: 200

{
  "response": true,
  "data": {
    "loan": [],
    "loan_linking_details": null,
    "total_loan_count": null
  },
  "error": null
}

 
Status Code: 400

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


{ }