> ## 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 Campaign Simulations

Retrieve a list of all simulation executions for a campaign by its ID.

<Note>
  External Documentation

  To learn more, visit the [Adaptive Security documentation](https://developer.adaptivesecurity.com/#tag/Phishing/operation/listCampaignSimulations).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                             |
  | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
  | Campaign ID      | The ID of the phishing campaign. Can be obtained using `List Phishing Campaigns` action.                                                |
  | Page After       | The pagination token used to specify the next page of results. Can be obtained from the `page_after` property from a previous response. |
  | Page Size        | The maximum number of results to return per page.                                                                                       |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"simulations": [
		{
			"simulation_id": "e9a7f2d1-9999-8888-7777-9ac3",
			"campaign_id": "3d65f3b0-aaaa-bbbb-cccc-8c1c",
			"start_date": "2025-09-10T13:19:13.402Z",
			"end_date": "2025-10-10T13:19:13.402Z",
			"status": "SCHEDULED",
			"distribution_interval": "TWO_WEEKS",
			"scenarios": [
				{
					"scenario_id": "s-google-456",
					"name": "Google Account Compromise",
					"sender": "Google",
					"difficulty": "EASY",
					"spoofPageType": "LOGIN_SPOOF_PAGE",
					"channel": "EMAIL",
					"attackVector": "LINK_CLICKED"
				}
			]
		}
	],
	"page_after": "e9a7f2d1-9999-8888-7777-9ac3"
}
```

## Workflow Library Example

[List Campaign Simulations with Adaptive Security and Send Results Via Email](https://library.blinkops.com/workflows/list-campaign-simulations-with-adaptive-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-campaign-simulations-with-adaptive-security-and-send-results-via-email/canvas" />
</div>
