fee-head-wise update
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"waivers": [
{
"student_id": 101,
"academic_year_id": 5,
"fee_head_id": 12,
"waiver_amount": 500,
"waiver_id": 3
},
{
"student_id": 102,
"academic_year_id": 5,
"fee_head_id": 12,
"waiver_amount": 400,
"waiver_id": 2
},
{
"student_id": 103,
"academic_year_id": 5,
"fee_head_id": 14,
"waiver_amount": 250,
"waiver_id": 1
}
]
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/waiver-setup/fee-head-wise-update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"waivers": [
{
"student_id": 101,
"academic_year_id": 5,
"fee_head_id": 12,
"waiver_amount": 500,
"waiver_id": 3
},
{
"student_id": 102,
"academic_year_id": 5,
"fee_head_id": 12,
"waiver_amount": 400,
"waiver_id": 2
},
{
"student_id": 103,
"academic_year_id": 5,
"fee_head_id": 14,
"waiver_amount": 250,
"waiver_id": 1
}
]
}'
Responses
application/json Modified at 2025-08-26 10:43:21