> ## 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 Access Control Rule

Creates an access control rule.

<Note>
  External Documentation

  To learn more, visit the [Google Calendar documentation](https://developers.google.com/calendar/api/v3/reference/acl/insert).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Calendar ID | Calendar identifier. To retrieve calendar IDs use the `List Calendars` action.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Role        | The role assigned to the scope.<br />\* `none` - Provides no access.<br />\* `freeBusyReader` - Provides read access to free/busy information.<br />\* `reader` - Provides read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.<br />\* `writer` - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible. Provides read access to the calendar's ACLs.<br />\* `owner` - Provides ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to manipulate ACLs. |
  | Scope Type  | The type of the scope.<br />\* `default` - The public scope. This is the default value.<br />\* `user` - Limits the scope to a single user.<br />\* `group` - Limits the scope to a group.<br />\* `domain` - Limits the scope to a domain.                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | Scope Value | The email address of a user or group, or the name of a domain, depending on the scope type.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter          | Description                                                      |
  | ------------------ | ---------------------------------------------------------------- |
  | Send Notifications | Whether to send notifications about the calendar sharing change. |
</div>

## Example Output

```json theme={"dark"}
{
	"kind": "<string>",
	"etag": "<string>",
	"id": "<string>",
	"scope": {
		"type": "<string>",
		"value": "<string>"
	},
	"role": "<string>"
}
```

## Workflow Library Example

[Create Access Control Rule with Google Calendar and Send Results Via Email](https://library.blinkops.com/workflows/create-access-control-rule-with-google-calendar-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-access-control-rule-with-google-calendar-and-send-results-via-email/canvas" />
</div>
