OCA/web-api · 19.0
Endpoint
endpoint
Endpoint
Provide an endpoint framework allowing users to define their own custom endpoint.
Thanks to endpoint mixin the endpoint records are automatically registered as real Odoo routes.
You can easily code what you want in the code snippet.
NOTE: for security reasons any kind of RPC call is blocked on endpoint records.
Table of contents
Configuration
Endpoints are managed under Technical → Endpoints.
Each record represents a single HTTP route exposed by Odoo and executed according to its configuration.
Identification
- Name: human-readable label used in lists and logs.
- Route: URL path served by the endpoint (e.g.
/my/custom/path). Routes must be unique across all endpoint-consumer models, not only withinendpoint.endpoint. - Route group: free-text tag to classify related routes together. Useful for filtering and for downstream modules that group endpoints.
Authentication
- Auth type:
User: the request must be authenticated as an Odoo user (default).Public: the route is accessible without authentication.
- Exec as user: the user under which the code snippet runs.
- Mandatory when Auth type is
Public(the public user has no real privileges, so the endpoint must impersonate a real user to perform any meaningful work). - Optional otherwise; if set, the snippet is evaluated as that user instead of the caller.
- Mandatory when Auth type is
Request
-
Request method:
GET,POST,PUTorDELETE. Requests using any other method are rejected with405 Method Not Allowed. -
Request content type: expected
Content-Typeof the incoming request body. Mandatory forPOST/PUT. Available values:text/plain,text/csvapplication/jsonapplication/xmlapplication/x-www-form-urlencoded
When set, requests with a different
Content-Typeheader are rejected with415 Unsupported Media Type.
Request content schema (optional)
For POST/PUT endpoints whose content type is application/json or
application/xml, an optional Request Schema tab is shown. When a
schema is provided, the request body is validated against it before the
code snippet runs; on failure, the request is rejected with a structured
validation error (RequestValidationError).
The accepted schema format depends on the content type:
- JSON (
application/json): a JSON Schema (Draft 2020-12). The field accepts both JSON and YAML syntax — YAML is convenient when authoring schemas inline. - XML (
application/xml): an XML Schema (XSD).
Example JSON Schema (YAML form):
type: object
required: [name, qty]
properties:
name: { type: string }
qty: { type: integer, minimum: 1 }
Example XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="greeting" type="xs:string"/>
</xs:schema>
Tip: when shipping endpoints from a module, the schema can live in a separate file and be loaded into the field at install time using the
fileattribute on the data record:<field name="request_content_schema" type="char" file="endpoint/demo/content_schema.xsd" />
Execution
-
Exec mode: how the request is handled. The base module ships
Execute code; downstream modules can register additional modes. -
Code snippet (when exec mode is ``code``): Python code evaluated via
safe_evalfor every request. The snippet must assign adictto theresultvariable; it can either contain a ready-madeResponse(under theresponsekey) orpayload,headersandstatus_codeto be assembled by the framework.Variables exposed to the snippet (see the Code Help tab on the form for the live, up-to-date list):
env,user,endpoint,requestdatetime,dateutil,time,jsonResponse(Odoo'shttp.Response)werkzeug(limited toNotFound,BadRequest,Unauthorized)exceptions(limited toUserError,ValidationError)hashlib,hmac(subset of the standard library)log(message, level="info")— writes toir.logging
Raising
UserErrororValidationErrorfrom the snippet is converted to400 Bad Request.
Minimal snippet:
result = {"response": Response("Hello, World!")}
Registry synchronization
Endpoints are registered in a routing registry that lives outside the ORM. After creating, modifying or archiving a record, the warning "Registry out of sync" appears on the form, and the record is shown in the To sync filter on the list view. Run the Sync registry action to commit the changes to the live routing table — until then, the new configuration is not served.
Known issues / Roadmap
- add api docs generation
- handle multiple routes per endpoint
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Authors
- Camptocamp
Contributors
- Simone Orsi <<simone.orsi@camptocamp.com>>
- Iván Todorovich <<ivan.todorovich@camptocamp.com>>
- Alex Garcia <<alex@studio73.es>>
Maintainers
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
Current maintainer:
This module is part of the OCA/web-api project on GitHub.
You are welcome to contribute. To learn how please visit <https://odoo-community.org/page/Contribute>.






