Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-data
student_category_id[]
array[string]
optionalfund_percentage[]
array[string]
optionalRequest samples
curl --location --request POST 'https://apidev.edufee.online/api/fees-management/amount-setting/class-wise-feeamount/store' \
--form 'department_id=""' \
--form 'class_id="31"' \
--form 'group_id[]="36"' \
--form 'academic_year_id="2"' \
--form 'student_category_id[]="26"' \
--form 'fee_head_id="1"' \
--form 'fee_amount="500"' \
--form 'fine_amount="10"' \
--form 'fund_id[]="1"' \
--form 'fund_id[]="2"' \
--form 'fund_percentage[]="300"' \
--form 'fund_percentage[]="200"' \
--form 'residential_type[]=""'
Responses
application/json {
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"status": "success",
"message": "Amount successfully added",
"data": {
"institute_details_id": "1",
"department_id": "3",
"class_id": "36",
"group_id": "37",
"academic_year_id": "5",
"student_category_id": "23",
"fee_head_id": "1",
"fee_amount": "500",
"fine_amount": "10",
"fund_id": "1",
"fund_amount": "500",
"updated_at": "2024-11-23T06:31:51.000000Z",
"created_at": "2024-11-23T06:31:51.000000Z",
"id": 1
}
}
}
}
Modified at 2025-04-09 17:09:13