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

Get a list of the sessions in a Security Copilot workspace.

The following permissions are required to run this action - `SecurityCopilotWorkspaces.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Security Copilot documentation](https://learn.microsoft.com/en-us/graph/api/security-securitycopilot-workspace-list-sessions?view=graph-rest-beta\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                      |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Filter           | The filtering criteria to filter results using `OData Query Syntax`. For example - `startswith(displayName,'J')`.<br /><br />For more information, refer to [Filter](https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#filter). |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                 |
  | Select           | A comma-separated list of properties to return for each object in the response.                                                                                                                                                                  |
  | Skip             | The number of results to skip from the beginning of the result set.                                                                                                                                                                              |
  | Top              | The maximum number of results to return in the response.                                                                                                                                                                                         |
  | Workspace ID     | The ID of the Security Copilot workspace. Use `default` for the default workspace.                                                                                                                                                               |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "https://graph.microsoft.com/beta/$metadata#security/securityCopilot/workspaces('default')/sessions",
	"@odata.count": 2,
	"value": [
		{
			"id": "f0f54c69-8f8a-4f33-b6e3-386d58b408db",
			"createdDateTime": "2025-10-15T15:54:58.4862768Z",
			"lastModifiedDateTime": "2025-10-15T15:54:58.4862768Z",
			"displayName": null
		},
		{
			"id": "8e95c36e-c9bd-4e14-8317-3cd4332e1e3b",
			"createdDateTime": "2025-09-17T19:23:41.1506601Z",
			"lastModifiedDateTime": "2025-09-17T19:28:21.2902705Z",
			"displayName": "who am i"
		}
	]
}
```

## Workflow Library Example

[List Sessions with Microsoft Security Copilot and Send Results Via Email](https://library.blinkops.com/workflows/list-sessions-with-microsoft-security-copilot-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-sessions-with-microsoft-security-copilot-and-send-results-via-email/canvas" />
</div>
