subscribedSku resource type

Namespace: microsoft.graph

Contains information about a service SKU that a company is subscribed to.

Only the read operation is supported on subscribed SKUs; create, update, and delete are not supported. Query filter expressions are not supported. Inherits from directoryObject.

Methods

Method Return Type Description
Get subscribedSku subscribedSku Get a specific commercial subscription that an organization has acquired.
List subscribedsku subscribedSku collection Get the list of commercial subscriptions that an organization has acquired.

Properties

Property Type Description
appliesTo String For example, "User" or "Company".
capabilityStatus String Possible values are: Enabled, Warning, Suspended, Deleted, LockedOut. The capabilityStatus is Enabled if the prepaidUnits property has at least 1 unit that is enabled, and LockedOut if the customer cancelled their subscription.
consumedUnits Int32 The number of licenses that have been assigned.
id String The unique identifier for the subscribed sku object. Key, not nullable.
prepaidUnits licenseUnitsDetail Information about the number and status of prepaid licenses.
servicePlans servicePlanInfo collection Information about the service plans that are available with the SKU. Not nullable
skuId Guid The unique identifier (GUID) for the service SKU.
skuPartNumber String The SKU part number; for example: "AAD_PREMIUM" or "RMSBASIC". To get a list of commercial subscriptions that an organization has acquired, see List subscribedSkus.

Relationships

None

JSON representation

The following is a JSON representation of the resource

{
  "appliesTo": "String",
  "capabilityStatus": "String",
  "consumedUnits": 1024,
  "id": "String (identifier)",
  "prepaidUnits": {"@odata.type": "microsoft.graph.licenseUnitsDetail"},
  "servicePlans": [{"@odata.type": "microsoft.graph.servicePlanInfo"}],
  "skuId": "Guid",
  "skuPartNumber": "String"
}

See also