Odoo 19.0 Community · Persistent

res.users.settings: fields, relations and API

The res.users.settings model ("User Settings") is a persistent model declared by the Base module, then extended by 8 other modules. It exposes 28 fields, 22 of them declared directly on the model; 3 fields from other models point to it. Below you will find every field with its technical name, type, label and relations, followed by an Odoo 19 JSON-2 API call.

Model identity

Technical name
res.users.settings
Label
User Settings
Type
Persistent (models.Model)
SQL table
res_users_settings
Origin module
Base (base)
Extended by
web, bus, mail, calendar, im_livechat, google_calendar, project, microsoft_calendar
Display field (_rec_name)
user_id
Inherits from (mixins)
bus.listener.mixin

Model fields

22 own fields, 0 inherited from mixins and 6 automatic ORM fields. Click a name to get a direct link to that field.

28 of 28 fields shown

Technical nameLabelTypeDetails
calendar_default_privacyCalendar Default Privacy

Default privacy setting for whom the calendar events will be visible.

selection
required

Values: public (Public), private (Private), confidential (Only internal users)

added by Calendar (calendar)

channel_notificationsChannel Notifications

This setting will only be applied to channels. Mentions only if not specified.

selection

Values: all (All Messages), no_notif (Nothing)

added by Discuss (mail)

embedded_actions_config_idsEmbedded Actions Configone2many

inverse: user_setting_id

added by Web (web)

google_calendar_cal_idCalendar ID

Last Calendar ID who has been synchronized. If it is changed, we remove all links between GoogleID and Odoo Google Internal ID

char

added by Google Calendar (google_calendar)

google_calendar_rtokenRefresh Tokenchar

added by Google Calendar (google_calendar)

google_calendar_sync_tokenNext Sync Tokenchar

added by Google Calendar (google_calendar)

google_calendar_tokenUser tokenchar

added by Google Calendar (google_calendar)

google_calendar_token_validityToken Validitydatetime

added by Google Calendar (google_calendar)

google_synchronization_stoppedGoogle Synchronization stoppedboolean

added by Google Calendar (google_calendar)

is_discuss_sidebar_category_channel_openIs discuss sidebar category channel open?boolean

added by Discuss (mail)

is_discuss_sidebar_category_chat_openIs discuss sidebar category chat open?boolean

added by Discuss (mail)

livechat_expertise_idsLive Chat Expertise

When forwarding live chat conversations, the chatbot will prioritize users with matching expertise.

many2many

added by Live Chat (im_livechat)

livechat_lang_idsLivechat languages

These languages, in addition to your main language, will be used to assign you to Live Chat sessions.

many2many

added by Live Chat (im_livechat)

livechat_usernameLivechat Username

This username will be used as your name in the livechat channels.

char

added by Live Chat (im_livechat)

microsoft_calendar_sync_tokenMicrosoft Next Sync Tokenchar

added by Outlook Calendar (microsoft_calendar)

microsoft_last_sync_dateLast Sync Date

Last synchronization date with Outlook Calendar

datetime

added by Outlook Calendar (microsoft_calendar)

microsoft_synchronization_stoppedOutlook Synchronization stoppedboolean

added by Outlook Calendar (microsoft_calendar)

push_to_talk_keyPush-To-Talk shortcut

String formatted to represent a key with modifiers following this pattern: shift.ctrl.alt.key, e.g: truthy.1.true.b

char

added by Discuss (mail)

use_push_to_talkUse the push to talk featureboolean

added by Discuss (mail)

user_idUsermany2one
required
voice_active_durationDuration of voice activity in ms

How long the audio broadcast will remain active after passing the volume threshold

integer

added by Discuss (mail)

volume_settings_idsVolumes of other partnersone2many

inverse: user_setting_id

added by Discuss (mail)

create_dateCreated ondatetime
read-onlyautomatic
create_uidCreated bymany2one
read-onlyautomatic
display_nameDisplay Namechar
read-onlycomputedautomatic
idIDinteger
read-onlyautomatic
write_dateLast Updated ondatetime
read-onlyautomatic
write_uidLast Updated bymany2one
read-onlyautomatic

Relations

Models linked from this model

Fields of other models pointing here

Reading this model through the API

Odoo 19 JSON-2 API call reading the first five records with real fields of the model. Replace the instance, database and API key with your own.

curl
curl -X POST "https://your-instance.odoo.com/json/2/res.users.settings/search_read" \
  -H "Authorization: bearer $ODOO_API_KEY" \
  -H "X-Odoo-Database: your-db" \
  -H "Content-Type: application/json" \
  -d '{"domain":[],"fields":["user_id","calendar_default_privacy","channel_notifications","google_calendar_cal_id","google_calendar_rtoken"],"limit":5}'
Python (requests)
import requests

BASE_URL = "https://your-instance.odoo.com/json/2"
headers = {"Authorization": f"bearer {API_KEY}", "X-Odoo-Database": "your-db"}

res = requests.post(
    f"{BASE_URL}/res.users.settings/search_read",
    headers=headers,
    json={"domain": [], "fields": ["user_id","calendar_default_privacy","channel_notifications","google_calendar_cal_id","google_calendar_rtoken"], "limit": 5},
)
res.raise_for_status()
print(res.json())
  • External API access requires Odoo's Custom plan.
  • XML-RPC and JSON-RPC will be removed in Odoo 22 (fall 2028): use JSON-2.
  • The access rights and record rules of the key's user apply.

Cite this tool

Writing a tutorial, internal documentation or a forum answer? Copy this link to send your readers to the up-to-date reference.

<a href="https://aidoo.ai/en/outils/explorateur-modeles-odoo/res-users-settings">res.users.settings (Odoo 19.0)</a>

Sources

Data verified on September 23, 2026 · Odoo 19.0 Community

Have an Odoo project, or want to put your ERP to work with AI? Let's talk

Implementation, custom module development, connecting Claude or ChatGPT to your data: tell us about your context and we will reply within 24 business hours.