Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Records
  • Back to home
  • LMS
  • EMIs
    • List EMI
      GET
    • List Settlements
      GET
    • Restructure
      POST
    • Calculate EMI
      POST
    • Run EOD
      POST
    • Request Tranche
      POST
  • 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
      POST
    • Initiate Loan Params
      POST
    • Create Account
      POST
    • Close Loan Account
      PUT
    • Refresh Limit
      GET
    • Get Loan Params
      GET
    • Get Summary
      GET
    • Reset RPS
      POST
    • Update Loan Params
      PATCH
  • 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. Records

Mark Processed

preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
PUT
/v1/lms/records/{id}/mark_processed/
Last modified:2025-02-12 08:01:51

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Example:
2b2853b2-d99b-4b14-ab65-ccbed5104e80
Body Params application/json
utr
string 
required
settled_at
integer 
required
collection_bank_id
string 
required
Example
{
    "utr": "123798123",
    "settled_at": 1715331600,
    "collection_bank_id": "324c4826-1729-4682-8770-f388b6e7e6b7"
}

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/records/2b2853b2-d99b-4b14-ab65-ccbed5104e80/mark_processed/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "utr": "123798123",
    "settled_at": 1715331600,
    "collection_bank_id": "324c4826-1729-4682-8770-f388b6e7e6b7"
}'

Responses

🟢200200 OK
application/json
Body
id
string 
required
created_at
number 
required
updated_at
number 
required
type
string 
required
ref_id
string 
required
received_amount
integer 
required
tds_amount
integer 
required
amount
integer 
required
remaining_amount
integer 
required
pg_service_id
null 
required
utr
null 
required
settlement_order
string 
required
component_order
string 
required
uploaded_by
null 
required
uploaded_by_id
null 
required
date
number 
required
settled_at
null 
required
remark
null 
required
status
string 
required
collection_bank
object 
required
id
string 
required
created_at
number 
required
updated_at
number 
required
account_no
string 
required
tags
array
required
account_holder_name
string 
required
ifsc
string 
required
account_type
string 
required
is_verified
boolean 
required
name_at_bank
null 
required
company
string 
required
back_date_found
boolean 
required
back_date_marked_on
null 
required
sent_to_gl
boolean 
required
account
string 
required
cashback_loan
null 
required
holdback_loan
null 
required
loans
array
required
Examples
{
    "id": "b054a0e5-71ed-42ba-b583-10a10ae7f314",
    "created_at": 1718610125.9511886,
    "updated_at": 1718618889.249449,
    "type": "repayment",
    "ref_id": "REC00QYE",
    "received_amount": 200000,
    "tds_amount": 0,
    "amount": 200000,
    "remaining_amount": 0,
    "pg_service_id": null,
    "utr": null,
    "settlement_order": "due_date_first",
    "component_order": "PI-OI-NI-P",
    "uploaded_by": null,
    "uploaded_by_id": null,
    "date": 1718610125.944266,
    "settled_at": null,
    "remark": null,
    "status": "pending",
    "collection_bank": {
        "id": "65d48301-b773-4de5-9bab-666e5c88c920",
        "created_at": 1714561982.98811,
        "updated_at": 1714561983.004783,
        "account_no": "1576001500004547",
        "tags": [],
        "account_holder_name": "rishabh",
        "ifsc": "PUNB0457600",
        "account_type": "current",
        "is_verified": false,
        "name_at_bank": null,
        "company": "23067dbc-6c62-4203-9014-7100e4ffe811"
    },
    "back_date_found": false,
    "back_date_marked_on": null,
    "sent_to_gl": false,
    "account": "648957de-85fa-406c-99d4-133d5638365c",
    "cashback_loan": null,
    "holdback_loan": null,
    "loans": []
}
🟢200OK
Previous
Create Record
Next
Unmatched
Built with