Skip to content

✨ Fees

Endpoint : /fees (GET method expected)

Example API Response

js
[
  {
    "year": "2024-2025",                   // Academic year for the record
    "gr_no": "1001",                   // General Register Number of the student
    "full_name": "Karan Patel",                   // Full name of the student
    "receipt_no": "101",                   // Unique receipt number for the fee payment
    "receipt_date": "19/05/2025",                   // Date of the fee receipt
    "amount": "1000",                   // Total amount paid
    "fee_head": "Food, Tuition, Tuition Q1, Tuition Q2:1000",                   // Details of the fee components paid; "Tuition Q1, Tuition Q2:1000" likely indicates a combined payment of 1000 for both quarters
    "concession_note": "",                   // Any note regarding the concession given
    "concession_amount": "500",                   // Amount of concession provided
    "note": "",                   // Any additional notes about the payment
    "payment_mode": "Cash",                   // Mode of payment (e.g., Cash, Cheque, Online)
    "cheque_transition_number": "",                   // Cheque or transaction number (if applicable)
    "bank_name": "",                   // Name of the bank (if payment is via cheque or bank transfer)
    "cheque_transition_date": "",                   // Date of the cheque or transaction (if applicable)
    "status ": "Pending or Success"                   // Current status of the payment
  }
]

Mandatory Parameters

NameParameterDescriptionExpected Values
yearformatAcademic year for the record2024-2025
gr_notextGeneral Register Number of the student1001
receipt_notextUnique receipt number for the fee payment101
receipt_datetextDate of the fee receipt19/05/2025
amounttextTotal amount paid1000
fee_headtextDetails of the fee components paid; "Tuition Q1, Tuition Q2:1000" likely indicates a combined payment of 1000 for both quartersFood, Tuition, Tuition Q1, Tuition Q2:1000
payment_modetextCash, Cheque, DD, Bank Challan, UPI, RTGS, NEFT, IMPS, Credit Card, Debit Card, Net Banking, Payment GateWay, Pay Later, QFIX, JODO, ScholarshipCash
statustextCurrent status of the paymentPending or Success

Optional Parameters

The optional parameters in the HTTP API are tabulated below:

NameParameterDescriptionExpected Values
full_nametextFull name of the studentKaran Patel
concession_notetextAny note regarding the concession given
concession_amounttextAmount of concession provided500
notetextAny additional notes about the payment
cheque_transition_numbertextCheque or transaction number (if applicable)
bank_nametextName of the bank (if payment is via cheque or bank transfer)
cheque_transition_datetextDate of the cheque or transaction (if applicable)

Notes:

Thank You!