Skip to content

Notify_ifttt

Chris Caron edited this page Feb 13, 2019 · 11 revisions

IFTTT (If This Than That) Notifications

  • Source: https://ifttt.com/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 32768 Characters per message

Account Setup

Creating a IFTTTT account is easy. Visit there website and create your free account.

Once you're hooked up, you'll want to visit this URL on Webhooks. This will be the gateway Apprise will use to signal any Applets you create. When you visit this page it will give you your API key in the form of a URL.

The URL might something like this: https://maker.ifttt.com/use/b1lUk7b9LpGakJARKBwRIZ

This effectively equates to: https://maker.ifttt.com/use/{WebhookID}

In the above example the WebhookID is b1lUk7b9LpGakJARKBwRIZ. You will need this value!

Syntax

Valid syntaxes are as follows:

  • ifttt://{WebhookID}@{Event}/
  • ifttt://{WebhookID}@{Event1}/{Event2}/{EventN}/

Parameter Breakdown

Variable Required Description
WebhookID Yes Your webhooks API Key you got from the settings area of the webhooks service itself
Event Yes This is the Event Name you assigned to the Applet you created. You must at least pass in one of these. This is the event plan on triggering through the webhook.

Example

Send a IFTTT notification:

# Assuming our {WebhookID} is b1lUk7b9LpGakJARKBwRIZ
# Assuming our {Event} is sms_message
apprise ifttt:///b1lUk7b9LpGakJARKBwRIZ@sms_message
Clone this wiki locally