Skip to main content

Odoo Adaptor

About Odoo

Odoo is a marketing automation platform that allows businesses to design, send, and manage email campaigns. It also provides tools for audience management, analytics, and integrations with other platforms to support marketing efforts.

Integration Options

Odoo supports two primary integration options with OpenFn:

1. Direct DB Connection: This is what this adaptor supports to directly connect to your Odoo database.

2. Rest API: Odoo offers a REST API that enables external applications to interact with its services, but this is a paid option/may require an additional plugin. This option is ideal for applications requiring scheduled or bulk synchronization with Odoo. Refer to the Odoo REST API documentation for detailed guidelines on endpoints and payload formats.

3. Webhook: Webhook or Data Forwarding to push data from Odoo to external systems (see docs). This option is suited for real-time, event-based data integration.

Authentication

  1. See Odoo docs for the latest on supported authentication methods.
  2. When integrating with Odoo via OpenFn, authentication via User Credentials is supported.
  3. See this adaptor's Configuration docs for more on the required authentication parameters.

See platform docs on managing credentials for how to configure a credential in OpenFn. If working locally or if using a Raw JSON credential type, then your configuration will look something like this:

{
"password": "@some(!)Str0ngp4ss0w0rd",
"username": "test@openfn.org",
"database": "devel",
"baseUrl": "https://dev.newlogic-demo.com"
}
  1. Odoo Developer Portal
  2. API Reference
  3. Webhook Setup Guide

Implementation Examples

Coming soon!