action confluence_get_application_property { label: "Get application property" description: "Returns all application properties or an application property.\n\nIf you specify a value for the `key` parameter, then an application property is returned as an object (not in an array). Otherwise, an array of all editable application properties is returned. See [Set application property](#api-rest-api-3-application-properties-id-put) for descriptions of editable properties.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: confluence method: GET path: "/rest/api/3/application-properties" encoding: json input: { type: "object" properties: { key: { type: "string" } keyFilter: { type: "string" } permissionLevel: { type: "string" } } additionalProperties: false } 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 } } }