action confluence_get_available_time_tracking_implementations { label: "Get all time tracking providers" description: "Returns all time tracking providers. By default, Jira only has one time tracking provider: *JIRA provided time tracking*. However, you can install other time tracking providers via apps from the Atlassian Marketplace. For more information on time tracking providers, see the documentation for the [ Time Tracking Provider](https://developer.atlassian.com/cloud/jira/platform/modules/time-tracking-provider/) module.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: confluence method: GET path: "/rest/api/3/configuration/timetracking/list" encoding: json output: { type: "array" items: { type: "object" description: "Details about the time tracking provider." required: ["key"] properties: { key: { type: "string" description: "The key for the time tracking provider. For example, *JIRA*." } name: { type: "string" description: "The name of the time tracking provider. For example, *JIRA provided time tracking*." } url: { type: "string" description: "The URL of the configuration page for the time tracking provider app. For example, */example/config/url*. This property is only returned if the `adminPageKey` property is set in the module descriptor of the time tracking provider app." } } additionalProperties: false } } }