GET
/v1/registration-fees/
curl \
--request GET 'https://classmanager.test/v1/registration-fees/'
Response examples (200)
{
"data": [
{
"id": "reg_xxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "Registration Fee",
"amount": 100,
"maxAmountPerFamily": 100,
"repetitionInterval": "one-off",
"dueDate": "2023-12-05",
"proRated": true,
"taxRate": {
"id": "tax_xxxxxxxxxxxxxxxxxxxxxxxxxx",
"rate": "20.000",
"label": "VAT (20%)",
"isDefault": true
},
"archivedAt": "2024-06-12T09:39:49.000000Z"
}
],
"pagination": {
"total": 15,
"count": 10,
"perPage": 10,
"currentPage": 1,
"totalPages": 2
}
}
Response examples (403)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}