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

Retrieve a list of organizations that are accessible to the user.

<Note>
  External Documentation

  To learn more, visit the [Snyk documentation](https://apidocs.snyk.io/?version=2025-11-05#get-/orgs).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                           |
  | ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Group ID          | The ID of the group to filter the results by.                                                                                                                         |
  | Is Personal       | Select to return only organizations that are not associated with a group.                                                                                             |
  | Organization Name | The organization name to filter results by.<br /><br />**Note:** Maximum `100` characters.                                                                            |
  | Return All Pages  | Automatically fetch all resources, page by page.                                                                                                                      |
  | Slug              | The organization slug to filter results by.<br /><br />**Note:** The slug can contain only letters, numbers, underscores, dots, or hyphens. Maximum `100` characters. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                                                     |
  | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
  | Ending Before  | The pagination cursor used to return the page before this token.                                                                                |
  | Limit          | The maximum number of organizations to return in the response.<br /><br />**Note** Valid values are between `10` and `100`, in multiples of 10. |
  | Starting After | The pagination cursor used to return the page after this token.                                                                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"attributes": {
				"group_id": "59d6d97e-3106-4ebb-b608-352fad9c5b34",
				"is_personal": true,
				"name": "My Org",
				"slug": "my-org"
			},
			"id": "59d6d97e-3106-4ebb-b608-352fad9c5b34",
			"type": "resource"
		}
	],
	"jsonapi": {
		"version": "1.0"
	},
	"links": {
		"first": "https://example.com/api/resource?ending_before=v1.eyJpZCI6IjExIn0K",
		"last": "https://example.com/api/resource?starting_after=v1.eyJpZCI6IjMwIn0K",
		"next": "https://example.com/api/resource?starting_after=v1.eyJpZCI6IjEwIn0K"
	}
}
```

## Workflow Library Example

[List Organizations with Snyk and Send Results Via Email](https://library.blinkops.com/workflows/list-organizations-with-snyk-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-organizations-with-snyk-and-send-results-via-email/canvas" />
</div>
