Assign onPremisesAgent to onPremisesAgentGroup

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.

Assign an onPremisesAgent to an onPremisesAgentGroup object.

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) Directory.ReadWrite.All
Delegated (personal Microsoft account) Not supported.
Application Not supported.

HTTP request

POST /onPremisesPublishingProfiles/{publishingType}/agents/{id1}/agentGroups/$ref

Request headers

Name Description
Authorization Bearer {token}

Request body

In the request body, supply a JSON representation of an OData reference to an onPremisesAgentGroup object.

Response

If successful, this method returns a 201 Created response code and a new onPremisesAgentGroup object in the response body.

Examples

Request

The following is an example of the request.

POST https://graph.microsoft.com/beta/onPremisesPublishingProfiles/provisioning/agents/1234b780-965f-4149-85c5-a8c73e58b67d/agentGroups/$ref

In the request body, supply a JSON representation of OData reference to an onPremisesAgentGroup object.

{
  "@odata.id": "https://graph.microsoft.com/beta/onPremisesPublishingProfiles/provisioning/agentGroups/8832388F-3814-4952-B288-FFB62081FE25/"
}

Response

The following is an example of the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 204 No Content