External DocumentationTo learn more, visit the Living Security documentation.
Actions
List Participants
Get a list of participants of a campaign with optional filtering.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Campaign ID | The ID of the campaign. |
| Cursor | Pagination cursor returned from a previous request. If this value is provided, results continue from the last cursor and any other specified search attributes or terms will be ignored. |
| Page | The page to show results from, defaults to 1. |
| Page Size | The maximum number of results to return, defaults to 20. |
| Return All Pages | Automatically fetch all resources, page by page. |
| Sort | Sort the returned participants. The format of the sort criteria is: field|direction. Direction can be either asc (ascending) or desc (descending) order. Defaults to user_id. When the direction is not specified, defaults to asc. |
{
"data": [
{
"user_id": "string",
"campaign_id": "string",
"user": {
"email": "string",
"first_name": "string",
"last_name": "string",
"name": "string",
"country": "string",
"state": "string",
"city": "string",
"division": "string",
"department": "string",
"job_title": "string",
"manager_name": "string",
"manager_value": "string",
"user_type": "string",
"organization": "string",
"company_roles": "string",
"created_at": "2025-04-28T11:47:39.227Z",
"updated_at": "2025-04-28T11:47:39.227Z"
},
"assignments_completed": 0,
"assignments_not_started": 0,
"assignments_overdue": 0,
"assignments_underway": 0,
"total_assignments": 0,
"total_questions_answered": 0,
"total_questions_correct": 0,
"completion_time": 0,
"start_date": "2025-04-28T11:47:39.227Z"
}
],
"meta": {
"total": 0,
"returned": 0,
"pagination": {
"page_size": 0,
"page": 0,
"next": "string"
}
}
}
Was this page helpful?