Odoo API Bundle Lite

by
Odoo

72.09

v 17.0 Third Party
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Community Apps Dependencies
Lines of code 4064
Technical Name odoo_api_framework_starter
LicenseOPL-1
Websitehttps://ekika.co
Versions 17.0 16.0 15.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Community Apps Dependencies
Lines of code 4064
Technical Name odoo_api_framework_starter
LicenseOPL-1
Websitehttps://ekika.co
Versions 17.0 16.0 15.0


Odoo API Framework Lite Starter

  • API-Key Based Authentication
  • Dynamic API Builder (as many as you want)
  • GraphQL Query, Mutation and Introspection
  • Json:API with (Redoc) Documentation
  • No Code API Solution (All models including custom are ready to accessible just by configuring API record.)
  • Don’t take risk by doing @http.route(…auth=None…) with controllers
  • Supports CRUD, File and Report Downloads, Filters, Function Calls, Pagination

Enhance your Odoo experience with the Odoo API Framework Lite Starter, a powerful tool designed for seamless integration and expansion of Odoo’s functionality. This lightweight solution is perfect for businesses looking to leverage the benefits of external system integration without the complexities of full-scale API management.

Simplified Integration

The Odoo API Framework Lite Starter simplifies the process of integrating external systems with Odoo. With just a few configurations, you can seamlessly connect your Odoo instance with other platforms, extending its capabilities without the need for extensive coding.

Odoo JSON API

With the easy_jsonapi module, managing API interactions becomes effortless. The JSON:API specification allows you to read, create, update, and delete records in Odoo using simple and straightforward queries. Here’s a quick example of retrieving specific fields for a sale order:

import requests
import json

url = "http://localhost:8069/api/sale.order/1?fields[sale.order]=name,partner_id,date_order"
headers = {
  'Content-Type': 'application/vnd.api+json',
  'x-api-key': 'YOUR-API-KEY'
}
response = requests.get(url, headers=headers)
print(response.text)

For more detailed information, refer to the JSON API Specification at jsonapi.org. And more detail about Odoo JSON API is on module:

Odoo JSON:API - easy_jsonapi

Enjoy ! Odoo external API client communication become very simple, RIGHT?

Odoo GraphQL API

The easy_graphql module introduces GraphQL, a powerful query language for APIs. With GraphQL, you can fetch precisely the data you need, minimizing over-fetching and under-fetching common in REST APIs. Here’s an example of a GraphQL query to read records:

query MyQuery {
  ResPartner(id: "33") {
    id
    name
    phone
    email
    is_company
    country_id {
      name
      code
    }
    user_id {
      name
      active
    }
    company_id {
      name
    }
  }
}

For more detailed information, refer to the GraphQL Specification at graphql.org.

Odoo GraphQL API - easy_graphql

Secure API Authentication with API Key

The api_auth_apikey module provides secure authentication options for your API. Choose from various authentication methods, including API key, tailored to meet your security needs. Effortlessly establish access to your API resources without hassle.

Comprehensive Documentation

For detailed instructions on installation and configuration, refer to the comprehensive documentation provided with the each module in depends list with Odoo API Framework Lite Starter. This guide offers step-by-step instructions, ensuring you can quickly get started with integrating external systems with your Odoo instance.

Contact Us

For any inquiries or assistance, feel free to reach out to us:

EKIKA CORPORATION PRIVATE LIMITED

  • Website: ekika.co
  • Phone/Whatsapp: +91-9510031431
  • Email: hello@ekika.co
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.