action jira_get_advanced_settings { label: "Get advanced settings" description: "Returns the application properties that are accessible on the *Advanced Settings* page. To navigate to the *Advanced Settings* page in Jira, choose the Jira icon > **Jira settings** > **System**, **General Configuration** and then click **Advanced Settings** (in the upper right).\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: jira method: GET path: "/rest/api/3/application-properties/advanced-settings" encoding: json output: { type: "array" items: { type: "object" description: "Details of an application property." properties: { allowedValues: { type: "array" description: "The allowed values, if applicable." items: { type: "string" } } defaultValue: { type: "string" description: "The default value of the application property." } desc: { type: "string" description: "The description of the application property." } example: { type: "string" } id: { type: "string" description: "The ID of the application property. The ID and key are the same." } key: { type: "string" description: "The key of the application property. The ID and key are the same." } name: { type: "string" description: "The name of the application property." } type: { type: "string" description: "The data type of the application property." } value: { type: "string" description: "The new value." } } additionalProperties: false } } }