Odoo 19.0 Community · Persistent

im_livechat.report.channel: fields, relations and API

The im_livechat.report.channel model ("Livechat Support Channel Report") is a persistent model declared by the Live Chat module, then extended by 1 other module. It exposes 40 fields, 34 of them declared directly on the model. 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.report.channel
Label
Livechat Support Channel Report
Type
Persistent (models.Model)
SQL table
None (no table)
Origin module
Live Chat (im_livechat)
Extended by
crm_livechat
Default order (_order)
start_date, livechat_channel_id, channel_id

Model fields

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

40 of 40 fields shown

Technical nameLabelTypeDetails
agent_providing_help_historyAgent Providing Help Historymany2one
read-only

related: channel_id.livechat_agent_providing_help_history

agent_requesting_help_historyAgent Requesting Help Historymany2one
read-only

related: channel_id.livechat_agent_requesting_help_history

call_duration_hourCall Durationfloat
read-only
channel_idConversationmany2one
read-only
channel_nameChannel Namechar
read-only
chatbot_answers_pathChatbot Answerschar
read-only
chatbot_answers_path_strChatbot Answers (String)char
read-only
chatbot_script_idChatbotmany2one
read-only
conversation_tag_idsTags used in this conversationmany2many
read-only

related: channel_id.livechat_conversation_tag_ids

country_idCountry of the visitormany2one
read-only
day_numberDay of the Weekselection
read-only

Values: 0 (Sunday), 1 (Monday), 2 (Tuesday), 3 (Wednesday), 4 (Thursday), 5 (Friday), 6 (Saturday)

durationDuration (min)

Duration of the conversation (in minutes)

float
read-only
handled_by_agentHandled by Agentinteger
read-only
handled_by_botHandled by Botinteger
read-only
has_callWhether the session had a callfloat
read-only
lang_idLanguagemany2one
read-only

related: channel_id.livechat_lang_id

leads_createdLeads createdinteger
read-only

added by CRM Livechat (crm_livechat)

livechat_channel_idChannelmany2one
read-only
nbr_messageMessages per Session

Number of message in the conversation

integer
read-only
number_of_calls# of Sessions with callsfloat
read-only

related: has_call

partner_idAgentmany2one
read-only
percentage_of_callsSession with Calls (%)float
read-only

related: has_call

ratingRatinginteger
read-only
rating_textSatisfaction Ratechar
read-only
session_expertise_idsExpertises used in this sessionmany2many
read-only

related: channel_id.livechat_expertise_ids

session_expertisesExpertises used in this session (String)char
read-only
session_outcomeSession Outcomeselection
read-only

Values: no_answer (Never Answered), no_agent (No one Available), no_failure (Success), escalated (Escalated)

start_dateStart Date of sessiondatetime
read-only
start_date_hourHour of start Date of sessionchar
read-only
start_date_minutesStart Date of session, truncated to minuteschar
read-only
start_hourStart Hour of sessionchar
read-only
time_to_answerResponse Time

Average time in hours to give the first answer to the visitor

float
read-only
uuidUUIDchar
read-only
visitor_partner_idCustomermany2one
read-only
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

No Many2one or Many2many field of another model points to this model.

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.report.channel/search_read" \
  -H "Authorization: bearer $ODOO_API_KEY" \
  -H "X-Odoo-Database: your-db" \
  -H "Content-Type: application/json" \
  -d '{"domain":[],"fields":["agent_providing_help_history","agent_requesting_help_history","channel_id","chatbot_script_id","country_id"],"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.report.channel/search_read",
    headers=headers,
    json={"domain": [], "fields": ["agent_providing_help_history","agent_requesting_help_history","channel_id","chatbot_script_id","country_id"], "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-report-channel">im_livechat.report.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.