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

List Products

Retrieve Jodo products associated with a student, optionally filtered by product type.

Terminal window
GET /api/v1/integrations/erp/students/:jodo_student_id/products
Terminal window
curl -X GET 'https://[base_url]/api/v1/integrations/erp/students/:jodo_student_id/products?product_type=flex' \
--header 'Authorization: Basic <token>' \
--header 'Content-Type: application/json'
ParameterTypeRequiredDescription
jodo_student_idstringYesJodo student ID for which products should be listed.
ParameterTypeRequiredDescription
product_typestringNoOptional product filter. Possible values: flex, pay, cred.

HTTP 200

{
"status": "success",
"data": [
{
"id": 910,
"product_type": "flex",
"status": "pending"
}
]
}
FieldTypeDescription
data[].idnumberProduct record identifier.
data[].product_typestringProduct type, such as flex, pay, or cred.
data[].statusstringCurrent product status for the student.