Save a new fee group or update an existing one.
POST /fees/group/save
group_name (string) - The name of the fee group.group_id (int, optional) - The ID of the fee group if updating an existing one.curl -X POST https://your-domain.com/fees/group/save \
-H "Content-Type: application/json" \
-d '{
GroupData : { "group_name": "Term Fees" }
}'
Delete a fee group by its ID.
POST /fees/group/delete
group_id (int) - The ID of the fee group to delete.curl -X POST https://your-domain.com/fees/group/delete \
-H "Content-Type: application/json" \
-d '{
"group_id": 1
}'
List fee groups with optional pagination.
POST /fees/group/list
offset (int, optional) - The number of records to skip. Default is 0.limit (int, optional) - The number of records to return. Default is 10.curl -X POST https://your-domain.com/fees/group/list \
-H "Content-Type: application/json" \
-d '{
"offset": 0,
"limit": 10
}'
Get details of a specific fee group by its ID.
POST /fees/group/get
group_id (int) - The ID of the fee group to retrieve.curl -X POST https://your-domain.com/fees/group/get \
-H "Content-Type: application/json" \
-d '{
"group_id": 1
}'
Save a new fee category or update an existing one.
POST /fees/category/save
name (string) - The name of the fee category.fee_category_id (int, optional) - The ID of the fee category if updating an existing one.curl -X POST https://your-domain.com/fees/category/save \
-H "Content-Type: application/json" \
-d '{
CategoryData : {"name": "Tuition Fees" }
}'
Delete a fee category by its ID.
POST /fees/category/delete
fee_category_id (int) - The ID of the fee category to delete.curl -X POST https://your-domain.com/fees/category/delete \
-H "Content-Type: application/json" \
-d '{
"fee_category_id": 1
}'
List fee categories with optional pagination.
POST /fees/category/list
offset (int, optional) - The number of records to skip. Default is 0.limit (int, optional) - The number of records to return. Default is 10.curl -X POST https://your-domain.com/fees/category/list \
-H "Content-Type: application/json" \
-d '{
"offset": 0,
"limit": 10
}'
Get details of a specific fee category by its ID.
POST /fees/category/get
fee_category_id (int) - The ID of the fee category to retrieve.curl -X POST https://your-domain.com/fees/category/get \
-H "Content-Type: application/json" \
-d '{
"fee_category_id": 1
}'