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

External Documentation

To learn more, visit the Living Security documentation.

Parameters

ParameterDescription
Campaign IDThe ID of the campaign.
CursorPagination 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.
PageThe page to show results from, defaults to 1.
Page SizeThe maximum number of results to return, defaults to 20.
Return All PagesAutomatically fetch all resources, page by page.
SortSort 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.

Example Output

{
	"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

Preview this Workflow on desktop