Actions20
Overview
This node integrates with the Odoo API to update a Note resource. It allows users to modify the content of an existing note by specifying the Note ID and the new memo text. This operation is useful in scenarios where notes need to be edited or corrected after creation, such as updating meeting notes, comments, or annotations within the Odoo system.
Use Case Examples
- Updating a note's memo to correct or add information after a meeting.
- Modifying a note attached to a customer record to reflect new details.
Properties
| Name | Meaning |
|---|---|
| Note ID | The unique identifier of the note to update. This is required to specify which note will be modified. |
| Memo | The new text content of the note. This is the updated memo that will replace the existing one in the specified note. |
Output
JSON
id- The unique identifier of the updated note.memo- The updated memo text of the note.otherProperties- Any other properties returned by the Odoo API related to the updated note.
Dependencies
- Requires an Odoo API key credential with URL, username, password, and database name to authenticate and perform API requests.
Troubleshooting
- Common issues include invalid Note ID causing the update to fail, which results in an error message indicating the note was not found.
- Authentication errors due to incorrect or expired Odoo API credentials will prevent the node from connecting to the Odoo server.
- Ensure the memo field is not empty as it is required; otherwise, the update operation may fail or result in incomplete data.
Links
- Odoo API Documentation - Official documentation for Odoo API endpoints and usage.