The Submissions API gives examiners and admins visibility into and control over student exam sessions. Once a student completes an exam, a submission record is created capturing their answers, timing metadata, and (where AI evaluation is enabled) automated scores. Examiners use this API to review and override AI grades on subjective questions. Admins can force-submit an in-progress session when necessary — for example, if a student’s connection drops and the session cannot be auto-submitted.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Saurabh-07586/examplatform/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/submissions
Retrieve a list of exam submissions. Requires Examiner or Admin role. Results are scoped to exams that the authenticated user has access to.Query Parameters
Filter submissions by exam. Returns only submissions belonging to the specified exam ID.
Filter by submission status. Accepted values:
submitted, graded, published.submitted— The exam has been completed but not fully graded.graded— All answers have been scored (by AI and/or manual review).published— The result has been released to the student.
Example Request
Example Response
POST /api/submissions/:id/grade
Submit a manual grade for a specific subjective answer within a submission. This is used by examiners to review AI-suggested scores and either confirm or override them. The grade provided becomes the final, authoritative score for that answer. Requires Examiner or Admin role.Path Parameters
The unique identifier of the submission being graded.
Request Body
The ID of the question whose answer is being graded.
The score to award for this answer. This value overrides any AI-assigned suggestion and becomes the final score for the answer. Must be between
0 and the question’s configured marks value.Optional written feedback for the student explaining the grade. Included in the student’s result report if results are published.
Example Request
Example Response
The
grade value you provide fully overrides the AI suggestion — there is no blending or averaging. The value you submit here is the final score recorded for the answer. If allow_manual_review is enabled on the exam, this endpoint is the intended mechanism for examiner sign-off.POST /api/submissions/:id/force-submit
Force-submit an active exam session on behalf of a student. When called, the student’s current saved answers are immediately locked and the submission is finalized as if the student had clicked “Submit”. This is an administrative action intended for edge cases such as connectivity failures, browser crashes where auto-submit did not fire, or disciplinary incidents. Requires Admin role.Path Parameters
The unique identifier of the active submission (session) to force-submit.