Skip to content

Latest commit

 

History

History
97 lines (69 loc) · 2.75 KB

grouplifecyclepolicy-removegroup.md

File metadata and controls

97 lines (69 loc) · 2.75 KB
title description author ms.reviewer ms.localizationpriority ms.subservice doc_type
groupLifecyclePolicy: removeGroup
Removes a group from a lifecycle policy.
yuhko-msft
mbhargav, khotzteam, aadgroupssg
medium
entra-groups
apiPageType

groupLifecyclePolicy: removeGroup

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Removes a group from a lifecycle policy.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

POST /groupLifecyclePolicies/{id}/removeGroup

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json

Request body

In the request body, provide a JSON object with the following parameters.

Parameter Type Description
groupId String The identifier of the group to remove from the policy.

Response

If successful, this method returns 200 OK response code. If the group is removed from the policy, a true value is returned in the response body. Otherwise, a false value is returned in the response body.

Example

Request
POST https://graph.microsoft.com/beta/groupLifecyclePolicies/{id}/removeGroup
Content-type: application/json

{
  "groupId": "ffffffff-ffff-ffff-ffff-ffffffffffff"
}
Response
HTTP/1.1 200 OK
Content-type: application/json

{
  "value": true
}