No results were found...

New customer discount!For a limited time get 30% off your first 3 months  

Webhooks

Webhooks are a way for applications to communicate with each other automatically and in real-time. They are essentially automated messages sent from one application to another when a specific event occurs. 

Unlike polling, a method of app communication that  checks for updates at fixed intervals, webhooks push the updates to you, allowing for instant notifications.

Imagine you run an e-commerce site and you want to update your inventory system every time a new order is placed. Without webhooks, you would need to frequently check your orders database to see if any new orders have come in. 

With webhooks, your e-commerce platform can automatically notify your inventory system of a new order as soon as it happens, allowing your inventory to be updated in real-time.

An event occurs in MailerLite

This event could be any significant action from a new email being sent to a new subscriber joining a mailing list or a bounce notification.

HTTP POST request is sent

When this event happens, MailerLite sends an HTTP POST request to a specified URL (the webhook endpoint). This request contains data about the event.

Data is received

MailerLite sends this request to your specified webhook endpoint URL. Your server or application then processes the data contained in the payload and triggers appropriate actions based on the event.

Instant notification

Because the data is pushed to you immediately when the event occurs, you receive instant notifications without the need to constantly check for updates.

To set up webhooks:

  1. Navigate to Integrations.

  2. Under MailerLite API, locate Webhooks.

  3. Click Use.

4. Scroll down and click Generate webhook

5. Give the webhook a name.

6. Enter the Endpoint URL.

7. Choose the Webhook events to subscribe to.

We offer a variety of event triggers to keep you informed about important activities in your account. Here are the events you can subscribe to:

  • subscriber.created: Fires when a new subscriber is added to an account.

  • subscriber.updated: Fires when any of the subscriber’s custom fields are updated or when they confirm their subscription.

  • subscriber.unsubscribed: Fires when a subscriber becomes unsubscribed.

  • subscriber.added_to_group: Fires when a subscriber is added to a group.

  • subscriber.removed_from_group: Fires when a subscriber is removed from a group.

  • subscriber.bounced: Fires when an email address bounces.

  • subscriber.automation_triggered: Fires when a subscriber starts an automation.

  • subscriber.automation_completed: Fires when a subscriber finishes an automation.

  • subscriber.spam_reported: Fires when a subscriber marks a campaign as spam.

  • campaign.sent: Fires when a campaign is sent.

  • campaign.open: Fires when a subscriber opens a campaign. The batchable option is required for this webhook and must be set as true.

  • campaign.click: Fires when a subscriber clicks a link in a campaign. The batchable option is required for this webhook and must be set as true.

  • subscriber.deleted: Fires when a subscriber is set as deleted or forgotten. The batchable option is required for this webhook and must be set as true.

Next, choose to enable event batching.

What is event batching? 🤔

This is a technique used in webhook systems to group multiple event notifications together and send them in a single request, which can be particularly useful in reducing the number of HTTP requests and managing the load on your server.

Click Create Webhook

All created webhooks will be shown in the Webhooks list. Use the Manage button to control the webhook settings. 

To use webhooks in your MailerLite workflows:

  1. Navigate to Automation.

  2. Choose New automation

  3. In the automation editor, define your workflow trigger to begin creating. 

  4. Click the + sign to add another step, and choose Webhook.

5. In the right side-bar, enter the Webhook URL and the Secret Key.

The Secret Key can be found in the Webhook settings, in the Integrations page.

Last time edited: Jul 18, 2024