action atlassian_get_issue_property { label: "Get issue property" description: "Returns the key and value of an issue's property.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the issue.\n * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue." provider: atlassian method: GET path: "/rest/api/3/issue/{issueIdOrKey}/properties/{propertyKey}" encoding: json input: { type: "object" properties: { issueIdOrKey: { type: "string" } propertyKey: { type: "string" } } required: ["issueIdOrKey", "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 } }