Get partner licenses usage information
How to get partner licenses usage information aggregated to include all customers.
Note
This scenario is superceded by Get licenses usage information.
Prerequisites
Credentials as described in Partner Center authentication. This scenario supports authentication with App+User credentials.
C#
To retrieve aggregated data on licenses deployment, first get an interface to partner level analytics collection operations from the IAggregatePartner.Analytics property. Then retrieve an interface to the partner level licenses analytics collection from the Licenses property. Finally, call the Usage.Get method to get the aggregated data on licenses usage. If the method succeeds, you'll get a collection of PartnerLicensesUsageInsights objects.
// IAggregatePartner partnerOperations;
var partnerLicensesUsageAnalytics = partnerOperations.Analytics.Licenses.Usage.Get();
REST request
Request syntax
Method | Request URI |
---|---|
GET | {baseURL}/v1/analytics/licenses/usage HTTP/1.1 |
Request headers
For more information, see Partner Center REST headers.
Request body
None.
Request example
GET https://api.partnercenter.microsoft.com/v1/analytics/licenses/usage HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: 6b588e9b-1d02-471a-bce2-79374497c24e
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
X-Locale: en-US
Host: api.partnercenter.microsoft.com
REST response
If successful, the response body contains a collection of PartnerLicensesUsageInsights resources that provide information about the licenses used.
Response success and error codes
Each response comes with an HTTP status code that indicates success or failure and additional debugging information. Use a network trace tool to read this code, error type, and additional parameters. For the full list, see Partner Center REST error codes.
Response example
HTTP/1.1 200 OK
Content-Length: 1156
Content-Type: application/json; charset=utf-8
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
MS-RequestId: 6b588e9b-1d02-471a-bce2-79374497c24e
MS-CV: wk0/vjugzEe0Z9cv.0
MS-ServerId: 101112012
Date: Wed, 15 Mar 2017 01:18:26 GMT
{
"totalCount": 5,
"items": [{
"proratedLicensesUsagePercent": 0.0,
"workloadName": "Microsoft Dynamics CRM",
"processedDateTime": "2017-03-10T00:00:00+00:00",
"serviceName": "crm",
"channel": "reseller",
"attributes": {
"objectType": "PartnerLicensesUsageInsights"
}
}, {
"proratedLicensesUsagePercent": 0.0,
"workloadName": "SharePoint",
"processedDateTime": "2017-03-10T00:00:00+00:00",
"serviceName": "crm",
"channel": "reseller",
"attributes": {
"objectType": "PartnerLicensesUsageInsights"
}
}, {
"proratedLicensesUsagePercent": 0.0,
"workloadName": "Exchange",
"processedDateTime": "2017-03-09T00:00:00+00:00",
"serviceName": "o365",
"channel": "reseller",
"attributes": {
"objectType": "PartnerLicensesUsageInsights"
}
}, {
"proratedLicensesUsagePercent": 0.0,
"workloadName": "SharePoint",
"processedDateTime": "2017-03-09T00:00:00+00:00",
"serviceName": "o365",
"channel": "reseller",
"attributes": {
"objectType": "PartnerLicensesUsageInsights"
}
}, {
"proratedLicensesUsagePercent": 0.0,
"workloadName": "Skype For Business",
"processedDateTime": "2017-03-09T00:00:00+00:00",
"serviceName": "o365",
"channel": "reseller",
"attributes": {
"objectType": "PartnerLicensesUsageInsights"
}
}
],
"attributes": {
"objectType": "Collection"
}
}