Delete an exam result
/products/{product_id}/exams/{exam_id}/results/{exam_result_id}Permanently deletes an exam result. A reason is required in the request body, and the deletion is recorded with its reason and author.
The lesson that displays the exam is marked as not completed, the points awarded are reversed, and the user's certificate eligibility is recalculated.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Header Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X DELETE "https://example.com/products/string/exams/string/results/string" \ -H "Content-Type: application/json" \ -d '{ "reason": "string" }'Retrieve an exam result GET
A result shares the public ID of the attempt it comes from. Attempts that are still open or were discarded are not results. The response includes an `ETag` representing the current revision, which can be sent in the `If-Match` header when deleting the result.
Questions
Next Page