Skip to main content

Odoo Connector

Odoo Odoo is a suite of open source business apps that include CRM, eCommerce, accounting, inventory, project management, etc. This component allows querying and managing records in an Odoo database.

Connections

API Key

Authenticate requests to Odoo using an API key.

To authenticate with Odoo, an API key is required. This component calls Odoo's JSON-2 HTTP API and requires Odoo 19.0 or later. Earlier versions, which only support the soon to be deprecated XML-RPC transport, are not supported.

Prerequisites

  • An Odoo 19.0 or later instance (Odoo Online, Odoo.sh, or self-hosted)
  • An Odoo user account with permissions for the records the integration will manage
  • Developer mode enabled in Odoo (required to access the API Keys interface)

Setup Steps

  1. Log in to the Odoo instance
  2. Click the user avatar in the top-right corner and select My Profile
  3. Open the Account Security tab
  4. Click New API Key and provide a descriptive name and expiration
  5. Copy the generated API key immediately (it is shown only once)

For more details, refer to the Odoo external API documentation.

Service Account Recommended

Generate the API key from a dedicated service-account user (not a specific employee's account) so the integration is not tied to an individual's access.

Configure the Connection

Create a connection of type API Key and configure the following fields:

  • Odoo Base URL: Enter the URL used to log in to Odoo, for example https://example-company.odoo.com. Omit any trailing slash.
  • Server Port: Leave blank for default HTTP (80) or HTTPS (443). Set only when a self-hosted Odoo instance listens on a non-standard port.
  • Odoo Database Name: Click the user avatar in the top-right within Odoo and select My Databases to find the database name.
  • API Key: Enter the API key copied in the previous section.
InputCommentsDefault
Odoo Base URLThe URL used to log in to the Odoo instance.
Server PortThe port to connect on. Leave blank to use the default HTTP (80) or HTTPS (443) port.
Odoo Database NameThe name of the Odoo database to connect to. Found in Odoo by clicking the user icon at the top-right and selecting 'My Databases'.
API KeyThe API key used to authenticate requests. In Odoo, open the profile menu, then Account Security, and create a new API Key. Requires Odoo 19.0 or later.

Basic Authentication (Deprecated)

Authenticate using a username and password against Odoo's XML-RPC API. Maintained for backwards compatibility with existing integrations. Odoo will drop XML-RPC support in 19.1 (mid-2026); use the API Key connection for new integrations.

The Basic Authentication (Deprecated) connection authenticates against Odoo's XML-RPC API with a username and password. It is maintained for backwards compatibility with integrations built against earlier versions of this component.

Deprecated

Odoo will drop XML-RPC support in 19.1 (mid-2026). Migrate existing integrations to the API Key connection before that release. New integrations should use the API Key connection instead.

Prerequisites

  • An Odoo instance that still exposes the XML-RPC endpoint
  • An Odoo user account with permissions for the records the integration will manage

Configure the Connection

Create a connection of type Basic Authentication (Deprecated) and configure the following fields:

  • Odoo Base URL: Enter the URL used to log in to Odoo, for example https://example-company.odoo.com. Omit any trailing slash.
  • Server Port: Leave blank for default HTTP (80) or HTTPS (443). Set only when a self-hosted Odoo instance listens on a non-standard port.
  • Odoo Database Name: Click the user avatar in the top-right within Odoo and select My Databases to find the database name.
  • Username: The username (typically the email address) used to log in to Odoo.
  • Password or API Key: The user's password, or an API key generated under Account Security → New API Key.
InputCommentsDefault
Odoo Base URLThe URL used to log in to the Odoo instance.
Server PortThe port to connect on. Leave blank to use the default HTTP (80) or HTTPS (443) port.
Odoo Database NameThe name of the Odoo database to connect to. Found in Odoo by clicking the user icon at the top-right and selecting 'My Databases'.
UsernameThe username used to log in to the Odoo instance.
Password or API KeyThe password or API key used to authenticate the user against the Odoo XML-RPC API.

Triggers

New and Updated Records

Polls an Odoo model for records whose write_date is at or after the last poll. Records whose create_date is also after the last poll go to the created bucket; older records modified since the last poll go to updated.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Show New RecordsWhen enabled, records whose create_date falls after the last poll will be emitted on the created branch.true
Show Updated RecordsWhen enabled, records whose write_date falls after the last poll but were created earlier will be emitted on the updated branch.true

Actions

Create Record

Create a new record of a given type.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
ParametersThe field names and values to set on the record. Must be a JSON object keyed by Odoo field name.
External IDA unique identifier that maps this record to its counterpart in an external system. Use the 'module.name' format.

Delete Record By ID

Delete a record by its numerical ID.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Record IDThe numeric identifier of the target record assigned by Odoo.

Get Record by External ID

Get a record by its external ID.

InputCommentsDefault
ConnectionThe Odoo connection to use.
External IDA unique identifier that maps this record to its counterpart in an external system. Use the 'module.name' format.

Get Record By ID

Fetch a record by its numerical ID.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Record IDThe numeric identifier of the target record assigned by Odoo.

List Model Fields

List all fields for a given model.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.

List Models

Fetch a list of models installed in the Odoo database.

InputCommentsDefault
ConnectionThe Odoo connection to use.
Fetch AllWhen true, automatically fetches all pages of records. Overrides the Limit and Offset inputs.false
LimitThe maximum number of records to return per page. See Pagination.
OffsetThe number of records to skip before starting the page (0-based). See Pagination.
Name SearchFilter results to entries whose name contains this case-insensitive search term.
Model SearchFilter results to entries whose technical model identifier contains this case-insensitive search term.

List Records

Fetch a list of records of a given type.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Fetch AllWhen true, automatically fetches all pages of records. Overrides the Limit and Offset inputs.false
LimitThe maximum number of records to return per page. See Pagination.
OffsetThe number of records to skip before starting the page (0-based). See Pagination.

Raw Request (API Key)

Send a raw HTTP request to the Odoo JSON-2 API. Requires the API Key connection.

InputCommentsDefault
ConnectionThe Odoo connection to use.
URLThe path portion of the URL to call. The connection's base URL (for example, https://yourdomain.odoo.com) is prepended automatically. For example, to call https://yourdomain.odoo.com/json/2/res.partner/search_read, enter only /json/2/res.partner/search_read.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false

Raw Request (Basic Auth)

Issue any execute_kw action against the Odoo XML-RPC API. Requires the Basic Authentication (Deprecated) connection.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
MethodThe Odoo model method to invoke via execute_kw (for example, search_read, create, write).
ParametersA JSON array of positional arguments to pass to execute_kw. See the Odoo XML-RPC documentation for argument shapes.[["read"]]

Set External ID

Add an external ID to a record that does not have one.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Record IDThe numeric identifier of the target record assigned by Odoo.
External IDA unique identifier that maps this record to its counterpart in an external system. Use the 'module.name' format.

Update Record

Update an existing record of a given type.

InputCommentsDefault
ConnectionThe Odoo connection to use.
ModelThe type of record to query. Use the 'List Models' action for a list of available models.
Record IDThe numeric identifier of the target record assigned by Odoo.
ParametersThe field names and values to set on the record. Must be a JSON object keyed by Odoo field name.