Odoo 19.0 Community · Persistent

im_livechat.channel.member.history: fields, relations and API

The im_livechat.channel.member.history model ("Keep the channel member history") is a persistent model declared by the Live Chat module. It exposes 32 fields, 26 of them declared directly on the model; 5 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.member.history
Label
Keep the channel member history
Type
Persistent (models.Model)
SQL table
im_livechat_channel_member_history
Origin module
Live Chat (im_livechat)

Model fields

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

32 of 32 fields shown

Technical nameLabelTypeDetails
agent_expertise_idsAgent Expertisemany2many
computed, stored
avatar_128Avatar 128binary
computed
call_count# of Sessions with Callsfloat

related: has_call

call_duration_hourCall Durationfloat
computed, stored
call_history_idsCall Historymany2many
call_percentageSession with Calls (%)float

related: has_call

channel_idChannelmany2one
computed, stored
chatbot_script_idChatbot Scriptmany2one
computed, stored
conversation_tag_idsConversation Tagmany2many

related: channel_id.livechat_conversation_tag_ids

guest_idGuestmany2one
computed, stored
has_callHas Callfloat
computed, stored
help_statusHelp Statusselection
computed, stored

Values: requested (Help Requested), provided (Help Provided)

livechat_member_typeLivechat Member Typeselection
computed, stored

Values: agent (Agent), visitor (Visitor), bot (Chatbot)

member_idMembermany2one
message_count# of Messages per Sessioninteger
partner_idPartnermany2one
computed, stored
ratingRatingfloat

related: rating_id.rating

rating_idRatingmany2one
computed, stored
rating_textRating textselection

related: rating_id.rating_text

response_time_hourResponse Timefloat
session_country_idSession Countrymany2one

related: channel_id.country_id

session_duration_hourSession Duration

Time spent by the persona in the session in hours

float
computed, stored
session_livechat_channel_idLive chat channelmany2one

related: channel_id.livechat_channel_id

session_outcomeSession Outcomeselection

related: channel_id.livechat_outcome

session_start_hourSession Start Hourfloat

related: channel_id.livechat_start_hour

session_week_daySession Week Dayselection

related: channel_id.livechat_week_day

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