-
Notifications
You must be signed in to change notification settings - Fork 23
Analytics Operations
Paul Smelser edited this page Oct 19, 2017
·
6 revisions
Use the Spring Social for Microsoft Partner Center to programmatically retrieve analytic information.
Get partner licenses deployment information aggregated to include all customers.
final AnalyticsOperations analyticsOperations = partnerCenterAdmin.getAnalyticsOperations();
final PartnerCenterResponse<PartnerLicensesDeploymentInsights> partnerDeployments = analyticsOperations.getPartnerLicensesDeploymentInformation().getBody();
Get partner licenses usage information aggregated to include all customers.
final AnalyticsOperations analyticsOperations = partnerCenterAdmin.getAnalyticsOperations();
final PartnerCenterResponse<PartnerLicensesUsageInsights> partnerUsage = analyticsOperations.getPartnerLicensesUsageInsights().getBody();
Get licenses deployment insights for a specific customer
final AnalyticsOperations analyticsOperations = partnerCenterAdmin.getAnalyticsOperations();
final ResponseEntity<PartnerCenterResponse<CustomerLicensesDeploymentInsights>> customerDeployments = analyticsOperations.getCustomerLicensesDeploymentInsights("00000000-0000-0000-0000-000000000001");
Get licenses deployment insights for a specific customer.
final AnalyticsOperations analyticsOperations = partnerCenterAdmin.getAnalyticsOperations();
final ResponseEntity<PartnerCenterResponse<CustomerLicensesUsageInsights>> customerLicensesUsageInsights = analyticsOperations.getCustomerLicensesUsageInsights("00000000-0000-0000-0000-000000000001");