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 name | Label | Type | Details |
|---|---|---|---|
| available_fields | Available Fields | char | computed |
| company_id | Company | many2one | |
| currency_id | Currency | many2one | related: |
| is_subscribed | Is user subscribed | boolean | computed |
| kpi_account_total_revenue | Revenue | boolean | added by Invoicing ( |
| kpi_account_total_revenue_value | Kpi Account Total Revenue Value | monetary | computed added by Invoicing ( |
| kpi_all_sale_total | All Sales | boolean | added by Sales ( |
| kpi_all_sale_total_value | Kpi All Sale Total Value | monetary | computed added by Sales ( |
| kpi_crm_lead_created | New Leads | boolean | added by CRM ( |
| kpi_crm_lead_created_value | Kpi Crm Lead Created Value | integer | computed added by CRM ( |
| kpi_crm_opportunities_won | Opportunities Won | boolean | added by CRM ( |
| kpi_crm_opportunities_won_value | Kpi Crm Opportunities Won Value | integer | computed added by CRM ( |
| kpi_hr_recruitment_new_colleagues | New Employees | boolean | added by Recruitment ( |
| kpi_hr_recruitment_new_colleagues_value | Kpi Hr Recruitment New Colleagues Value | integer | computed added by Recruitment ( |
| kpi_livechat_conversations | Conversations handled | boolean | added by Live Chat ( |
| kpi_livechat_conversations_value | Kpi Livechat Conversations Value | integer | computed added by Live Chat ( |
| kpi_livechat_rating | % of Happiness | boolean | added by Live Chat ( |
| kpi_livechat_rating_value | Kpi Livechat Rating Value | float | computed added by Live Chat ( |
| kpi_livechat_response | Time to answer (sec) | boolean | added by Live Chat ( |
| kpi_livechat_response_value | Kpi Livechat Response Value | float | computed added by Live Chat ( |
| kpi_mail_message_total | Messages Sent | boolean | |
| kpi_mail_message_total_value | Kpi Mail Message Total Value | integer | computed |
| kpi_pos_total | POS Sales | boolean | added by Point of Sale ( |
| kpi_pos_total_value | Kpi Pos Total Value | monetary | computed added by Point of Sale ( |
| kpi_project_task_opened | Open Tasks | boolean | added by Project ( |
| kpi_project_task_opened_value | Kpi Project Task Opened Value | integer | computed added by Project ( |
| kpi_res_users_connected | Connected Users | boolean | |
| kpi_res_users_connected_value | Kpi Res Users Connected Value | integer | computed |
| kpi_website_sale_total | eCommerce Sales | boolean | added by eCommerce ( |
| kpi_website_sale_total_value | Kpi Website Sale Total Value | monetary | computed added by eCommerce ( |
| name | Name | char | requiredtranslatable |
| next_run_date | Next Mailing Date | date | |
| periodicity | Periodicity | selection | required Values: |
| state | Status | selection | read-only Values: |
| user_ids | Recipients | many2many | |
| create_date | Created on | datetime | read-onlyautomatic |
| create_uid | Created by | many2one | read-onlyautomatic |
| display_name | Display Name | char | read-onlycomputedautomatic |
| id | ID | integer | read-onlyautomatic |
| write_date | Last Updated on | datetime | read-onlyautomatic |
| write_uid | Last Updated by | many2one | read-onlyautomatic |
Relations
Models linked from this model
- res.company: company_id
- res.currency: currency_id
- res.users: user_ids
Fields of other models pointing here
- res.config.settings: digest_id
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 -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}'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.