Retrieve the answers for an exam attempt

GET/products/{product_id}/exams/{exam_id}/attempts/{exam_attempt_id}/answers

Returns the answers the user submitted in the attempt.

Requires the exams.attempts.read_answers permission; exams.attempts.read alone does not grant access to this operation.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

product_id*string
exam_id*string
exam_attempt_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/products/string/exams/string/attempts/string/answers"
{  "data": {    "answers": [      {        "alternative_id": "string",        "correct": true,        "question_id": "string"      }    ],    "attempt_id": "string",    "object": "exam_attempt_answers"  }}