action jira_get_approximate_application_license_count { label: "Get approximate application license count" description: "Returns the total approximate number of user accounts for a single Jira license. 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/product/{applicationKey}" encoding: json input: { type: "object" properties: { applicationKey: { type: "string" enum: ["jira-core", "jira-product-discovery", "jira-software", "jira-servicedesk"] } } required: ["applicationKey"] additionalProperties: false } 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 } }