Namespace: microsoft.graph
Add a new user or group to the acceptedSender list.
Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group . Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
Group.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
Not supported.
HTTP request
POST /groups/{id}/acceptedSenders/$ref
Request headers
Header
Value
Authorization
Bearer {token}. Required.
Request body
In the request body, supply the id of a user or group object.
Response
This method returns 204 No Content response code and no response body.
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
requestBody := graphmodels.NewReferenceCreate()
"@odata.id" := "https://graph.microsoft.com/v1.0/users/alexd@contoso.com"
requestBody.Set"@odata.id"(&"@odata.id")
graphClient.GroupsById("group-id").AcceptedSenders().$ref().Post(context.Background(), requestBody, nil)
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestBody = new ReferenceCreate();
$requestBody->set@odataid('https://graph.microsoft.com/v1.0/users/alexd@contoso.com');
$graphServiceClient->groupsById('group-id')->acceptedSenders()->ref()->post($requestBody);