Odoo 19.0 Community · Persistent

digest.digest: fields, relations and API

The digest.digest model ("Digest") is a persistent model declared by the KPI Digests module, then extended by 8 other modules. It exposes 41 fields, 35 of them declared directly on the model; 1 field from other models points 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
digest.digest
Label
Digest
Type
Persistent (models.Model)
SQL table
digest_digest
Origin module
KPI Digests (digest)
Extended by
account, crm, im_livechat, sale_management, hr_recruitment, project, point_of_sale, website_sale

Model fields

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

41 of 41 fields shown

Technical nameLabelTypeDetails
available_fieldsAvailable Fieldschar
computed
company_idCompanymany2one
currency_idCurrencymany2one

related: company_id.currency_id

is_subscribedIs user subscribedboolean
computed
kpi_account_total_revenueRevenueboolean

added by Invoicing (account)

kpi_account_total_revenue_valueKpi Account Total Revenue Valuemonetary
computed

added by Invoicing (account)

kpi_all_sale_totalAll Salesboolean

added by Sales (sale_management)

kpi_all_sale_total_valueKpi All Sale Total Valuemonetary
computed

added by Sales (sale_management)

kpi_crm_lead_createdNew Leadsboolean

added by CRM (crm)

kpi_crm_lead_created_valueKpi Crm Lead Created Valueinteger
computed

added by CRM (crm)

kpi_crm_opportunities_wonOpportunities Wonboolean

added by CRM (crm)

kpi_crm_opportunities_won_valueKpi Crm Opportunities Won Valueinteger
computed

added by CRM (crm)

kpi_hr_recruitment_new_colleaguesNew Employeesboolean

added by Recruitment (hr_recruitment)

kpi_hr_recruitment_new_colleagues_valueKpi Hr Recruitment New Colleagues Valueinteger
computed

added by Recruitment (hr_recruitment)

kpi_livechat_conversationsConversations handledboolean

added by Live Chat (im_livechat)

kpi_livechat_conversations_valueKpi Livechat Conversations Valueinteger
computed

added by Live Chat (im_livechat)

kpi_livechat_rating% of Happinessboolean

added by Live Chat (im_livechat)

kpi_livechat_rating_valueKpi Livechat Rating Valuefloat
computed

added by Live Chat (im_livechat)

kpi_livechat_responseTime to answer (sec)boolean

added by Live Chat (im_livechat)

kpi_livechat_response_valueKpi Livechat Response Valuefloat
computed

added by Live Chat (im_livechat)

kpi_mail_message_totalMessages Sentboolean
kpi_mail_message_total_valueKpi Mail Message Total Valueinteger
computed
kpi_pos_totalPOS Salesboolean

added by Point of Sale (point_of_sale)

kpi_pos_total_valueKpi Pos Total Valuemonetary
computed

added by Point of Sale (point_of_sale)

kpi_project_task_openedOpen Tasksboolean

added by Project (project)

kpi_project_task_opened_valueKpi Project Task Opened Valueinteger
computed

added by Project (project)

kpi_res_users_connectedConnected Usersboolean
kpi_res_users_connected_valueKpi Res Users Connected Valueinteger
computed
kpi_website_sale_totaleCommerce Salesboolean

added by eCommerce (website_sale)

kpi_website_sale_total_valueKpi Website Sale Total Valuemonetary
computed

added by eCommerce (website_sale)

nameNamechar
requiredtranslatable
next_run_dateNext Mailing Datedate
periodicityPeriodicityselection
required

Values: daily (Daily), weekly (Weekly), monthly (Monthly), quarterly (Quarterly)

stateStatusselection
read-only

Values: activated (Activated), deactivated (Deactivated)

user_idsRecipientsmany2many
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/digest.digest/search_read" \
  -H "Authorization: bearer $ODOO_API_KEY" \
  -H "X-Odoo-Database: your-db" \
  -H "Content-Type: application/json" \
  -d '{"domain":[],"fields":["name","periodicity","state","company_id","currency_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}/digest.digest/search_read",
    headers=headers,
    json={"domain": [], "fields": ["name","periodicity","state","company_id","currency_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/digest-digest">digest.digest (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.