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

order.payment.settled

The order.payment.settled webhook event is triggered when the order amount is settled to the institute’s bank account.

AttributeTypeDescription
event_idStringA unique identifier for the webhook event.
eventStringThe event type; in this case, “order.payment.settled”
versionStringThe version of the webhook payload format (here, “1.0”).
timestampIntegerThe Unix timestamp when the event was originated.
payloadObjectDetailed information about the event.
payload.order_idStringThe unique order id in JODO system.
payload.orderObjectThe information about the order.
payload.order.nameStringThe name of the parent.
payload.order.phoneStringThe phone number of the parent.
payload.order.identifierStringThe identifier for the order.
payload.order.emailStringThe email of the parent.
payload.order.paid_atStringThe datetime str indicating at what time the payment was done.
payload.order.statusStringThe current status of the payment order.
payload.order.detailsArrayThe fee component breakdown of the order.
payload.order.details[].component_typeStringThe type of fee component (e.g., TUITION_FEE, TRANSPORT_FEE).
payload.order.details[].amountNumberThe amount corresponding to the fee component.
payload.order.details[].settlement_utrStringThe UTR for the disbursement done for the corresponding fee component.
payload.order.details[].settled_atStringThe datetime str at which the settlement was done.
payload.order.notesArrayList of key value pairs passed during the creation of order.
{
"event_id": "952aae99-d4f8-481c-9f8b-26bcd403a57a",
"event": "order.payment.settled",
"version": "1.0",
"timestamp": 1692011944,
"payload": {
"order_id": "order_2345343214521452",
"order": {
"name": "Ron Rivest",
"phone": "9876543210",
"identifier": "26bcd403a57a",
"email": "customer@example.com",
"paid_at": "2023-04-04T04:00:38Z",
"status": "paid",
"details": [
{
"component_type": "Admission Fee",
"amount": 10000.0,
"settlement_utr": "test_123",
"settled_at": "2023-04-04T04:00:38Z"
}
],
"notes": [
{
"key": "erp_reference_id",
"value": "REF123"
}
]
}
}
}

Upon receiving the order.payment.settled event, you can update the paid order’s settlement UTR.