curl --request PUT \
--url https://api.example.com/api/v1/school/sessions/{session_pk}/exam-sessions/{exam_session_pk}/exams/{exam_pk}/marks/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"studentadmissionnumber": "<string>",
"mark": -1,
"symbol": "<string>",
"comment": "<string>",
"is_deleted": true
}
'