Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. EMIs
  • Back to home
  • LMS
  • EMIs
    • List EMI
      GET
    • List Settlements
      GET
    • Restructure
      POST
    • Calculate EMI
      POST
    • Run EOD
      POST
    • Request Tranche
      POST
    • Outstanding data
      PUT
  • Records
    • Request Approval
      PUT
    • Initiate Excess Payment Refund
      POST
    • Initiate Adjustment for Cashback & Holdback
      POST
    • Get Single Record
      GET
    • Record Listing
      GET
    • Create Record
      POST
    • Mark Processed
      PUT
    • Unmatched
      GET
    • Export record
      PUT
    • Bulk Create Records
      POST
  • Topups
    • List Topups
      GET
    • Unschedule a scheduled topup
      PUT
    • Reinitiate Payout
      POST
    • Check Line Amount
      PUT
    • Create Topup
      POST
    • Update Topup
      PATCH
    • Bulk Topup Create
      POST
    • Re Run Checks
      GET
    • Invoice Parse
      PATCH
  • Accounts
    • Initiate Disbursement
    • Initiate Loan Params
    • Create Account
    • Close Loan Account
    • Refresh Limit
    • Get Loan Params
    • Get Summary
    • Reset RPS
    • Update Loan Params
  • Payouts
    • Retry Failed Payout
    • Create Payout
    • Payout Callback
    • Process Payout
    • Unmatched Payouts
    • List Payouts
    • Export Payout for Bank
  • Loans
    • Export Cashback
    • Get Emi Amount
    • Get Loan Summary
    • List Loans with Excess Balance
    • Initiate Adjustment
    • Initiate Refund
    • List Loans
  • Line Details
    • Filter Line Details
    • Create
    • Update
    • Get by type
    • Bulk Internal
    • Retrieve
  • Loan Data
    • Create
    • Update
    • Retrieve
  • Fee
    • Get Fee Demands
    • Bulk Create Fee
    • Create Fee
    • List Fee
    • Fee Details
    • Delete Fee
  • Extra Data
    • Update Extra Data
    • List Extra Data
  • Topup Group
    • Create Topup Group
    • List Topup Group
    • Update TopupGroup
  1. EMIs

Outstanding data

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
PUT
/v1/lms/emis/get_pending_demand/
Last modified:2025-07-16 07:07:40

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
page
string 
optional
Example:
2
Body Params application/json
object {0}
Example
{
    "as_of_date":"1752135634",
    // "program_ids":["98ec9c97-704c-4fc4-8810-25bb03f60232"]
    "account_ref_ids":["CLZV8DVA"]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://preprod.api.crego.io/v1/lms/emis/get_pending_demand/?page=2' \
--header 'Content-Type: application/json' \
--data-raw '{
    "as_of_date":"1752135634",
    // "program_ids":["98ec9c97-704c-4fc4-8810-25bb03f60232"]
    "account_ref_ids":["CLZV8DVA"]
}'

Responses

🟢200OK
application/json
Body
data
array [object {11}] 
required
account_ref_id
string 
required
principal_outstanding
integer  | number 
required
interest_outstanding
integer  | number 
required
overdue_outstanding
integer  | number 
required
penal_outstanding
integer  | number 
required
penal_gst_outstanding
integer  | number 
required
fees_outstanding
integer  | number 
required
fees_gst_outstanding
integer  | number 
required
dpd
integer 
required
primary_applicant
string 
required
pending_repayment
null 
required
Example
{
    "data": [
        {
            "account_ref_id": "string",
            "principal_outstanding": 0,
            "interest_outstanding": 0,
            "overdue_outstanding": 0,
            "penal_outstanding": 0,
            "penal_gst_outstanding": 0,
            "fees_outstanding": 0,
            "fees_gst_outstanding": 0,
            "dpd": 0,
            "primary_applicant": "string",
            "pending_repayment": null
        }
    ]
}
Modified at 2025-07-16 07:07:40
Previous
Request Tranche
Next
Request Approval
Built with