action jira_get_approximate_license_count { label: "Get approximate license count" description: "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.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: jira method: GET path: "/rest/api/3/license/approximateLicenseCount" encoding: json output: { type: "object" description: "A metric that provides insight into the active licence details" properties: { key: { type: "string" description: "The key of a specific license metric." } value: { type: "string" description: "The calculated value of a licence metric linked to the key. An example licence metric is the approximate number of user accounts." } } additionalProperties: false } }