store (for semester)
Developing
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": 85,
"department_id": 2,
"combinations_pivot_id": 7,
"group_id": [1],
"exam_type": "semester",
"exam_id": 5,
"subject_id": 10,
"student_id": [101, 102],
"attendance_status": ["present", "absent"],
"part_marks": {
"101": { "CQ": 20, "MCQ": 15 },
"102": { "CQ": 25, "MCQ": 17 }
}
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/exam/mark-entry-store' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"academic_year_id": 85,
"department_id": 2,
"combinations_pivot_id": 7,
"group_id": [1],
"exam_type": "semester",
"exam_id": 5,
"subject_id": 10,
"student_id": [101, 102],
"attendance_status": ["present", "absent"],
"part_marks": {
"101": { "CQ": 20, "MCQ": 15 },
"102": { "CQ": 25, "MCQ": 17 }
}
}'
Responses
application/json Modified at 2025-10-30 07:40:41