Skip to main content
DELETE
/
judges
/
{judge_id}

Overview

Deletes a judge and all associated data. This action cannot be undone.
This will permanently delete the judge and all its evaluation history. Active evaluations using this judge will fail.

Path Parameters

judge_id
string
required
The unique identifier of the judge to delete

Response

Returns 204 No Content on successful deletion.

Examples

curl -X DELETE https://api.judge.example.com/judges/jdg_xyz789 \
  -H "Authorization: Bearer YOUR_API_KEY"
curl -X DELETE https://api.judge.example.com/judges/invalid_id \
  -H "Authorization: Bearer YOUR_API_KEY"
curl -X DELETE https://api.judge.example.com/judges/jdg_active \
  -H "Authorization: Bearer YOUR_API_KEY"