List servicePlans
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.
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.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ❌ |
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.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | CloudPC.Read.All | CloudPC.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | CloudPC.Read.All | CloudPC.ReadWrite.All |
GET /deviceManagement/virtualEndpoint/servicePlans
This 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
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
}
]
}