Using the Microsoft Graph API I can see the contracts of my organization when I execute:
A Sample Response below:
"value": [
{
"id": "107adc54-f77c-4b8b-9cc0-1759e8d0cdfer",
"deletedDateTime": null,
"contractType": "2",
"customerId": "75ace3eb-6bf4-4655-95fd-f3d0610924789",
"defaultDomainName": "test.onmicrosoft.com",
"displayName": "Test Me"
}
How can i query the subscribedskus of the above contract via Graph API. is this even possible?
I tried
https://graph.microsoft.com/v1.0/test.onmicrosoft.com/subscribedSkus
But it returns the skus my organization is subscribed to and not the ones subscribed by test.onmicrosoft.com
.
Please assist.