| title | List subscribedSkus |
|---|---|
| description | Retrieve the list of commercial subscriptions that an organization has acquired. |
| ms.localizationpriority | medium |
| author | frank-masuelli |
| ms.subservice | entra-directory-management |
| doc_type | apiPageType |
| ms.date | 10/31/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Get the list of commercial subscriptions that an organization has acquired. For the mapping of license names as displayed on the Microsoft Entra admin center or the Microsoft 365 admin center against their Microsoft Graph skuId and skuPartNumber properties, see Product names and service plan identifiers for licensing.
[!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]
[!INCLUDE rbac-company-subscriptions-subscribedskus-apis]
GET /subscribedSkusThis method supports only the $select OData query parameter to help customize the response. It does not support $filter.
Note
This API has a known issue related to the $search parameter.
| 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 collection of subscribedSku objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/subscribedSkus
[!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]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"value": [
{
"accountName": "Sample account name",
"accountId": "ee045480-0260-4c1e-b946-55842502229c",
"appliesTo": "User",
"capabilityStatus": "Enabled",
"consumedUnits": 20,
"id": "48a80680-7326-48cd-9935-b556b81d3a4e_b05e124f-c7cc-45a0-a6aa-8cf78c946968",
"prepaidUnits": {
"enabled": 20,
"lockedOut": 0,
"suspended": 0,
"warning": 0
},
"servicePlans": [
{
"servicePlanId": "113feb6c-3fe4-4440-bddc-54d774bf0318",
"servicePlanName": "EXCHANGE_S_FOUNDATION",
"provisioningStatus": "Success",
"appliesTo": "Company"
}
],
"skuId": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
"skuPartNumber": "EMSPREMIUM",
"subscriptionIds": ["99cd2aed-d62f-4b1b-b92a-e0ddd2887742"]
}
]
}