action atlassian_addon_properties_resource_get_addon_properties_get { label: "Get app properties" description: "Gets all the properties of an app.\n\n**[Permissions](#permissions) required:** Only a Connect app whose key matches `addonKey` can make this request.\nAdditionally, Forge apps published on the Marketplace can access properties of Connect apps they were [migrated from](https://developer.atlassian.com/platform/forge/build-a-connect-on-forge-app/)." provider: atlassian 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 } }