Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Extra Tools
  3. Odoo REST API – Secure & Scalable Integration Toolkit v 19.0
  4. Sales Conditions FAQ

Odoo REST API – Secure & Scalable Integration Toolkit

by Atliis 360 https://www.atliis.com/
Odoo

$ 249.00

v 19.0 Third Party
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Lines of code 2943
Technical Name atliis_rest_api
LicenseOPL-1
Websitehttps://www.atliis.com/
Versions 18.0 19.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Lines of code 2943
Technical Name atliis_rest_api
LicenseOPL-1
Websitehttps://www.atliis.com/
Versions 18.0 19.0
  • Description
  • License
Atliis
Community Enterprise Odoo.sh

Atliis REST API


Modern REST API Framework for Odoo 19


Build secure integrations between Odoo and mobile apps, external systems, AI platforms, dashboards, and middleware using production-ready REST APIs with Swagger/OpenAPI support.

  • Versioned CRUD API under /api/v1
  • Interactive Swagger documentation at /api/docs
  • Built-in API keys, user profile APIs & request logs
Atliis REST API

  • How to Use?
  • FAQ
  • Support

Why Teams Use Atliis REST API

Faster Integration Delivery

Stable, predictable REST endpoints reduce development complexity for external teams and mobile developers.

Secure Authentication

Supports Odoo sessions and Bearer API keys while respecting Odoo ACL and record rules automatically.

Mobile Friendly

Optimized JSON responses with pagination, filtering, sorting, and relational expansion support.

Swagger/OpenAPI Included

Interactive API documentation available instantly through Swagger UI at /api/docs.

Core Features

Versioned APIs

Future-ready versioning under /api/v1.

Bearer API Keys

Generate secure API keys for external integrations. Send as Authorization: Bearer <api_key>. ACL rules are enforced automatically.

CRUD Operations

Create, read, update, and delete records for any Odoo model using consistent endpoint patterns without custom controllers.

User Profile Endpoints

Ready-to-use profile APIs for GET /api/v1/user/me, PUT /api/v1/user/update_profile, and PUT /api/v1/user/update_photo with built-in rate limiting.

Filtering & Pagination

Domain filtering, sorting, field selection, and paging support give consumers full control over data retrieval without over-fetching.

Relational Expansion

Include nested related data in a single request using the expand query option — no extra round trips needed.

How to Use

Endpoint Snapshot

GET    /api/v1/status
POST   /api/v1/auth
POST   /api/v1/auth/logout
POST   /api/v1/auth/change_password
POST   /api/v1/auth/forgot_password
POST   /api/v1/auth/reset_password
POST   /api/v1/auth/validate_reset_token
POST   /api/v1/auth/create_key
GET    /api/v1/user/me
PUT    /api/v1/user/update_profile
PUT    /api/v1/user/update_photo
GET    /api/v1/res.partner?limit=20&page_number=1
GET    /api/v1/res.partner/45
POST   /api/v1/sale.order
PUT    /api/v1/product.template/5
DELETE /api/v1/product.template/5
POST   /api/v1/product.template/5/restore
GET    /api/v1/product.template/get_fields
GET    /api/docs

Authentication Flow

Authenticate with Odoo credentials for a session cookie, or let an administrator generate an API key and use it as a Bearer token. Both paths run through Odoo access rules.


Authentication Steps

1

Send your Odoo credentials to POST /api/v1/auth.

2

Store the authenticated session cookie returned by Odoo, or create an API key with POST /api/v1/auth/create_key.

3

Use the session cookie or send Authorization: Bearer <api_key> for protected CRUD and metadata requests.

4

All responses respect the user's Odoo role and access-control rules automatically.


User Controller Endpoints

Ready-to-use profile APIs for authenticated users — ideal for mobile account settings pages and self-service profile flows. All endpoints include built-in rate limiting.


GET /api/v1/user/me

Returns current user profile details and avatar as a data URL. Rate limit: 60/min.

PUT /api/v1/user/update_profile

Updates allowed user and contact profile fields such as name, phone, language, and timezone. Rate limit: 20/min.

PUT /api/v1/user/update_photo

Updates the user's profile photo using a base64 image payload. Rate limit: 10/min.


Sample Request Payloads

# Authenticate
POST /api/v1/auth
{
  "db": "your_database",
  "login": "admin@example.com",
  "password": "your_password"
}

# Generate API key (admin only; returned once)
POST /api/v1/auth/create_key
{
  "name": "Mobile App",
  "user_id": 2
}

# Update current user profile
PUT /api/v1/user/update_profile
{
  "name": "John Carter",
  "phone": "+1-555-0110",
  "lang": "en_US",
  "tz": "Asia/Calcutta"
}

# Create record
POST /api/v1/res.partner
{
  "name": "Acme Trading",
  "email": "ops@acme.com",
  "phone": "+1-555-0199"
}

Sample Query Patterns

# Pagination and sorting
GET /api/v1/res.partner?limit=25&page_number=2&sort=name asc

