Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.68 KB

File metadata and controls

44 lines (32 loc) · 1.68 KB
title description published date tags editor dateCreated
IFTTT
Trigger applets with Sub-Actions
true
2023-03-16 12:53:44 UTC
markdown
2022-12-08 08:55:20 UTC

Overview

The IFTTT integration allows you to execute an action in Streamer.bot from any IFTTT applet.

You can also send outgoing triggers from Streamer.bot to IFTTT using the included IFTTT sub-actions

The documentation below outlines the actions available to your applets in IFTTT.

Execute Action

The Execute Action IFTTT action allows you to execute any action in your Streamer.bot instance along with a configurable text field.

Variables

Name Description
iftttText The contents of the Text field from your IFTTT applet. This can include any ingredients from other IFTTT supported services in your applet.

Execute Action (JSON)

The Execute Action (JSON) IFTTT action allows you to execute any action in your Streamer.bot instance with a JSON payload that is automatically parsed into variables for usage in your Streamer.bot sub-actions.

This is extremely useful for connecting generic webhooks with Streamer.bot through the IFTTT Webhooks Integration.

Variables

All top level keys in the JSON payload passed to this action will be available as variables in Streamer.bot

For example, the following JSON payload...

{ "test": "some value", "test2": "some other value" }

...will be transformed into the variables test and test2, which will be populated with their respective values.