Odoo API Documentation
This is the complete API documentation for connecting to the Odoo API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet Odoo: Odoo JSON-2 API integration for reading and mutating ERP records across core business models. Keep reading to get started.
Quickstart
Before you run your first Odoo request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one Odoo connection — create or choose one in Connections. Note its
connectionId.
Every Odoo action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/odoo/latest/actions/{actionSlug}You need a MindCloud API Key and a Odoo connection. Then call an action such as Get Contacts By IDs:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/odoo/latest/actions/get-contacts-by-ids" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authentication
Authentication has two layers. Your MindCloud API Key authenticates the request to MindCloud, sent as a Bearer token in the Authorization header. The connectionId selects the connected Odoo account that should run the action. MindCloud stores and refreshes the Odoo credentials behind that connection, so you never send provider tokens with your requests.
Pass connectionId in the query string for GET and DELETE actions, and in the JSON body for POST, PUT, and PATCH actions. Keep your MindCloud API Key on your server; do not ship it in browser code, mobile apps, public repositories, or logs.
Odoo actions
All 76 published actions for this Odoo version. Each page documents the endpoint, arguments, and response controls.
- POSTCreate Contacts
- POSTCreate Departments
- POSTCreate Job Positions
- DELETEDelete Contacts
- DELETEDelete Departments
- DELETEDelete Job Positions
- GETGet Contacts By IDs
- GETGet Departments By IDs
- GETGet Job Positions By IDs
- GETList Access Controls
- GETList Access Rules
- GETList Action Windows
- GETList Activities
- GETList Activity Types
- GETList Attachments
- GETList Bank Accounts
- GETList Blacklisted Emails
- GETList Blacklisted Phone Numbers
- GETList Channel Members
- GETList Companies
- GETList Contact Tags
- GETList Contacts
- GETList Contract Types
- GETList Countries
- GETList Country Groups
- GETList Country States
- GETList Currencies
- GETList Currency Rates
- GETList Departments
- GETList Departure Reasons
- GETList Discussion Categories
- GETList Discussion Channels
- GETList Email Aliases
- GETList Email Domains
- GETList Email Templates
- GETList Employee Categories
- GETList Employee Locations
- GETList Employee Skills
- GETList Employees
- GETList Field Selections
- GETList Groups
- GETList Industries
- GETList Job Positions
- GETList Languages
- GETList Logs
- GETList Mail Servers
- GETList Menus
- GETList Message Notifications
- GETList Message Subtypes
- GETList Messages
- GETList Model Constraints
- GETList Model Data
- GETList Model Fields
- GETList Models
- GETList Module Categories
- GETList Modules
- GETList Planning Roles
- GETList Planning Shifts
- GETList Resource Calendars
- GETList Resume Line Types
- GETList Resume Lines
- GETList Scheduled Actions
- GETList Sequences
- GETList Server Actions
- GETList Shift Templates
- GETList Skill Levels
- GETList Skill Types
- GETList Skills
- GETList System Parameters
- GETList Users
- GETList Views
- GETList Work Details
- GETList Work Locations
- PUTUpdate Contacts
- PUTUpdate Departments
- PUTUpdate Job Positions
Related apps
More Commerce apps on the Universal API, behind the same REST shape. Or browse all apps.