Skip to main content

Notification Channels

Multifollow.io offers multiple ways to receive notifications when new activity is detected on the profiles you are tracking. This guide will help you set up and manage your notification preferences.

Email Notifications

Email notifications are the simplest way to stay informed about your keyword matches. Here's how to set them up:

  1. Enter your preferred email address in the "Notification Email" field. By default, the email address is the one you used to sign up for Multifollow.io, but you can enter another email address if you prefer.
  2. Toggle the checkbox to enable/disable email notifications
  3. Click "Save" to apply your changes

Note: When receiving email notifications, large content is automatically truncated to ensure optimal delivery. If you need the full content, consider using Slack or API webhooks instead.

Slack Notifications

Slack notifications allow you to receive real-time updates directly in your Slack workspace. Here's how to set them up:

Create a Slack app and get your webhook URL:

  1. Go to https://api.slack.com/apps
  2. Click "Create New App"
  3. Choose "From scratch" and give your app a name
  4. Select your workspace
  5. In the "Add features and functionality" section, click "Incoming Webhooks"
  6. Toggle "Activate Incoming Webhooks" to On
  7. Click "Add New Webhook to Workspace"
  8. Choose the channel where you want to receive notifications
  9. Copy the Webhook URL

On Multifollow.io, enable the Slack webhook:

  1. Go to the "Notifications" section
  2. Paste your Slack webhook URL in the "Slack Webhook URL" field
  3. Click the "Test Webhook URL" button to ensure you are receiving notifications
  4. Toggle the checkbox to enable the webhook
  5. Click "Save" to apply your changes

API Webhooks

API webhooks allow you to integrate Multifollow.io notifications with your own systems and applications.

Use API webhooks to:

  • Store detected activity in your own database
  • Trigger automated responses
  • Create custom dashboards
  • Interface with other services
  • Integrate with your CRM or marketing tools

API Webhook Setup

In order to set a global API webhook for your account, you can do the following:

  1. Enter your webhook URL in the "API Webhook URL" field
  2. Click the "Test Webhook URL" button to ensure you are receiving notifications
  3. Toggle the checkbox to enable the webhook
  4. Click "Save" to apply your changes

API Webhook Payload Format

When a keyword is detected, Multifollow.io will send a POST HTTP request to your webhook URL with a JSON payload.

API Webhook Payload Fields

The JSON payload contains the following information:

FieldTypeDescription
platformstringThe social media platform where the new activity is detected. Possible values: "linkedin", "twitter"
profile_urlstringThe URL of the profile you are tracking
datetimestringThe date and time of the detected activity
linkstringThe URL pointing to the post, comment or like
activity_typestringThe type of activity detected. Possible values: "post", "comment", "like"
contentstringThe text of the detected post or comment. In case of a like, the content is empty.

API Webhook Example Payload

{
"platform": "linkedin",
"profile_url": "https://www.linkedin.com/in/erikatrautman/",
"datetime": "19 Jan 25 05:52 UTC",
"link": "https://www.linkedin.com/posts/erikatrautman_vice-president-strategy-and-business-operations-activity-7272270503808000000-OxBb",
"activity_type": "post",
"content": "I've got two more great leadership positions I'm filling! I am so inspired by the vision and the culture here at Sprout. So come join me to transform how companies leverage social media to connect with their customers."
}