Odoo 19.0 Community · Persistent

im_livechat.channel: fields, relations and API

The im_livechat.channel model ("Livechat Channel") is a persistent model declared by the Live Chat module, then extended by 1 other module. It exposes 33 fields, 22 of them declared directly on the model; 7 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
im_livechat.channel
Label
Livechat Channel
Type
Persistent (models.Model)
SQL table
im_livechat_channel
Origin module
Live Chat (im_livechat)
Extended by
website_livechat
Inherits from (mixins)
rating.parent.mixin

Model fields

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

33 of 33 fields shown

Technical nameLabelTypeDetails
are_you_insideAre you inside the matrix?boolean
read-onlycomputed
available_operator_idsAvailable Operatormany2many
computed
block_assignment_during_callNo Chats During Call

While on a call, agents will not receive new conversations.

boolean
button_background_colorButton Background Color

Default background color of the Livechat button

char
button_textText of the Buttonchar
translatable
button_text_colorButton Text Color

Default text color of the Livechat button

char
channel_idsSessionsone2many

inverse: livechat_channel_id

chatbot_script_countNumber of Chatbotinteger
computed
default_messageWelcome Message

This is an automated 'welcome' message that your visitor will see when they initiate a new conversation.

char
translatable
header_background_colorHeader Background Color

Default background color of the channel header once open

char
max_sessionsMaximum Sessions

Maximum number of concurrent sessions per operator.

integer
max_sessions_modeSessions per Operator

If limited, operators will only handle the selected number of sessions at a time.

selection

Values: unlimited (Unlimited), limited (Limited)

nameChannel Namechar
required
nbr_channelNumber of conversationinteger
read-onlycomputed
ongoing_session_countNumber of Ongoing Sessionsinteger
computed
remaining_session_capacityRemaining Session Capacityinteger
computed
rule_idsRulesone2many

inverse: channel_id

script_externalScript (external)html
read-onlycomputed
title_colorTitle Color

Default title color of the channel once open

char
user_idsAgentsmany2many
web_pageWeb Page

URL to a static page where you client can discuss with the operator of the channel.

char
read-onlycomputed
rating_avgAverage Ratingfloat
computed

inherited from rating.parent.mixin

rating_avg_percentageAverage Rating (%)float
computed

inherited from rating.parent.mixin

rating_count# Ratingsinteger
computed

inherited from rating.parent.mixin

rating_idsRatingsone2many

inverse: parent_res_id

inherited from rating.parent.mixin

rating_percentage_satisfactionRating Satisfaction

Percentage of happy ratings

integer
computed

inherited from rating.parent.mixin

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/im_livechat.channel/search_read" \
  -H "Authorization: bearer $ODOO_API_KEY" \
  -H "X-Odoo-Database: your-db" \
  -H "Content-Type: application/json" \
  -d '{"domain":[],"fields":["name","block_assignment_during_call","button_background_color","button_text","button_text_color"],"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}/im_livechat.channel/search_read",
    headers=headers,
    json={"domain": [], "fields": ["name","block_assignment_during_call","button_background_color","button_text","button_text_color"], "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/im_livechat-channel">im_livechat.channel (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.