group: addFavorite
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Add the group to the list of the current user's favorite groups. Supported for Microsoft 365 groups only.
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}/addFavorite
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Prefer | return=minimal. If minimal response header is included in the request header, then a successful response returns 204 No Content code. Optional. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns 200 OK
response code. It does not return anything in the response body.
Example
Request
The following is an example of the request.
POST https://graph.microsoft.com/beta/groups/{id}/addFavorite
Response
The following is an example of the response.
HTTP/1.1 200 OK