Skip to content
get

Get User Locale

Endpoint

gethttps://<REGION>.cloud.appwrite.io/v1/locale

Description

Required scopes

locale.read

Authentication

Initialize the Appwrite client with setProject() and a server API key (setKey()), or authenticate as a signed-in user (setSession() or setJWT()). For direct REST calls, send X-Appwrite-Project with either X-Appwrite-Key or session/JWT headers.
Status
Content type
200
application/json

Locale

Name
Type
Description
string
string
string
string
string
boolean
string
Python
from appwrite.client import Client
from appwrite.services.locale import Locale
client = Client()
(client
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
)
locale = Locale(client)
result = locale.get()