> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Participants

Get a list of participants of a campaign with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [Living Security documentation](https://docs.api.livingsecurity.com/reference/list_participants_v1_training_campaigns__campaign_id__participants_get).
</Note>

## Parameters

<div className="integrations-table">
  | 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. <br /><br />The format of the sort criteria is: `field\|direction`. Direction can be either `asc` (ascending) or `desc` (descending) order. <br /><br />Defaults to `user_id`. When the direction is not specified, defaults to `asc`. |
</div>

## Example Output

```json theme={"dark"}
{
	"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"
		}
	}
}
```

## Workflow Library Example

[List Participants with Living Security and Send Results Via Email](https://library.blinkops.com/workflows/list-participants-with-living-security-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-participants-with-living-security-and-send-results-via-email/canvas" />
</div>
