Skip to main content
This endpoint does not count against your monthly usage quota.
curl -X PATCH https://xquik.com/api/v1/account \
  -H "Cookie: session=YOUR_SESSION_COOKIE" \
  -H "Content-Type: application/json" \
  -d '{
    "locale": "tr"
  }' | jq

Headers

Session cookie obtained from dashboard authentication. API key auth is not supported for this endpoint.
Content-Type
string
required
Must be application/json.

Body

locale
string
required
Locale preference for the account. Must be one of en, tr, or es.

Response

success
boolean
Always true on successful update.
{ "success": true }
This endpoint requires session authentication. API key auth (x-api-key header) is not supported. Use Get Account to verify the current locale setting.