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

Create a new group of type 'Microsoft 365 group' or 'Security group'.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `Group.Create`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Entra ID documentation](https://learn.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                              |
  | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Display Name     | The name to display in the address book for the group. Maximum length 256 characters.                                                                                                                                                                    |
  | Mail Enabled     | Set to 'true' for mail-enabled groups.                                                                                                                                                                                                                   |
  | Mail Nickname    | The mail alias for the group, unique for Microsoft 365 groups in the organization.<br />Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () \ \[] " ; : .  , SPACE. |
  | Security Enabled | Set to true for security-enabled groups, including Microsoft 365 groups.                                                                                                                                                                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "<string>",
	"id": "<string>",
	"deletedDateTime": null,
	"classification": null,
	"createdDateTime": "2022-11-24T10:00:59",
	"creationOptions": [],
	"description": null,
	"displayName": "<string>",
	"expirationDateTime": null,
	"groupTypes": [],
	"isAssignableToRole": null,
	"mail": null,
	"mailEnabled": true,
	"mailNickname": "<string>",
	"membershipRule": null,
	"membershipRuleProcessingState": null,
	"onPremisesDomainName": null,
	"onPremisesLastSyncDateTime": null,
	"onPremisesNetBiosName": null,
	"onPremisesSamAccountName": null,
	"onPremisesSecurityIdentifier": null,
	"onPremisesSyncEnabled": null,
	"preferredDataLocation": null,
	"preferredLanguage": null,
	"proxyAddresses": [],
	"renewedDateTime": "2022-08-15T17:15:22",
	"resourceBehaviorOptions": [],
	"resourceProvisioningOptions": [],
	"securityEnabled": false,
	"securityIdentifier": "<string>",
	"theme": null,
	"uniqueName": null,
	"visibility": null,
	"onPremisesProvisioningErrors": [],
	"serviceProvisioningErrors": []
}
```

## Workflow Library Example

[Create Group with Microsoft Entra Id and Send Results Via Email](https://library.blinkops.com/workflows/create-group-with-microsoft-entra-id-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-group-with-microsoft-entra-id-and-send-results-via-email/canvas" />
</div>
