Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"academic_year_id": 1,
"department_id": 2,
"class_id": 3,
"exam_id": 4,
"institute_subject_id": [101, 102, 103],
"exam_details": [
{ "exam_code_title": "CT", "total_mark": 20, "pass_mark": 10, "conversion": 50 },
{ "exam_code_title": "MCQ", "total_mark": 30, "pass_mark": 12, "conversion": 40 }
],
"overall_rules": ["CT"],
"overall_mark": 33,
"method_of_evaluation": "Always Up"
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/exam/exam-mark-configuration-store' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"academic_year_id": 1,
"department_id": 2,
"class_id": 3,
"exam_id": 4,
"institute_subject_id": [101, 102, 103],
"exam_details": [
{ "exam_code_title": "CT", "total_mark": 20, "pass_mark": 10, "conversion": 50 },
{ "exam_code_title": "MCQ", "total_mark": 30, "pass_mark": 12, "conversion": 40 }
],
"overall_rules": ["CT"],
"overall_mark": 33,
"method_of_evaluation": "Always Up" //At Actual, Always Down, Always Up, Without Fraction
}'
Responses
application/json Modified at 2025-10-15 08:24:36