action atlassian_addon_properties_resource_get_addon_property_get { label: "Get app property" description: "Returns the key and value of an app's property.\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/{propertyKey}" encoding: json input: { type: "object" properties: { addonKey: { type: "string" } propertyKey: { type: "string" } } required: ["addonKey", "propertyKey"] additionalProperties: false } output: { type: "object" description: "An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/)." properties: { key: { type: "string" description: "The key of the property. Required on create and update." } value: { description: "The value of the property. Required on create and update." type: "object" } } additionalProperties: false } }