Skip to Content
Menu

Odoo dynamic rest API

by
Odoo

30.00

v 18.0 Third Party
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 313
Technical Name Odoo_rest_api
LicenseLGPL-3
Websitehttps://www.micra.digital
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 313
Technical Name Odoo_rest_api
LicenseLGPL-3
Websitehttps://www.micra.digital

Odoo 18 REST API Module

Powerful JSON-RPC Integration for Odoo 18

The Odoo 18 REST API Module provides a comprehensive RESTful interface designed specifically for Odoo 18 using JSON-RPC. Built to leverage Odoo 18's latest features, it enables secure integration with external systems, mobile apps, and third-party services while maintaining Odoo's security model.

🚀 Performance Note: Optimized specifically for Odoo 18's architecture, the module adds minimal overhead with API response times averaging under 100ms for most operations.

Key Features

Odoo 18 Exclusive

Built specifically for Odoo 18's architecture with support for all new features and performance improvements.

🔒

Secure Authentication

JWT token-based authentication with user-level permissions and configurable expiration.

🗄️

Full CRUD Operations

Create, Read, Update, Delete for any Odoo model with comprehensive field support.

🔍

Advanced Search

Filter records with complex domain filters, sorting, and field selection.

⚙️

Batch Create Operations

Perform multiple Create actions in a single API call for improved efficiency.

💻

Custom Endpoints

Extend the API with your own endpoints for specialized functionality.

Module Documentation

📋 Overview

🚀 Performance Note: Optimized specifically for Odoo 18's architecture, the module adds minimal overhead with API response times averaging under 100ms for most operations.

Key Features:

  • Odoo 18 Exclusive - Built specifically for Odoo 18's architecture
  • Secure authentication - JWT token-based authentication with user-level permissions
  • Full CRUD operations - Create, Read, Update, Delete for any Odoo model
  • Advanced search capabilities - Filter records with complex domain filters
  • JSON-RPC compliance - Industry-standard protocol for maximum compatibility
  • Batch Create operations - Perform multiple Create actions in a single API call
  • Custom endpoints - Extend the API with your own endpoints
  • Rate limiting - Prevent abuse with configurable request limits
  • CORS support - Cross-origin resource sharing for web applications

Odoo 18 Specific Enhancements:

  • Utilizes Odoo 18's improved ORM performance
  • Supports Odoo 18's new security features
  • Optimized for Odoo 18's Python 3.10+ environment
  • Leverages Odoo 18's enhanced caching mechanisms

⚙️ Installation Guide

  1. Download the module from our repository or the Odoo App Store
  2. Place it in your Odoo 18 addons directory: /path/to/odoo18/addons/
  3. Update your app list: Go to Apps → Update Apps List
  4. Install the REST API Module from the Apps menu
  5. Configure user permissions: Settings → Users & Companies → Users
    • Enable "API Access" for relevant users
    • Set appropriate access rights for API users
  6. Restart your Odoo 18 service
  7. Verify installation by accessing: https://your-odoo-domain.com/api/docs

System Requirements:

  • Odoo 18.0 (latest version recommended)
  • Python 3.10+
  • PostgreSQL 12+
  • Minimum 2GB RAM for production use

📚 API Documentation

All API requests are made to the base URL:

https://your-odoo-domain.com/api/docs

Authentication:

To authenticate, send a POST request to /api/login with credentials:

{
  "jsonrpc": "2.0",
  "method": "call",
  "params": {
    "db": "your_db_name",
    "login": "api_user@example.com",
    "password": "secure_password"
  }
}

Successful authentication returns a JWT access token valid for 24 hours by default.

Available Endpoints:

POST /api/<model>/search - Search records

Parameters: domain (array), limit (int), offset (int), order_by (string), fields (array)

GET /api/<model>/read - Read record by ID

Parameters: id (int), fields (array)

POST /api/<model>/create - Create new record

Parameters: values (object)

PUT /api/<model>/update - Update existing record

Parameters: id (int), values (object)

DELETE /api/<model>/delete - Delete record

Parameters: id (int)

POST /api/<model>/call_method - Call model method

Parameters: method (string), args (array), kwargs (object)

💡 Usage Examples

Example Request:

Search for companies with more than 10 employees:

{
  "jsonrpc": "2.0",
  "method": "call",
  "params": {
    "domain": [
        ["is_company", "=", true],
        ["employee_count", ">", 10]
    ],
    "limit": 5,
    "order_by": "name asc",
    "fields": ["id", "name", "email", "phone"]
  }
}

Example Response:

{
  "jsonrpc": "2.0",
  "id": null,
  "result": {
    "status": 200,
    "message": "Success",
    "count": 3,
    "data": [
      {
        "id": 45,
        "name": "Tech Solutions Inc.",
        "email": "info@techsolutions.com",
        "phone": "+1 800 123 4567"
      }
    ]
  }
}
💡 Tip: We provide ready-to-use Swagger documentation to help you get started quickly with the API.

Technical Requirements

Odoo Version Compatible with Odoo 18.0
Python Version Python 3.10 or higher
Dependencies PyJWT, requests, python-dateutil

Module Screenshots

Visual overview of the REST API module features and interface in Odoo 18.

token-response
Response Token
API Endpoint Management
Endpoint Management
API Access Logs
API response
Swagger UI Interface
Interactive Documentation

🛠 Support & Customization

Need custom endpoints, specialized functionality, or assistance with Odoo 18 integration? Our team provides expert support and customization services.

Standard Support: Included with module purchase (6 months)

Premium Support: 24/7 emergency support with 1-hour response time

Contact us: hello@micra.digital

Odoo 18 REST API Module | © 2025 Micra Digital.

Exclusively for Odoo 18 | MIT License

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.