Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Fee
  • 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
    • 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
      GET
    • Bulk Create Fee
      POST
    • Create Fee
      POST
    • List Fee
      GET
    • Fee Details
      GET
    • Delete Fee
      DELETE
  • Extra Data
    • Update Extra Data
    • List Extra Data
  • Topup Group
    • Create Topup Group
    • List Topup Group
    • Update TopupGroup
  1. Fee

Create Fee

preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
POST
/v1/lms/fees/
Last modified:2025-02-19 07:29:12

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
tax_percentage
number 
optional
Provide tax in percentage. this will override tax_amount
Example
{
    "account": "b9c9021a-5de3-4f4a-a84b-2519f862cd06",
    "loan": "8de6f232-0bc6-4797-9863-27ed32ebc9d1",
    "name": "NACH Bounce fee",
    "date": 1716359297,
    "settlement": "next_emi",
    "amount": 532,
    "fee_amount": 942.49,
    "tax_percentage": 26.49
}

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 POST 'https://preprod.api.crego.io/v1/lms/fees/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "account": "b9c9021a-5de3-4f4a-a84b-2519f862cd06",
    "loan": "8de6f232-0bc6-4797-9863-27ed32ebc9d1",
    "name": "NACH Bounce fee",
    "date": 1716359297,
    "settlement": "next_emi",
    "amount": 532,
    "fee_amount": 942.49,
    "tax_percentage": 26.49
}'

Responses

🟢200Success
application/json
Body
No schema defined
Example
Previous
Bulk Create Fee
Next
List Fee
Built with