Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,004 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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"
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}). |
---|---|---|