When I create an Office 365 email enabled Group, how do I set the setting: "members will receive all group conversations and events in their inboxes" using the graph rest api?

Joshua Walton 20 Reputation points
2023-11-03T15:39:14.35+00:00

What is the appropriate attribute to set with the Rest API for Graph to select the option:
"Members will receive all groups conversations and events in their inboxes"

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,004 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 105.7K Reputation points MVP
    2023-11-03T15:57:30.95+00:00

    The property you need is autoSubscribeNewMembers. However, you cannot set it upon creation, but only after the Group has been provisioned:

    autoSubscribeNewMembers Boolean Indicates if new members added to the group are auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; don't set it in the initial POST request that creates the group. Default value is false.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.