Get Single Participant
Retrieve details for a specific participant by ID.
Indicates if the request was successful
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"
}
}