How to Use Webhooks to Send and Receive Data in Odoo 17

Поділитися
Вставка
  • Опубліковано 1 жов 2024

КОМЕНТАРІ • 25

  • @OdooMates
    @OdooMates 2 місяці тому

    thanks for the video :)
    Using payload variable we can receive the passed values in the automated action, without installing the website application: ua-cam.com/video/9KWuFFd7tEw/v-deo.html
    and to create record inside odoo: ua-cam.com/video/KrVyiSoM1UY/v-deo.html

  • @MuhammadUmarAkram4
    @MuhammadUmarAkram4 26 днів тому

    can we use webhook to download a report in odoo studio?

  • @mauludinrohman6177
    @mauludinrohman6177 9 місяців тому +1

    Its a pro version right ? , i need to pay for it, is that true ?

  • @limitless6572
    @limitless6572 15 годин тому

    Webhooks for inventory?

  • @MicroYape
    @MicroYape 2 місяці тому

    Hi Kevin Zaki, very good video for my reference, may I know how to activate the inbox notification after creating the message?

  • @dmvanloenen
    @dmvanloenen 5 місяців тому

    On one database this works very well! But on other database I get an error on the 'request', any thoughts? What am I missing?
    Webhook #1 failed with error:
    Traceback (most recent call last):
    File "ir.actions.server(613,)", line 16, in
    NameError: name 'request' is not defined
    During handling of the above exception, another exception occurred:
    Traceback (most recent call last):
    File "/home/odoo/src/odoo/odoo/tools/safe_eval.py", line 383, in safe_eval
    return unsafe_eval(c, globals_dict, locals_dict)
    File "ir.actions.server(613,)", line 18, in
    NameError: name 'request' is not defined

  • @AmanSrivastava-tm9hz
    @AmanSrivastava-tm9hz 4 місяці тому

    Is he using a paid version of Odoo?
    If yes, then how can we do the same in the free version?

  • @josequinterodiaz1948
    @josequinterodiaz1948 7 місяців тому +2

    Is it only work for Odoo 17?

    • @odoo-it-yourself
      @odoo-it-yourself 6 місяців тому

      It's only in studio in ODOO 17, but it's simple enough to send webhooks using python. ua-cam.com/video/dM1yhOfhyBk/v-deo.html

  • @Aqib-m8e
    @Aqib-m8e 7 місяців тому

    Can we webhook for whatsapp Api on wati integration and automation on sale invoice etc process

  • @dxb_coder
    @dxb_coder 8 місяців тому

    Hello Kevin, thanks for the great video.
    In case I go for updating a record (in the case of customer changed) If the customer doesn't exist, will odoo create the one I sent or not?

  • @AzizOuabbou
    @AzizOuabbou 10 місяців тому

    Hello,
    Which dev branch you use in the runbot to test this out? Because whatever branch I picked I got access denied in the server actions..
    Tnx

  • @JoaquinLeon-g4n
    @JoaquinLeon-g4n 7 місяців тому

    how can i do rest api queries on odoo studio? is it troguh webhooks? its the case that when i add a 10 digit code on a field i want to trigger a Get request to a server which will reply information to fill 5 fields related to the 10 digit code. how can i perform this request and parse back the response?

    • @euniceng_glorytohk
      @euniceng_glorytohk 4 місяці тому

      Odoo does not have REST API built-in. You might need to install a 3rd party module to expose the databse with REST API. There is an option "execute another action" in that webhook automation creation panel. You might need a string of actions to achieve something.

  • @toufeequrrahman1273
    @toufeequrrahman1273 10 місяців тому

    Thank you for this amazing tutorial

  • @SingleGuns
    @SingleGuns 10 місяців тому

    in my case, it blames "request" is not defined and I couldn't import it. Can you help out?

    • @KZAKI
      @KZAKI  10 місяців тому +1

      Do you have the website app installed?

    • @umar.maniar
      @umar.maniar 4 місяці тому

      @@KZAKI Your comment helped me to fix the same error. Thanks!

  • @viral_products111
    @viral_products111 5 місяців тому

    i got request is not defined

  • @ylisafne
    @ylisafne 8 місяців тому

    Thanks for the tutorial, can I use webhooks to create new records inside the "crm.lead" model?
    I have tried to do it but have not been successful. I think it's because I don't know how the "Target Record" field works.
    thanks again for the tutorial

    • @odoo-it-yourself
      @odoo-it-yourself 6 місяців тому

      You can create a record in any model!
      I'd use python to make it a bit more exact. ua-cam.com/video/RFojz__mO7M/v-deo.html

    • @kingstonmybabymajestic2345
      @kingstonmybabymajestic2345 5 місяців тому +1

      @@odoo-it-yourself can you help me out ? i receive json data in the webhook and then i wanna extract the data and create a new lead..

    • @OdooMates
      @OdooMates 2 місяці тому

      ua-cam.com/video/KrVyiSoM1UY/v-deo.html