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

Get Flex Schedule

Use this API to fetch the Flex payment schedule configured for a student.

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

HTTP 200

{
"status": "success",
"data": {
"payment_schedule": [
{
"due_date": "2022-12-11",
"amount": 20000.0,
"details": [
{
"component_type": "ADMISSION_FEE",
"amount": 0.0
},
{
"component_type": "COURSE_FEE",
"amount": 20000.0
}
]
},
{
"due_date": "2022-12-12",
"amount": 30000.0,
"details": [
{
"component_type": "ADMISSION_FEE",
"amount": 0.0
},
{
"component_type": "COURSE_FEE",
"amount": 30000.0
}
]
}
]
}
}
AttributeTypeDescription
data.payment_schedulearrayList of Flex instalments for the student.
data.payment_schedule[].due_datestringInstalment due date.
data.payment_schedule[].amountnumberInstalment amount.
data.payment_schedule[].detailsarrayFee component split for the instalment.
data.payment_schedule[].details[].component_typestringFee component code.
data.payment_schedule[].details[].amountnumberFee component amount.
  • Use this API after configuring a Flex plan to verify the schedule stored in Jodo.
  • Use webhook events to track lifecycle changes after the payer completes setup.