| title | List servicePlans |
|---|---|
| description | List the currently available service plans that an organization can purchase for their Cloud PCs. |
| author | RuiHou105 |
| ms.localizationpriority | medium |
| ms.subservice | cloud-pc |
| doc_type | apiPageType |
| ms.date | 04/04/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
List the currently available service plans that an organization can purchase for their Cloud PCs.
For examples of currently available service plans, see Windows 365 compare plans and pricing. Currently, Microsoft Graph API is available for Windows 365 Enterprise.
[!INCLUDE national-cloud-support]
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]
GET /deviceManagement/virtualEndpoint/servicePlansThis method does not support OData query parameters to customize the response. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of cloudPcServicePlan objects in the response body.
GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/servicePlans
[!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]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"@odata.type": "#microsoft.graph.cloudPcServicePlan",
"id": "dea1edd3-edd3-dea1-d3ed-a1ded3eda1de",
"displayName": "Cloud PC - Level 1 - 1vCPU/2GB",
"type": "enterprise",
"vCpuCount": 1,
"ramInGB": 2,
"storageInGB": 64,
"userProfileInGB": 25
}
]
}