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

Public ID of the product, prefixed with prd_.

exam_id*string

Public ID of the exam, prefixed with exm_.

exam_attempt_id*string

Public ID of the exam attempt, prefixed with exa_.

Header Parameters

X-Client-Request-Id?string

Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.

Lengthlength <= 64

Response Body

application/json

application/json

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"  }}