getApproximateLicenseCount method

Future<LicenseMetric> getApproximateLicenseCount()

Returns the approximate number of user accounts across all Jira licenses. Note that this information is cached with a 7-day lifecycle and could be stale at the time of call.

Permissions required: Administer Jira global permission.

Implementation

Future<LicenseMetric> getApproximateLicenseCount() async {
  return LicenseMetric.fromJson(await _client.send(
    'get',
    'rest/api/3/license/approximateLicenseCount',
  ));
}