Skip to content

Latest commit

 

History

History
113 lines (88 loc) · 4.51 KB

File metadata and controls

113 lines (88 loc) · 4.51 KB
title cloudPC: retrieveCloudPcLaunchDetail
description Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user.
author sentry-cy
ms.localizationpriority medium
ms.subservice cloud-pc
doc_type apiPageType
ms.date 11/25/2025

cloudPC: retrieveCloudPcLaunchDetail

Namespace: microsoft.graph

Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user.

[!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

To get the cloudPcLaunchDetail for a specific cloudPC of the specified user (who is the signed-in user) in the organization using delegated permission:

GET /me/cloudPCs/{cloudPCId}/retrieveCloudPcLaunchDetail
GET /users/{userId}/cloudPCs/{id}/retrieveCloudPcLaunchDetail

Optional query parameters

This method doesn't support OData query parameters to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this function returns a 200 OK response code and a cloudPcLaunchDetail object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/me/cloudPCs/a20d556d-85f7-88cc-bb9c-08d9902bb7bb/retrieveCloudPcLaunchDetail

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.cloudPcLaunchDetail",
  "cloudPcId": "a20d556d-85f7-88cc-bb9c-08d9902bb7bb",
  "cloudPcLaunchUrl": "https://rdweb-r0.wvdselfhost.microsoft.com/api/arm/weblaunch/tenants/662009bc-7732-4f6f-8726-25883518b33e/resources/662009bc-7732-4f6f-8726-25883518b33e",
  "windows365SwitchCompatible": false,
  "windows365SwitchCompatibilityFailureReasonType": "osVersionNotSupported"
}