Odoo

Odoo

Certified

Tasks that call the Odoo XML-RPC API for ERP automation.

Provide the Odoo server URL, database, username, and password to authenticate, then run create, read, update, or search operations on models; include model name, fields, and filters to orchestrate ERP data from Kestra flows.

How to use the Odoo plugin

Query and modify records in any Odoo model from Kestra flows via XML-RPC.

Authentication

Set url to your Odoo server URL, db to the database name, username, and password. Store secrets in secrets and apply connection properties globally with plugin defaults.

Tasks

Query executes an operation against an Odoo model — set operation to one of: SEARCH_READ, READ, CREATE, WRITE, UNLINK, SEARCH, or SEARCH_COUNT. Pass domain filters as a list, scope returned columns with fields, supply field values for writes via values, and target specific records with ids. Paginate with limit and offset. Control result handling with fetchType: NONE (default), FETCH, FETCH_ONE, or STORE.