Retrieve an exam answer key
/products/{product_id}/exams/{exam_id}/answer-keyReturns the correct alternatives for the exam questions.
Requires the exams.read_answer_key permission; exams.read alone does not grant access to this operation.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
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" } ] }}Delete an exam DELETE
Moves the exam to the trash. An exam that is displayed by a lesson, required to unlock a certificate, or required by a release rule cannot be deleted. In that case the API returns `state_conflict`, and `details[].reason` indicates the dependency: `lesson`, `certificate`, or `release_rule`.
List exam attempts GET
Returns the attempts made on the exam. Requires the `exams.attempts.read` permission. If the current credentials are restricted to specific users, only attempts made by those users are returned.