action jira_addon_properties_resource_get_addon_property_get { label: "Get app property" description: "Returns the key and value of an app's property. The property key `connect_client_key_019cdff3-8bfb-71fe-9628-875b700aebb8`\nis reserved. It returns a synthetic, read-only property containing the Connect `clientKey` for the requested tenant.\nThis is intended for Forge apps with `app.connect.key` to retrieve the Connect client key during migration.\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/{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 } }