servicePlanInfo resource type

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.

Contains information about a service plan associated with a subscribed SKU. The servicePlans property of the subscribedSku entity is a collection of servicePlanInfo.

Properties

Property Type Description
servicePlanId Guid The unique identifier of the service plan.
servicePlanName String The name of the service plan.
provisioningStatus String The provisioning status of the service plan. The possible values are:
Success - Service is fully provisioned.
Disabled - Service is disabled.
Error - The service plan isn't provisioned and is in an error state.
PendingInput - The service isn't provisioned and is awaiting service confirmation.
PendingActivation - The service is provisioned but requires explicit activation by an administrator (for example, Intune_O365 service plan)
PendingProvisioning - Microsoft has added a new service to the product SKU and it isn't activated in the tenant.
appliesTo String The object the service plan can be assigned to. The possible values are:
User - service plan can be assigned to individual users.
Company - service plan can be assigned to the entire tenant.

JSON representation

The following JSON representation shows the resource type.

{
  "appliesTo": "String",
  "provisioningStatus": "String",
  "servicePlanId": "Guid",
  "servicePlanName": "String"
}