action atlassian_get_configuration { label: "Get global settings" description: "Returns the [global settings](https://confluence.atlassian.com/x/qYXKM) in Jira. These settings determine whether optional features (for example, subtasks, time tracking, and others) are enabled. If time tracking is enabled, this operation also returns the time tracking configuration.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/configuration" encoding: json output: { type: "object" description: "Details about the configuration of Jira." properties: { attachmentsEnabled: { type: "boolean" description: "Whether the ability to add attachments to issues is enabled." } issueLinkingEnabled: { type: "boolean" description: "Whether the ability to link issues is enabled." } subTasksEnabled: { type: "boolean" description: "Whether the ability to create subtasks for issues is enabled." } timeTrackingConfiguration: { description: "The configuration of time tracking." type: "object" } timeTrackingEnabled: { type: "boolean" description: "Whether the ability to track time is enabled. This property is deprecated." } unassignedIssuesAllowed: { type: "boolean" description: "Whether the ability to create unassigned issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details." } votingEnabled: { type: "boolean" description: "Whether the ability for users to vote on issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details." } watchingEnabled: { type: "boolean" description: "Whether the ability for users to watch issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details." } } additionalProperties: false } }