Skip to main content
GET
/
api
/
v1
/
participants
/
:id
{
  "success": true,
  "data": {}
}

Get Single Participant

Retrieve details for a specific participant by ID.
id
string
required
Participant ID
success
boolean
Indicates if the request was successful
data
object
Participant object with computed fields (supergroup_name, subgroup_name, block_name, room_name)

Example Request

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

Example Response

{
  "success": true,
  "data": {
    "id": "API_TEST_001",
    "user_id": "API_TEST_001",
    "first_name": "API",
    "surname": "TEST",
    "supergroup_name": "Junior Camp",
    "subgroup_name": "Dragon",
    "block_name": "Block A",
    "room_name": "Room 9"
  }
}