List Participants
Retrieve a list of participants, optionally filtered by instance or status.
Filter by instance ID (optional)
Filter by status: active, inactive (optional)
Number of results per page (default: 50)
Number of results to skip (default: 0)
Indicates if the request was successful
Array of participant objects
Pagination metadata (total, limit, offset)
Example Request
curl -X GET https://api.checkpoint.b-digital.uk/api/v1/participants \
-H "X-API-Key: YOUR_API_KEY"
Example Response
{
"success": true,
"data": [
{
"id": "20527",
"user_id": "20527",
"first_name": "Ella",
"surname": "Lassman",
"full_name": "Ella Lassman",
"status": "active",
"instance_id": "se8SajpJDWUwrEmhElLF",
"supergroup_name": "Junior Camp",
"subgroup_name": "Dragon",
"block_name": "Block A",
"room_number": "9"
}
],
"meta": {
"total": 150,
"limit": 50,
"offset": 0
}
}