Great video, really well explained and easy to follow! I have a question: is it possible to use this method to automatically update the prices of products (suppliers) in a system? That would be incredibly useful for streamlining the process.
@toufeequrrahman1273 Жыл бұрын
Thank you for this amazing tutorial
@mauludinrohman6177 Жыл бұрын
Its a pro version right ? , i need to pay for it, is that true ?
@MicroYape6 ай бұрын
Hi Kevin Zaki, very good video for my reference, may I know how to activate the inbox notification after creating the message?
@dxb_coder Жыл бұрын
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?
@MuhammadUmarAkram44 ай бұрын
can we use webhook to download a report in odoo studio?
@limitless65723 ай бұрын
Webhooks for inventory?
@Aqib-m8e11 ай бұрын
Can we webhook for whatsapp Api on wati integration and automation on sale invoice etc process
@josequinterodiaz194811 ай бұрын
Is it only work for Odoo 17?
@odoo-it-yourself10 ай бұрын
It's only in studio in ODOO 17, but it's simple enough to send webhooks using python. kzbin.info/www/bejne/mn6UqpuFm82seM0
@AzizOuabbou Жыл бұрын
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-g4n11 ай бұрын
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_glorytohk8 ай бұрын
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.
@dmvanloenen9 ай бұрын
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
@SingleGuns Жыл бұрын
in my case, it blames "request" is not defined and I couldn't import it. Can you help out?
@KZAKI Жыл бұрын
Do you have the website app installed?
@umar.maniar8 ай бұрын
@@KZAKI Your comment helped me to fix the same error. Thanks!
@viral_products1119 ай бұрын
i got request is not defined
@madhavkumarpancholi98426 ай бұрын
same here. did you find any solution?
@AmanSrivastava-tm9hz8 ай бұрын
Is he using a paid version of Odoo? If yes, then how can we do the same in the free version?
@OdooMates6 ай бұрын
thanks for the video :) Using payload variable we can receive the passed values in the automated action, without installing the website application: kzbin.info/www/bejne/b3y6pnl8mZyne9k and to create record inside odoo: kzbin.info/www/bejne/gaO5qpyJpLJki7s
@ylisafne Жыл бұрын
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-yourself10 ай бұрын
You can create a record in any model! I'd use python to make it a bit more exact. kzbin.info/www/bejne/iHfSm62VlNKCba8
@kingstonmybabymajestic23459 ай бұрын
@@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..