Reputation: 9011
I want to create a shared mailbox using Microsoft Graph, but I can't find this API method. I found API how to create simple mailbox folder:
https://learn.microsoft.com/en-us/graph/api/user-post-mailfolders?view=graph-rest-1.0
How to create group:
https://learn.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0
but no found how to create shared mailbox
Upvotes: 2
Views: 2888
Reputation: 162
You can use a SharedMailbox by applying some 'Shared' permitions to the API.
https://learn.microsoft.com/en-us/graph/permissions-reference#mail-permissions
You must also use a variation on the URL (/users/sharedaddress@email.com/EmailFolder).
Upvotes: 0