Skip to main content
POST
/
api
/
v1
/
courses
/
{course_id}
/
quiz
/
grade-final
Grade Final Exam
curl --request POST \
  --url https://api.example.com/api/v1/courses/{course_id}/quiz/grade-final \
  --header 'Content-Type: application/json' \
  --data '
{
  "answers": [
    {}
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "ctx": {},
      "input": "<unknown>"
    }
  ]
}

Path Parameters

course_id
string
required

Body

application/json

Request body for POST /api/v1/courses/{id}/quiz/grade-final

answers
Answers · object[]
required

List of answer objects: [{question_id, answer}]

Maximum array length: 200

Response

Successful Response