Skip to content
NEWCollect for MSMEs: UPI Autopay, eNACH & remindersExplore app ↗

List Payments

Retrieve the payment list for a student identified by :jodo_student_id.

GET /api/v1/integrations/erp/students/:jodo_student_id/payments
Terminal window
curl -X GET 'https://[base_url]/api/v1/integrations/erp/students/:jodo_student_id/payments' \
-H 'Content-Type: application/json' \
-H 'Authorization: Basic <token>'
ParameterTypeRequiredDescription
jodo_student_idstringYesJodo student ID for which payments should be listed.

HTTP 200

{
"status": "success",
"data": [
{
"id": "pg_1909",
"amount": 2000.0,
"product": "pg",
"mode": "pg",
"paid_at": "2023-04-27T05:15:58Z",
"details": [
{
"fee_component": "ADMISSION_FEE",
"amount": 2000.0,
"settlement_utr": null,
"settled_at": null
}
]
}
]
}
AttributeTypeDescription
data[].idstringPayment ID.
data[].amountnumberPayment amount.
data[].productstringJodo payment product.
data[].modestringPayment mode.
data[].paid_atdatetimePaid date and time.
data[].detailsarrayFee component level payment breakdown.
data[].details[].fee_componentstringFee component type.
data[].details[].amountnumberAmount paid for the fee component.
data[].details[].settlement_utrstring or nullSettlement UTR, if available.
data[].details[].settled_atdatetime or nullSettlement date and time, if available.
CodeHTTP CodeDescription
MAE00000400Bad request error.
MAE00001404Student not found.