Webhooks are basically user-defined HTTP callbacks (or small code snippets linked to a web application) that are triggered by specific events. They allow your applications to transfer data instantly and seamlessly to one another.
So whenever someone registers for your BigMarker webinar, the webhook sees the event, collects the data, and sends it to an outgoing URL specified by you in the form of an HTTP POST request.
Per Zapier: "Webhooks are similar to APIs—but simpler. An API is a full language for an app with functions or calls to add, edit, and retrieve data. The difference is, with an API, you have to do the work yourself. If you build an application that connects to another with an API, your application will need to have ways to ask the other app for new data when it needs it."
"Webhooks, on the other hand, are for one specific part of an app, and they're automated. You might have a webhook just for new contacts—and whenever a new contact is added, the application will push the data to the other application's webhooks URL automatically. It's a simple, one-to-one connection that runs automatically."
Learn how to create webhooks between BigMarker and your server below. (For more in-depth information on webhooks, consult Zapier's guide.)
How Can I Set Up My Webhooks Integration?
Before you create an outgoing webhook, you'll need to set up an outgoing URL, an HTTP/HTTPS endpoint on your server that accepts JSON payloads. E.g. https://api.yourservice.com/callback.
1. Log into your webinar and select the Integrations tab.
2. Scroll down and select Webhooks.
3. Toggle the Webhook integration on.
4. Once you enable your webhook, enter your desired Outgoing URL into the corresponding prompt that appears.
{
"registration": {
"bmid":"xxxxxxx",
"first_name":"John",
"last_name":"Doe",
"email":"john.doe@domain.com",
"time_stamp":"2017-01-01T00:00:00Z",
"custom_field_Job_Title":"Job Title "
}
}
5. Enter your Incoming Endpoint into the matching prompt below.
BigMarker will save incoming POST requests in x-www-form-urlencoded format as a new registrant to your webinar with the following data mapping.
Comments
0 comments
Article is closed for comments.