Hi everyone.
I just would like to inquire if anyone knows if it is possible to import data to SugarCRM via Sugar Web Logic Hooks?
For example:
WooCommerce to SugarCRM
If not, is there any alternative available (aside from Zapier)
Hi everyone.
I just would like to inquire if anyone knows if it is possible to import data to SugarCRM via Sugar Web Logic Hooks?
For example:
WooCommerce to SugarCRM
If not, is there any alternative available (aside from Zapier)
Does WooCommerce allow you to subscribe to its webhooks?
Best Regards,
Dmytro Chupylka
integroscrm.com
We make work in Sugar CRM system faster, more convenient and efficient
It's possible with a 3rd party plugin that export order data. Tried it and was able to send data to Google Sheet via Webhook on WooCommerce.
Actually it's more like an HTTP POST.
Can you drop an example of it here?
Best Regards,
Dmytro Chupylka
integroscrm.com
We make work in Sugar CRM system faster, more convenient and efficient
I might have misread your message in regard to the subscription.
The setup process is we use Integromat's Webhook URL (Webhooks – Integromat Support)
Then on the 3rd Party Plugin, we load the Webhook URL of Integromat to capture order data via POST.
Once the data structure and IP restriction is set. The captured data from WooCommerce (via 3rd Party Plugin that export order data) > Integromat can now be sent to other apps.
However, I can send the data to Google Sheet and other applications, but I'm not sure how to send the data to SugarCRM.
The short answer is yes.
Though there may be some limitations on the Cloud version of Sugar that I am not aware of since my implementation is fully on-site, as are most of our integrations.
Sugar provides many APIs out of the box.
Go to:
https://<your sugar instance>/rest/v11/help
to get a list of available APIs
You can Pull data into Sugar, a Scheduler on Sugar that would run an API on the other system to retrieve the data and crate the records; or you can Push data from your other application to Sugar, having the other system call a SugarAPI to create records. I like to Pull rather than Push, I feel that it gives me more control.
How you do it depends very much on your particular scenario.
In both cases you will need to be very careful about how you do it, checking for duplicates for example, and making sure you are not inserting invalid values (check dropdown values to make sure they exist in your application's list strings for example) .
You will also need to add some checks and balances so you know which records have been synced and which still need to sync, timestamps are not enough as syncs can and will fail, for whatever reason, especially if sending information to/from remote locations....
If all that sounds scary, I am sure there are third-party options out there to make your life a little easier, but your question was specifically about Web Hooks and personally, I like to build my own solutions.
Hope this gets you a little closer to a solution you like.
FrancescaS
Thanks for the feedback. Sadly I don't have the technical capabilities to work on the APIs, I was hoping there was a frontend solution that can be configured to POST and GET data :(
Oh, well.
there are a couple over here that may be worthwhile testing for just a few $$
https://codecanyon.net/search/woocommerce%20sugarcrm
.
CRM Business Consultant
Sorry for the delay with the answer - I was asking about an example not because of curiosity.
To configure this with no coding skills, there is a way to use LB Databridge web service as the data broker, which could be deployed on-premise - it listens to the webhooks and when the webhook appears, it calls the custom processing logic preconfigured in Logic Builder - for processing data received and populating it through Sugar custom and regular modules.
Again - no coding skills necessary.
I will show here an example of catching and processing webhook so that you could evaluate whether it could work for your task , please, bear with me
Best Regards,
Dmytro Chupylka
integroscrm.com
We make work in Sugar CRM system faster, more convenient and efficient
Thanks for the feedback. Actually WooCommerce is just of the channel we wish to implement the Webhook setup.
The anchor that we are looking at is within SugarCRM.
Since we are looking for a Webhook setup to push (e.g) New leads) and pull data (e.g. Syncing to 3rd party platform) out of SugarCRM.