action atlassian_get_dashboard_item_property_keys { label: "Get dashboard item property keys" description: "Returns the keys of all properties for a dashboard item.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** The user must be the owner of the dashboard or have the dashboard shared with them. Note, users with the *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) are considered owners of the System dashboard. The System dashboard is considered to be shared with all other users, and is accessible to anonymous users when Jira’s anonymous access is permitted." provider: atlassian method: GET path: "/rest/api/3/dashboard/{dashboardId}/items/{itemId}/properties" encoding: json input: { type: "object" properties: { dashboardId: { type: "string" } itemId: { type: "string" } } required: ["dashboardId", "itemId"] 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 } }