External DocumentationTo learn more, visit the Snyk documentation.
Actions
List Organizations
Retrieve a list of organizations that are accessible to the user.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| 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. Note: Maximum 100 characters. |
| Return All Pages | Automatically fetch all resources, page by page. |
| Slug | The organization slug to filter results by. Note: The slug can contain only letters, numbers, underscores, dots, or hyphens. Maximum 100 characters. |
| 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. 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. |
{
"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"
}
}
Was this page helpful?