I use Typeform on my website. I like their look and feel much more than the standard webforms in ERPNext.
Now I want to integrate the Typeform in ERPNext. Typeform provides a rich set of connectors available here:
The one I am more interested in is webhooks integration. When a form is submitted, Typeform will call a webhook with the form data and issue it to my desired listener.
I did some research, and it seems that ERPNext webhooks integration is only for triggering events and not listening to them. So I found three possible solutions so far:
- a whitelisted function as discussed in this post: ERPNext WebHooks - #9 by revant_one
- Use web.py to create my webhook listener, which directly updates my ERPNext MySql database.
- build a JSON object using a middle-man service like Zapier. discussed here: Zapier integration with ERPNext - #45 by Mike_Z
I am a complete beginner, and I will have to learn it from scratch. So any help will be appreciated. How do you think I should tackle this issue?