> ## 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.

# Get Phishing Enrollments

Retrieve a list of phishing enrollment records by campaign ID and simulation ID.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                             |
  | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
  | Campaign ID      | The phishing campaign ID to filter by. 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.                                                                                        |
  | Simulation ID    | The phishing simulation ID to filter by. Can be obtained using `List Campaign Simulations` action.                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"enrollments": [
		{
			"enrollment_id": "d0e1f2a3-b4c5-6789-defa-b01234567890",
			"campaign_id": "c3d4e5f6-a7b8-9012-cdef-a34567890123",
			"simulation_id": "c18f4e0b-5678-9abc-def0-123456789abc",
			"user": {
				"id": "a3b4c5d6-e7f8-9012-abcd-e34567890123",
				"email": "john.smith@example.com"
			},
			"scenario_id": "a7b8c9d0-e1f2-3456-abcd-e78901234567",
			"scheduled_at": "2025-06-10T15:02:38.000Z",
			"delivered_at": "2025-06-10T15:02:38.000Z",
			"opened_at": "2025-06-10T15:04:38.000Z",
			"clicked_at": "2025-06-10T15:05:38.000Z",
			"replied_at": null,
			"attachment_opened_at": null,
			"credentials_entered": "2025-06-10T15:07:38.000Z",
			"qr_code_scanned": null,
			"reported_at": null,
			"failed_at": "2025-06-10T15:07:38.000Z",
			"ip": "192.168.1.100",
			"ip_location": "Philadelphia, PA"
		}
	],
	"page_after": "f2a3b4c5-d6e7-8901-fabc-d23456789012"
}
```

## Workflow Library Example

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