Forum Discussion
oliwa66
May 28, 2023Copper Contributor
How to set "send-as" permissions on a created email box
Hi, i'd like to know if the graph api provides any endpoint to set the permissions for a newly created azure ad user to allow "send-as" permissions. the user has an email box and when i go into port...
VasilMichev
May 29, 2023MVP
"Owner" actions can (mostly) be performed via the Graph API, but delegating Send As is considered an admin operation, and there is zero support for such in the Graph currently 😕
oliwa66
May 29, 2023Copper Contributor
is it still an owner-action when i do that as admin for a user account, e.g. change the calendar to display weeks different, set timezone, language etc.?
if there is a graph api endpoint that i can access with my admin creds and change that for the user, would be great
if there is a graph api endpoint that i can access with my admin creds and change that for the user, would be great
- VasilMichevMay 30, 2023MVPHave you looked at https://learn.microsoft.com/en-us/graph/api/user-update-mailboxsettings?view=graph-rest-1.0&tabs=http
- oliwa66Jun 07, 2023Copper Contributor
VasilMichev i tested it with:
Set-MailboxCalendarFolder -PublishEnabled $true -Identity email address removed for privacy reasons:\Calendar -DetailLevel FullDetails -Confirm:$false
Unfortunately i get an error that the policy blocks anonymous sharing, which is of course also not what i want. I assume somehow i have to again use the "Default" user to share access to the calendar company wide. Can you give me a hint how to achieve that?
- VasilMichevJun 07, 2023MVPPublishing is generally intended for external sharing, if you want to share a Calendar company-wide, adjust the permissions on the Default principal entry.
Set-MailboxFolderPermission -Identity user:\Calendar -User Default -AccessRights LimitedDetails
- oliwa66May 30, 2023Copper Contributor
Yes, i found some things i can configure, but e.g. the start day of the week was not there