action atlassian_get_approximate_application_license_count { label: "Get approximate application license count" description: "Returns the total approximate user account for a specific `jira licence application key`. Please note this information is cached with a 7-day lifecycle and could be stale at the time of call.\n\n#### Application Key ####\n\nAn application key represents a specific version of Jira. See \\{@link ApplicationKey\\} for details\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/license/approximateLicenseCount/product/{applicationKey}" encoding: json input: { type: "object" properties: { applicationKey: { type: "string" } } required: ["applicationKey"] additionalProperties: false } output: { type: "object" description: "A license metric" properties: { key: { type: "string" description: "The key of the license metric." } value: { type: "string" description: "The value for the license metric." } } additionalProperties: false } }