IFTTT


Stuff You Need to Know

Sends a request to IFTTT Maker Webhooks.

How to Configure

Component-specific settings:
  • Event (field) - This is the name of the event you want to trigger in IFTTT
  • Key (field) - This is the API key for your account in IFTTT
  • Body (field) - This is data that you want to send to the IFTTT webhook. It must be in JSON format, like the example below.
{    
    event: 'eventname',    
    key: 'flgjhflghsfjhoi',    
    body:
        {
            value1: 'string',
            value2: 'string',
            value3: 'string'   
        }
    }
}

// alternatively without event and key

next({ 
    value1: 'string', 
    value2: 'string', 
    value3: 'string'
});


You can also send incoming data to the IFTTT Hook Request that contains the required fields, Event and Key, and optionally, Body. If the incoming data has Event and Key, then the fields in the Settings will be ignored.

Standard settings:

Click here to view information on standard settings.


Want to Know More?

Check out the IFTTT FAQs here!