Endpoint: POST /fees/discount-student/save
CURL:
curl -X POST {{base_url}}/fees/discount-student/save \
-H "Content-Type: application/json" \
-d '{
"student_id": 24,
"fee_structure_id": 7,
"fee_discount_id": 3,
}'
Endpoint: POST /fees/discount-student/list
CURL:
curl -X POST {{base_url}}/fees/discount-student/list \
-H "Content-Type: application/json" \
-d '{
"filters": {
"start_date": "2024-08-01",
"end_date": "2024-08-31"
},
"offset": 0,
"limit": 10
}'
Endpoint: POST /fees/discount-student/delete
CURL:
curl -X POST {{base_url}}/fees/discount-student/delete \
-H "Content-Type: application/json" \
-d '{
"id": 24
}'