Tameson Odoo icon

Tameson Odoo

Consume Odoo API

Actions20

Overview

This node allows you to create a new Note in Odoo via the Odoo API. It is designed for scenarios where you need to automate the creation of notes (memos) within your Odoo system, such as logging comments, reminders, or other textual information related to business processes. For example, you could use this node in an n8n workflow to automatically add a note when a support ticket is created or updated.

Properties

Name Type Meaning
Memo String The content of the note (memo) to be created. This is a required field.

Output

The output will be a JSON object representing the newly created Note in Odoo. The structure typically includes fields returned by the Odoo API for the Note resource, such as the note's ID and memo content. The exact fields depend on the Odoo configuration but will always include at least the data you provided (the memo).

Example output:

{
  "id": 123,
  "memo": "This is my note"
}

Dependencies

  • Odoo API: Requires access to an Odoo instance with the appropriate permissions to create notes.
  • Credentials: You must configure Odoo API credentials (odooApi) in n8n, including URL, username, password, and database name.

Troubleshooting

  • Invalid Credentials: If your Odoo credentials are incorrect, you may receive errors like Credentials are not valid or Settings are not valid. Double-check your API URL, username, password, and database name.
  • Missing Required Field: If the "Memo" property is empty or missing, the node will fail since it is required.
  • API Connection Issues: Network problems or incorrect Odoo URLs can result in connection errors. Ensure your Odoo instance is reachable from the n8n server.

Links and References

Discussion