action atlassian_get_preference { label: "Get preference" description: "Returns the value of a preference of the current user.\n\nNote that these keys are deprecated:\n\n * *jira.user.locale* The locale of the user. By default this is not set and the user takes the locale of the instance.\n * *jira.user.timezone* The time zone of the user. By default this is not set and the user takes the timezone of the instance.\n\nUse [ Update a user profile](https://developer.atlassian.com/cloud/admin/user-management/rest/#api-users-account-id-manage-profile-patch) from the user management REST API to manage timezone and locale instead.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/mypreferences" encoding: json input: { type: "object" properties: { key: { type: "string" } } required: ["key"] additionalProperties: false } output: { type: "string" } }