Update officeClientConfigurationAssignment
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a officeClientConfigurationAssignment 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 most to least privileged) |
---|---|
Delegated (work or school account) | **TODO: Determine scopes ** |
Delegated (personal Microsoft account) | Not supported. |
Application | **TODO: Determine scopes ** |
HTTP Request
PATCH /officeConfiguration/clientConfigurations/{officeClientConfigurationId}/assignments/{officeClientConfigurationAssignmentId}
Request headers
Header | Value |
---|---|
Authorization | Bearer <token> Required. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the officeClientConfigurationAssignment object.
The following table shows the properties that are required when you create the officeClientConfigurationAssignment.
Property | Type | Description |
---|---|---|
id | String | Not yet documented |
target | officeConfigurationAssignmentTarget | Not yet documented |
Response
If successful, this method returns a 200 OK
response code and an updated officeClientConfigurationAssignment object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/officeConfiguration/clientConfigurations/{officeClientConfigurationId}/assignments/{officeClientConfigurationAssignmentId}
Content-type: application/json
Content-length: 98
{
"target": {
"@odata.type": "microsoft.graph.officeConfigurationAssignmentTarget"
}
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 221
{
"@odata.type": "#microsoft.graph.officeClientConfigurationAssignment",
"id": "804730f3-30f3-8047-f330-4780f3304780",
"target": {
"@odata.type": "microsoft.graph.officeConfigurationAssignmentTarget"
}
}
Feedback
Submit and view feedback for