paid waiver details
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-data
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/fees-report-paid-waiver-details' \
--form 'academic_year_id="85"' \
--form 'department_id[]="2"' \
--form 'combination_pivot_id[]="12"' \
--form 'from_date="2025-01-01"' \
--form 'to_date="2025-07-31"'
Responses
application/json {
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"status": "success",
"message": "Paid waiver details report generated successfully.",
"report": [
{
"department": "school",
"section": "six-day-a",
"invoice_id": 2,
"student_id": 5,
"roll": 1,
"name": "N/A",
"waiver_type": "Merit",
"waiver_amount": "70.00"
}
],
"total_waiver_amount": "70.00"
}
}
}
Modified at 2025-08-04 06:08:11