Get Loan Summary Deprecated

GET /v1/borrowers/loans/get_summary

Create a new loan for a borrower, if the borrower does not exist it will be created

Responses

GET /v1/borrowers/loans/get_summary
curl \
 --request GET 'https://sandbox.lms.kordev.io/v1/borrowers/loans/get_summary'
Response examples (200)
{
  "items": [
    {
      "borrower_id": "string",
      "calculation_date": "2025-05-04T09:42:00Z",
      "created_at": "2025-05-04T09:42:00Z",
      "days_past_due": 42,
      "days_until_next_due_date": null,
      "full_payment_amount": 42.0,
      "immediate_payment_amount": 42.0,
      "imputed_late_payment": 42.0,
      "is_cancelled": true,
      "last_event_occurred_on": "2025-05-04T09:42:00Z",
      "loan_id": "string",
      "next_payment_amount": null,
      "next_payment_date": null,
      "origination_date": "2025-05-04T09:42:00Z",
      "owner": "string",
      "paid_off_date": null,
      "total_imputed_payment": 42.0
    }
  ],
  "links": {
    "first": "string",
    "next": null,
    "prev": null
  },
  "page": 42,
  "size": 42
}
Response examples (400)
{
  "code": 42,
  "context": {},
  "error": "string",
  "status": "string"
}
Response examples (404)
{
  "code": 42,
  "context": {},
  "error": "string",
  "status": "string"
}
Response examples (409)
{
  "code": 42,
  "context": {},
  "error": "string",
  "status": "string"
}
Response examples (500)
{
  "code": 42,
  "context": {},
  "error": "string",
  "status": "string"
}