Skip to main content
DELETE
/
api-key
/
judges
/
{judge_id}
{
  "deleted": true,
  "judge_id": "<string>",
  "deleted_at": {}
}

Overview

Deletes a judge using API key authentication. This action is irreversible and will remove all associated data.

Headers

X-API-Key
string
required
Organization API key for authentication

Path Parameters

judge_id
string
required
Unique identifier of the judge to delete

Response

deleted
boolean
required
Whether the judge was successfully deleted
judge_id
string
required
ID of the deleted judge
deleted_at
datetime
required
Deletion timestamp

Examples

curl -X DELETE https://api.judge.example.com/api-key/judges/jdg_xyz789 \
  -H "X-API-Key: YOUR_API_KEY"