Retrieve an exam answer key

GET/products/{product_id}/exams/{exam_id}/answer-key

Returns the correct alternatives for the exam questions.

Requires the exams.read_answer_key permission; exams.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

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/products/string/exams/string/answer-key"
{  "data": {    "exam_id": "string",    "object": "exam_answer_key",    "questions": [      {        "correct_alternative_ids": [          "string"        ],        "id": "string"      }    ]  }}