- EMIs
- Records
- Topups
- Accounts
- Payouts
- Loans
- Line Details
- Loan Data
- Fee
- Extra Data
- Topup Group
Export record
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
PUT
/v1/lms/records/export/
Last modified:2025-02-12 08:09:51
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
start_date
integerÂ
required
end_date
integerÂ
required
filter_on
stringÂ
required
download_excel
booleanÂ
required
Example
{
"start_date":1704804122,
"end_date":1728477722,
"filter_on":"value_date",
"download_excel": false
}
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/export/' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_date":1704804122,
"end_date":1728477722,
"filter_on":"value_date",
"download_excel": false
}'
Responses
🟢200OK
application/json
Body
array of:
Account ID
stringÂ
required
Ref ID
stringÂ
required
Type
stringÂ
required
Amount
integer  | numberÂ
required
Remaining Amount
integer  | numberÂ
required
UTR
stringÂ
required
Settlement Order
stringÂ
required
Component Order
stringÂ
required
Date
stringÂ
required
Value Date
stringÂ
required
Remark
string  | nullÂ
required
Status
stringÂ
required
IFSCÂ Code
string  | nullÂ
required
Account Number
string  | nullÂ
required
Account Holder
string  | nullÂ
required
Example
[
{
"Account ID": "string",
"Ref ID": "string",
"Type": "string",
"Amount": 0,
"Remaining Amount": 0,
"UTR": "string",
"Settlement Order": "string",
"Component Order": "string",
"Date": "string",
"Value Date": "string",
"Remark": "string",
"Status": "string",
"IFSC Code": "string",
"Account Number": "string",
"Account Holder": "string"
}
]