Skip to main content

Fetch Document Details for Loan Id

Screenshot 2023-04-20 at 2.30.30 AM.png


GET Documents for Loan Id

This API is used to retrieve all the customer's documentation, which includes their profile photo, ID proof, and collateral, for the specified loan ID.

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

Request
Request Type: GET
Authorization: Bearer Token
Query Parameter
Key Data Type
loanId* Integer
* required Param

Response: 200


{
   "response": true,
   "data": [
      {
         "document_type": "string",
         "document_state": null,
         "receiving_date": null,
         "is_verified": true,
         "document_url": "string",
         "document_status": null,
         "description": null,
         "document_value": null,
         "applicant_type": "string",
         "customer_name": "string",
         "other_document_name": null,
         "document_id": integer,
         "document_owner": "string",
         "document_stage": null,
         "document_department": null,
         "disbursal_stage": null
      }
   ],
   "error": null
}