mirror of
https://github.com/KelvinTegelaar/CIPP.git
synced 2026-04-25 16:26:09 +03:00
[GH-ISSUE #2664] [Feature Request]: Microsoft365 'Unified' Group Creation #1332
Labels
No labels
API
Feature
NotABug
NotABug
Planned
Sponsor Priority
Sponsor Priority
bug
documentation
duplicate
enhancement
needs more info
no-activity
no-priority
not-assigned
pull-request
react-conversion
react-conversion
roadmap
security
stale
unconfirmed-by-user
unconfirmed-by-user
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/CIPP#1332
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rwllr on GitHub (Jul 11, 2024).
Original GitHub issue: https://github.com/KelvinTegelaar/CIPP/issues/2664
Description of the new feature - must be an in-depth explanation of the feature you want, reasoning why, and the added benefits for MSPs as a whole.
Unified modern groups are the future of groups and existing groups can already be modified by CIPP.
This is possible and documented in the Graph docs, so should be an easy addition to make.
https://learn.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0&tabs=http
`POST https://graph.microsoft.com/v1.0/groups
Content-type: application/json
{
"description": "Self help community for library",
"displayName": "Library Assist",
"groupTypes": [
"Unified"
],
"mailEnabled": true,
"mailNickname": "library",
"securityEnabled": false,
"visibility": "Public"
}`
Making a group Teams enabled is a separate API call so should probably a separate API call and so should probably be a separate request.
PowerShell commands you would normally use to achieve above request
No response
@KelvinTegelaar commented on GitHub (Jul 16, 2024):
There is a way to add Microsoft teams groups in the teams section, we also added this to both the groups and the group templates.