About 1,070,000 results
Open links in new tab
  1. Soap Api Call - Odoo

    Hey guys,is there methods to make calls from odoo to external api through SOAP?I did it using xml-rpc and json,How can we do with SOAP?Pls Help

  2. How to perform SoapAPi calls from Odoo.

    Here we are trying to integrate Odoo with Diebold Cash Machine, they have provided us the SOAP project xml code? Can anyone share any reference on how we can make Soap APi calls.

  3. Web Services — Odoo 16.0 documentation

    Web Services The web-service module offers a common interface for all web services: XML-RPC JSON-RPC Business objects can also be accessed via the distributed object mechanism. They can all be modified via the client interface with contextual views. Odoo is accessible through XML-RPC/JSON-RPC interfaces, for which libraries exist in many languages. XML-RPC Library …

  4. Odoo Api Login

    This question has been flagged api XML-RPC odoo16features 1916 Views Mahmoud Tarek I'm making an android app for odoo and I want to make login form like one in current odoo mobile app. I did the login successfully but I must determine database unlike odoo app which just requires the url and login details. I did this using:

  5. Odoo External API limitations

    Hello, Can someone help me with some information about the limitations to using the External API like the maximum size of request and maximum request number? some background on this I need to use the data from the Contacts module and found that i can use the External API using python which i did and it's working but I can't find any information on the cost per request or …

  6. what is the difference between @api.multi and @api.model_create …

    Hello @api.multi was used in the older versions and it means that the method can run with multiple records in the "self" variable (it is deprecated) @api.model_create_multi is used in the create method in order to create multiple records in the same run. using this decorater you shoud get a list of values instead of just a dict of values 2 Add ...

  7. How to sync Odoo Contacts with 3th party Contact apps lik …

    Zapier – limited support, but with custom webhook/API, it’s doable. Microsoft Power Automate – ideal if you're on Microsoft 365/Exchange Online. These tools allow you to: Sync Odoo Contacts → Outlook Contacts (one-way or two-way). Automatically …

  8. Problem with request.session.authenticate in Odoo 18 | Odoo

    Hello, I’m having an issue with REST API authentication in Odoo 18, let me explain: I’m developing an application with two components — a backend (Odoo) and a frontend (ReactJS). On the Odoo side, I’ve created an authentication method where I call: uid = request.session.authenticate (db_name, login, password) But I’m getting the following error: …

  9. name_get - Odoo

    Hello, Reason for Deprecation: The name_get method was deprecated in Odoo 17 (commit #122085) in favor of a more standardized approach using the display_name field. This change aims to improve code maintainability and consistency across different models. Alternative Method: Instead of name_get, you should now access the display_name field directly. This field is …

  10. How i can auth my user to access odoo with API Key or Access …

    Thank you for your reply, it helps a lot. FYI on V16 we should use request.update_env (user_id) instead of the request.uid = user_id Usman Farzand Author Best Answer yes thanks i found solution to pass api key from header its working now @http.route ('/my_service', auth='api_key', type='http') def api_get_video (self, code): 2 Add a comment ...