Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"configs": [
{
"id": 1,
"exam_details": [
{
"exam_code_title": "CQ",
"total_mark": 70,
"pass_mark": 23,
"conversion": 50
},
{
"exam_code_title": "MCQ",
"total_mark": 30,
"pass_mark": 10,
"conversion": 25
}
],
"overall_rules": ["CQ", "MCQ"],
"overall_mark": 100,
"method_of_evaluation": "At Actual"
},
{
"id": 2,
"exam_details": [
{
"exam_code_title": "CQ",
"total_mark": 50,
"pass_mark": 20,
"conversion": 40
}
],
"overall_rules": ["CQ"],
"overall_mark": 50,
"method_of_evaluation": "Always Down"
}
]
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/exam/exam-mark-configuration-update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"configs": [
{
"id": 1,
"exam_details": [
{
"exam_code_title": "CQ",
"total_mark": 70,
"pass_mark": 23,
"conversion": 50
},
{
"exam_code_title": "MCQ",
"total_mark": 30,
"pass_mark": 10,
"conversion": 25
}
],
"overall_rules": ["CQ", "MCQ"],
"overall_mark": 100,
"method_of_evaluation": "At Actual"
},
{
"id": 2,
"exam_details": [
{
"exam_code_title": "CQ",
"total_mark": 50,
"pass_mark": 20,
"conversion": 40
}
],
"overall_rules": ["CQ"],
"overall_mark": 50,
"method_of_evaluation": "Always Down"
}
]
}'
Responses
application/json Modified at 2025-10-16 10:07:16