Group Licensing Information Data Type

Contains licensing information for each UEM group in a licensing information response.

Properties
Name Type Description
guid string The group unique identifier
groupName string The group name
numberOfUsers number Number of users in the group
licensedServices array of Licensed Service Listing of license service objects containing product information
licensedUsage array of Licensed Usage List of license usage objects for the group

Example

{
  "guid" : "705c7b4c-a85b-44f0-9fbd-5a2345c21a9a",
  "groupName" : "All Users",
  "numberOfUsers" : 23,
  "licensedServices" : [ {
    "id" : "watchdox.blackberry.com",
    "name" : "BlackBerry Workspaces",
    "description" : "BlackBerry Workspaces",
    "inGracePeriod" : true,
    "gracePeriodDaysRemaining" : 15,
    "compliant" : true,
    "activatedFeatures" : [ "MDM_CONTROLS", "enterprise.watchdox.blackberry.com" ],
    "complianceStateDescription" : "In compliance",
    "complianceStateDescriptionDetails" : "This service is in compliance."
  }, {
    "id" : "...",
    "name" : "...",
    "description" : "...",
    "inGracePeriod" : false,
    "gracePeriodDaysRemaining" : 12345,
    "compliant" : false,
    "activatedFeatures" : [ "enterprise.watchdox.blackberry.com", "MDM_CONTROLS" ],
    "complianceStateDescription" : "...",
    "complianceStateDescriptionDetails" : "..."
  } ],
  "licensedUsage" : [ {
    "id" : "gsc.license.blackberry.com",
    "name" : "BlackBerry Enterprise Mobility Suite - Content Edition",
    "totalServerLicenses" : 500,
    "availableServerLicenses" : 450,
    "usedServerLicenses" : 50,
    "usedSimLicenses" : 25,
    "totalLicensesInUse" : 75,
    "trial" : true,
    "trialDaysRemaining" : 15,
    "licenseInfo" : [ {
      "type" : "TRIAL",
      "expirationDate" : "2019-05-30T11:04:30.45Z",
      "aboutToExpire" : true,
      "quantity" : 10,
      "statusType" : "WARNING",
      "statusDescription" : "10 Trial licenses expire on 05/30/2019"
    }, {
      "type" : "SUBSCRIPTION",
      "expirationDate" : "...",
      "aboutToExpire" : false,
      "quantity" : 50,
      "statusType" : "INFO",
      "statusDescription" : "50 Subscription licenses start on 06/01/2019 and end on 05/31/2020"
    } ],
    "featureUsage" : [ {
      "id" : "MDM_CONTROLS",
      "consumed" : 10
    }, {
      "id" : "...",
      "consumed" : 12345
    } ]
  }, {
    "id" : "...",
    "name" : "...",
    "totalServerLicenses" : 12345,
    "availableServerLicenses" : 12345,
    "usedServerLicenses" : 12345,
    "usedSimLicenses" : 12345,
    "totalLicensesInUse" : 12345,
    "trial" : true,
    "trialDaysRemaining" : 12345,
    "licenseInfo" : [ {
      "type" : "SUBSCRIPTION",
      "expirationDate" : "...",
      "aboutToExpire" : false,
      "quantity" : 50,
      "statusType" : "INFO",
      "statusDescription" : "50 Subscription licenses start on 06/01/2019 and end on 05/31/2020"
    }, {
      "type" : "SUBSCRIPTION",
      "expirationDate" : "...",
      "aboutToExpire" : false,
      "quantity" : 50,
      "statusType" : "INFO",
      "statusDescription" : "50 Subscription licenses start on 06/01/2019 and end on 05/31/2020"
    } ],
    "featureUsage" : [ {
      "id" : "...",
      "consumed" : 12345
    }, {
      "id" : "...",
      "consumed" : 12345
    } ]
  } ]
}