Skip to main content

Fetch Linked Loan Details for Loan Id

Screenshot 2023-04-20 at 2.59.03 AM.png


GET Linked Loan Details for Loan Id

This API is used to retrieve information about any loan that has a linked loan.

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

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

Response: 200


{
   "response": true,
   "data": [
      {
         "primary_account_no": "string",
         "secondary_account_no": "string",
         "remarks": null,
         "reason": null,
         "primary_loan_id": integer,
         "secondary_loan_id": integer
      }
   ],
   "error": null
}