Skip to main content
DELETE
/
api
/
v1
/
participants
/
:id

Delete Participant

Soft delete a participant (sets deleted_at timestamp).
id
string
required
Participant ID
This is a soft delete. The participant record remains in the database but is marked as deleted. It will not appear in list queries.

Example Request

curl -X DELETE https://api.checkpoint.b-digital.uk/api/v1/participants/API_TEST_001 \
  -H "X-API-Key: YOUR_API_KEY"

Example Response

{
  "success": true,
  "message": "Participant deleted successfully"
}