Create acceptedSender
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.
Example
Request
The following is an example of the request.
POST https://graph.microsoft.com/v1.0/groups/{id}/acceptedSenders/$ref
Content-type: application/json
Content-length: 30
{
"@odata.id":"https://graph.microsoft.com/v1.0/users/alexd@contoso.com"
}
Response
The following is an example of the response.
HTTP/1.1 204 No Content
Feedback
We'd love to hear your thoughts. Choose the type you'd like to provide:
Our feedback system is built on GitHub Issues. Read more on our blog.
Loading feedback...