action atlassian_get_issue_type_property_keys { label: "Get issue type property keys" description: "Returns all the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties) keys of the issue type.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any issue type.\n * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any issue types associated with the projects the user has permission to browse." provider: atlassian method: GET path: "/rest/api/3/issuetype/{issueTypeId}/properties" encoding: json input: { type: "object" properties: { issueTypeId: { type: "string" } } required: ["issueTypeId"] 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 } }