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

flex.downpayment.debited

The flex.downpayment.debited webhook event is triggered immediately upon successful downpayment, i.e. when the customer’s account is debited.

AttributeTypeDescription
event_idStringA unique identifier for the webhook event.
eventStringThe event type; in this case, “flex.downpayment.debited”
timestampIntegerThe Unix timestamp when the event was originated.
versionStringThe version of the webhook payload format (here, “1.0”).
payloadObjectDetailed information about the event.
payload.paymentObjectThe payment information.
payload.payment.idStringThe unique payment id in the JODO system.
payload.payment.amountNumberThe payment amount.
payload.payment.productStringThe payment product as per the JODO system.
payload.payment.modeStringThe mode of payment.
payload.payment.paid_atStringThe datetime str indicating at what time the payment was done.
payload.payment.detailsArrayThe fee component level breakdown of the payment.
payload.payment.details[].fee_componentStringThe type of fee component (e.g., TUITION_FEE, TRANSPORT_FEE).
payload.payment.details[].amountNumberThe amount corresponding to a fee component in the payment done.
payload.studentObjectInformation about the student.
payload.student.identifierStringThe student’s identifier within your system (if applicable).
payload.student.custom_identifierStringA custom identifier associated with the student.
payload.student.collector_codeStringBranch code (if applicable).
payload.student.academic_year_startIntegerThe start year of the student’s academic year.
payload.student.academic_year_endIntegerThe end year of the student’s academic year.
payload.student.primary_contact_numberStringThe primary contact number of the student’s parent or guardian.
payload.student.primary_contact_emailStringThe primary contact email address of the student’s parent or guardian.
payload.student.gradeObjectInformation about the student’s grade.
payload.student.grade.nameStringThe name of the grade (e.g., “Montessori 1”).
payload.student.grade.codeStringThe code representing the grade (e.g., “M1BLUE”).
payload.jodo_student_idIntegerThe ID of the student in the JODO system.
{
"event": "flex.downpayment.debited",
"event_id": "f8093bb5-29c7-4b3a-a99b-298520233820",
"version": "1.0",
"timestamp": 1655448963,
"payload": {
"jodo_student_id": "student_1234",
"student": {
"identifier": "1234",
"custom_identifier": "cust_1234",
"collector_code": null,
"grade": {
"code": "M1BLUE",
"name": "Montessori 1"
},
"academic_year_start": 2022,
"academic_year_end": 2023,
"primary_contact_number": "9876543210",
"primary_contact_email": "parent@example.com"
},
"payment": {
"id": "flex_1234",
"amount": 5000,
"product": "flex",
"mode": "PG",
"paid_at": "2022-01-29T10:05:45Z",
"details": [
{ "fee_component": "TUITION_FEE", "amount": 2500 },
{ "fee_component": "TRANSPORT_FEE", "amount": 2500 }
]
}
}
}