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

# Create Organization Invitation

Invite a user to an organization with a role.

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                       |
  | --------------- | ----------------------------------------------------------------- |
  | Email           | The email address of the invitee.                                 |
  | Organization ID | The id of the org the user is being invited to.                   |
  | Related Links   | A string containing the link’s URL.                               |
  | Role            | The role public ID that will be granted to invitee on acceptance. |
</div>

## Example Output

```json theme={"dark"}
{
	"jsonapi": {
		"version": "1.0"
	},
	"data": {
		"type": "org_invitation",
		"id": "d9dee0aa-e832-46c3-93b4-5aef8e350474",
		"attributes": {
			"email": "omer+1688566943456@example.com",
			"role": "d8ba290b-aa9e-4957-9f0b-9409d7b4f883",
			"is_active": true
		},
		"relationships": {
			"org": {
				"links": {
					"related": "/orgs/bdac969a-d4c0-4b3a-905a-8bf7737f8fa8?version=2022-02-16~experimental"
				},
				"data": {
					"type": "org",
					"id": "bdac969a-d4c0-4b3a-905a-8bf7737f8fa8"
				}
			}
		}
	}
}
```

## Workflow Library Example

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