action jira_addon_properties_resource_get_addon_properties_get { label: "Get app properties" description: "Gets all the properties of an app. The reserved key `connect_client_key_019cdff3-8bfb-71fe-9628-875b700aebb8` is not returned.\n\n**[Permissions](#permissions) required:** Only a Connect app whose key matches `addonKey` can make this request.\nAdditionally, Forge apps can access Connect app properties (stored against the same `app.connect.key`)." provider: jira method: GET path: "/rest/atlassian-connect/1/addons/{addonKey}/properties" encoding: json input: { type: "object" properties: { addonKey: { type: "string" } } required: ["addonKey"] additionalProperties: false } output: { type: "object" description: "List of property keys." properties: { keys: { type: "array" description: "Property key details." items: { type: "object" description: "Property key details." properties: { key: { type: "string" description: "The key of the property." } self: { type: "string" description: "The URL of the property." } } additionalProperties: false } } } additionalProperties: false } }