Delete an exam result

DELETE/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.

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_result_id*string

Header Parameters

If-Match?string

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