Actions20
Overview
This node interacts with the Odoo API to perform operations on the 'Note' resource, specifically the 'Get' operation. It retrieves a single note by its ID, optionally including specific fields as requested. This node is useful for workflows that need to fetch detailed information about notes stored in an Odoo system, such as retrieving memo content or other note attributes for further processing or display.
Use Case Examples
- Retrieve a note by its ID to display its memo content in a dashboard.
- Fetch specific fields of a note to integrate note details into a CRM or project management workflow.
Properties
| Name | Meaning |
|---|---|
| Note ID | The unique identifier of the note to retrieve, required for the 'Get' operation on the Note resource. |
| Options | Additional options for the 'Get' operation, including 'Fields To Include' which allows specifying which fields of the note to retrieve. |
Output
JSON
id- The unique identifier of the retrieved note.memo- The memo or content of the note.otherFields- Any other fields included in the note based on the selected fields in options.
Dependencies
- Requires an Odoo API key credential with URL, username, password, and database name to authenticate and interact with the Odoo system.
Troubleshooting
- Ensure the Note ID provided is valid and exists in the Odoo system to avoid 'not found' errors.
- Verify that the Odoo API credentials are correct and have sufficient permissions to access note data.
- If specific fields are requested in 'Fields To Include', confirm those fields exist in the Odoo note model to prevent errors.
Links
- Odoo Official Documentation - Comprehensive resource for understanding Odoo models, API usage, and available fields.