> ## 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 Organization Invitations

List pending user invitations to an organization.

<Note>
  External Documentation

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

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                      |
  | ---------------- | ------------------------------------------------ |
  | Organization ID  | The id of the org the user is being invited to.  |
  | Return All Pages | Automatically fetch all resources, page by page. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter      | Description                                                |
  | -------------- | ---------------------------------------------------------- |
  | Ending Before  | Return the page of results immediately before this cursor. |
  | Limit          | Number of results to return per page.                      |
  | Starting After | Return the page of results immediately after this cursor.  |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"attributes": {
				"email": "example@email.com",
				"is_active": true,
				"role": "f1968726-1dca-42d4-a4dc-80cab99e2b6c"
			},
			"id": "1892a80e-0bf0-4000-8376-3dac6ecb8d01",
			"relationships": {
				"org": {
					"data": {
						"id": "4a72d1db-b465-4764-99e1-ecedad03b06a",
						"type": "resource"
					},
					"links": {
						"related": {
							"href": "https://example.com/api/resource/4a72d1db-b465-4764-99e1-ecedad03b06a"
						}
					}
				}
			},
			"type": "org_invitation"
		}
	],
	"jsonapi": {
		"version": "1.0"
	},
	"links": {
		"first": "https://example.com/api/resource",
		"last": "https://example.com/api/resource",
		"next": "https://example.com/api/resource",
		"prev": "https://example.com/api/resource",
		"related": "https://example.com/api/resource",
		"self": "https://example.com/api/resource"
	}
}
```

## Workflow Library Example

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