> ## 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 Phishing Campaigns

Retrieve a list of phishing campaigns.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                             |
  | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
  | 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"}
{
	"campaigns": [
		{
			"campaign_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
			"name": "Quarterly Phish Test",
			"target": "GROUPS",
			"groups": [
				{
					"group_id": "f6a7b8c9-d0e1-2345-fabc-d67890123456",
					"name": "All Users"
				}
			],
			"scenarios": [
				{
					"scenario_id": "a7b8c9d0-e1f2-3456-abcd-e78901234567",
					"name": "Zoom Deepfake",
					"sender": "Zoom",
					"difficulty": "Hard",
					"spoofPageType": "DEEPFAKE_SPOOF_PAGE",
					"channel": "EMAIL",
					"attackVector": "LINK_CLICKED"
				}
			],
			"mode": "RECURRING",
			"status": "IN_PROGRESS",
			"created_date": "2025-06-01T13:19:13.402Z",
			"start_date": "2025-06-10T13:19:13.402Z",
			"end_date": "2025-08-10T13:19:13.402Z",
			"distribution_interval": "TWO_WEEKS",
			"recurring_interval": "MONTH",
			"simulations": [
				{
					"simulation_id": "c18f4e0b-5678-9abc-def0-123456789abc",
					"start_date": "2025-06-10T13:19:13.402Z",
					"end_date": "2025-07-10T13:19:13.402Z",
					"status": "COMPLETED"
				}
			]
		}
	],
	"page_after": "f3c7c8f3-1234-5678-9abc-def012345678"
}
```

## Workflow Library Example

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