
is it possible to implement webhooks with ms crm.? Could someone give a explanation on how we could use webhooks in CRM.
Thank you.
*This post is locked for comments
I have the same question (0)Hi Sarababu,
If you are looking to push CRM data, you need to follow following steps.
Step 1: Create a rest service wrapper using CRM organization services using JWT authentication for make it more secure token based authentication.
Step 2: Create web hook handler either in c# library or language you prefer. One of the example you can see here -
www.codeproject.com/.../Webhooks-webhook-URLs-and-a-sample-implementation
basically web hook is nothing more than a rest HTTP api, so it can be implemented as you need based on your flow. I shared basic structure.
Please mark my answer as verfied.
Hope this will help you!
Thanks
Sandeep