action atlassian_get_locale { label: "Get locale" description: "Returns the locale for the user.\n\nIf the user has no language preference set (which is the default setting) or this resource is accessed anonymous, the browser locale detected by Jira is returned. Jira detects the browser locale using the *Accept-Language* header in the request. However, if this doesn't match a locale available Jira, the site default locale is returned.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: atlassian method: GET path: "/rest/api/3/mypreferences/locale" encoding: json output: { type: "object" description: "Details of a locale." properties: { locale: { type: "string" description: "The locale code. The Java the locale format is used: a two character language code (ISO 639), an underscore, and two letter country code (ISO 3166). For example, en\\_US represents a locale of English (United States). Required on create." } } additionalProperties: false } }