manual attendance request
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"attendance_details": {
"academic_year_id": 3,
"department_id": 2,
"combinations_pivot_id": 10,
"attendance_type": "exam",
"attendance_date": "2025-10-16 09:00:00",
"exam_type": "semester",
"exam_id": 7,
"subject_id": 12
},
"students": [
{
"student_id": 101,
"status": "present"
},
{
"student_id": 102,
"status": "absent"
}
]
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/attendance-request/manual' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"attendance_details": {
"academic_year_id": 3,
"department_id": 2,
"combinations_pivot_id": 10,
"attendance_type": "exam", //exam,period
"attendance_date": "2025-10-16 09:00:00",
"exam_type": "semester", //semester,class test
"exam_id": 7,
"subject_id": 12
},
"students": [
{
"student_id": 101,
"status": "present"
},
{
"student_id": 102,
"status": "absent"
}
]
}'
Responses
application/json Modified at 2026-01-08 07:45:23