Salesforce - GitHub integration using Webhook
Salesforce supports webhooks for communicating with many other applications. In this post let us see how we can use webhooks to communicate between Github and Salesforce to track details of push event. 1. What is Webhook In Salesforce, we can define what action should happen when a specific event occurs. Triggers and flows can define before and after actions. Similarly, other applications provides event actions called webhooks, which is basically an HTTP POST to external URLs, which are registered under specific event actions. There are multiple applications that currently support webhooks. Github, JIRA, ServiceNow, Twilio, Whatsapp are some examples. These applications can register multiple subscribers for the same event, thus passing the same message to multiple systems when some event is happening. 2. How to create a Webhook supported URL in Salesforce In Salesforce creating a webhook supported URL involves the below steps: 1. Create Apex REST API First, create a new Apex REST ...