Update extendRemoteHelpSessionResponse
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 extendRemoteHelpSessionResponse 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) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
PATCH /ExtendRemoteHelpSessionResponse/{ExtendRemoteHelpSessionResponseId}
Request headers
Header | Value |
---|---|
Authorization | Bearer <token> Required. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the extendRemoteHelpSessionResponse object.
The following table shows the properties that are required when you create the extendRemoteHelpSessionResponse.
Property | Type | Description |
---|---|---|
sessionKey | String | The unique identifier for a session |
acsHelperUserToken | String | Helper ACS User Token |
pubSubHelperAccessUri | String | Azure Pubsub Group Id |
sessionExpirationDateTime | DateTimeOffset | Azure Pubsub Session Expiration Date Time. |
Response
If successful, this method returns a 200 OK
response code and an updated extendRemoteHelpSessionResponse object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/beta/ExtendRemoteHelpSessionResponse/{ExtendRemoteHelpSessionResponseId}
Content-type: application/json
Content-length: 299
{
"@odata.type": "#microsoft.graph.extendRemoteHelpSessionResponse",
"sessionKey": "Session Key value",
"acsHelperUserToken": "Acs Helper User Token value",
"pubSubHelperAccessUri": "Pub Sub Helper Access Uri value",
"sessionExpirationDateTime": "2016-12-31T23:59:57.5564522-08:00"
}
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: 299
{
"@odata.type": "#microsoft.graph.extendRemoteHelpSessionResponse",
"sessionKey": "Session Key value",
"acsHelperUserToken": "Acs Helper User Token value",
"pubSubHelperAccessUri": "Pub Sub Helper Access Uri value",
"sessionExpirationDateTime": "2016-12-31T23:59:57.5564522-08:00"
}
Feedback
Submit and view feedback for