# Field selection
GET /api/v1/sale.order?fields=name,state,amount_total

# Domain filtering
GET /api/v1/product.template?filter=[["sale_ok","=",true]]

# Relationship expansion
GET /api/v1/sale.order?expand=[{"field":"order_line","fields":["name","price_unit"],"limit":5}]

Query & Data Controls

Pagination

page_number, skip, and limit parameters for predictable result sets.

Sorting

Use the sort parameter for stable, consistent list output across requests.

Domain Filtering

Use the filter parameter for Odoo-style domain queries and server-side data filtering.

Field Selection

Request only the fields you need. When omitted, responses use safe defaults such as id, display_name, and name.

Relational Expansion

Use the expand option to include nested related records in one request. Specify relation fields explicitly for larger payloads.

Archived Records

Optionally include archived records where supported by the model.


Response & Error Structure

API responses are designed for predictable client integration with clear success and error formatting — helping mobile and middleware teams implement stable parsing and retry logic.


Consistent JSON Responses

Uniform format for both list and single-record responses including pagination metadata on list endpoints.

Structured Error Responses

Validation failures and server-side errors return structured JSON with HTTP status codes aligned to operation outcomes.


Security & Governance

Odoo ACL Enforcement

Access visibility follows Odoo record rules and access-control lists exactly as in the backend.

Rate Limiting

Built-in rate limiting on user endpoints protects against abusive traffic and unintended overload.

Bearer API Keys

Administrators can generate Odoo API keys and clients can authenticate with Authorization: Bearer <api_key>.

HTTPS Recommended

Serve all API endpoints through HTTPS in production to protect session cookies in transit.

API Logs

Request logs are stored in the backend and shown newest first for faster troubleshooting.


Typical Integration Scenarios

Mobile Sales & Service Apps

Build Flutter or React Native apps that securely interact with Odoo data in real time.

Middleware & ERP Sync

Synchronize customers, products, orders, and inventory between external systems.

Dashboards & Reporting

Power external portals and analytics dashboards using normalized JSON APIs.

AI & Automation

Connect AI systems, automation pipelines, and external workflows to Odoo securely.


Implementation Checklist

1

Install the module and verify GET /api/v1/status is reachable.

2

Choose session-cookie authentication or generate a Bearer API key for the integration user.

3

Validate required ACL and model permissions for your integration users.

4

Start with the metadata endpoint to map fields before rolling out CRUD operations.

5

Enable pagination and selective fields in all high-volume requests; rely on safe defaults only for compact summaries.

6

Use Swagger at /api/docs and backend API logs for endpoint verification and troubleshooting.

Frequently Asked Questions

Which Odoo versions are supported?

  • Designed for Odoo 19 deployments including Odoo.sh and on-premise environments.

Does it support custom models?

  • Yes. Generic model-driven endpoints work with both standard and custom Odoo models.

Does it enforce Odoo ACL permissions?

  • Yes. All requests follow standard Odoo ACL and record rules automatically.

Does the API support relational data expansion?

  • Yes. The API supports relational data expansion using the expand query parameter. You can include related records directly inside the response without performing multiple API calls.

Can relational expansion go multiple levels deep?

  • Yes. Nested relational expansion supports up to 3 levels deep, allowing complex hierarchical data retrieval in a single request.

Can I apply filters inside relational expansion?

  • Yes. Each expanded relational field can include its own filtering, sorting, pagination, and field selection rules. This helps reduce payload size and improves API performance.

Does the API support pagination and field selection?

  • Yes. All list endpoints support limit, page_number, skip, sort, fields, and filter — making the API suitable for large datasets, dashboards, and mobile applications.

Can the API be used with Flutter or React Native apps?

  • Yes. The API is optimized for mobile and frontend frameworks including Flutter, React Native, Next.js, Vue.js, and Angular. Responses are JSON-based and designed for modern frontend consumption.

Does the API work on Odoo.sh and cloud deployments?

  • Yes. The module is compatible with Odoo.sh, on-premise installations, and cloud-hosted Odoo deployments. HTTPS is recommended for all production environments.

Get In Touch

Email Support

helpdesk@atliis.com.au

Website

atliis.com

Browse All Apps

Explore more Atliis modules


Odoo Proprietary License v1.0

This software and associated files (the "Software") may only be used (executed,
modified, executed after modifications) if you have purchased a valid license
from the authors, typically via Odoo Apps, or if you have received a written
agreement from the authors of the Software (see the COPYRIGHT file).

You may develop Odoo modules that use the Software as a library (typically
by depending on it, importing it and using its resources), but without copying
any source code or material from the Software. You may distribute those
modules under the license of your choice, provided that this license is
compatible with the terms of the Odoo Proprietary License (For example:
LGPL, MIT, or proprietary licenses similar to this one).

It is forbidden to publish, distribute, sublicense, or sell copies of the Software
or modified copies of the Software.

The above copyright notice and this permission notice must be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author or have a question related to your purchase, please use the support page.
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with