Filter code is a powerful feature that enables IFTTT Pro+ users to customize their Applets with expanded functionality.
Filter code can now be generated and added directly from the Applet composer. See How to add filter code to learn more.
If you’re interested in exploring further, try out the code generators below. Note that some of the generated code on this page includes the placeholder Action.skip()
. If you use the code generator below, replace Action.skip()
with the specific skip code for your Applet's action(s). If you add filter code from the built-in generator inside the Applet composer, the skip code will be added automatically.
The skip code will end in .skip()
, and can be found in the Actions section to the right of the filter code editor when creating your Applet:
Generate filter code to run or skip actions between certain times
if the is between and
Filter code will be generated when you click the button below
Run or skip on a certain day
You can run or skip an action on certain days. Days are numbered from 0 (Sunday) to 6 (Saturday), and the filter code can be modified to include multiple days by using an OR operator.
only on a
Filter code will be generated when you click the button below
Check for a keyword
This code will check whether a given ingredient contains a particular string (case-sensitive).
Be sure to input an ingredient from a trigger or query used in your Applet, e.g. Email.sendIftttAnEmail.Body
A list of available ingredients can be found to the right of the filter code editor when creating your Applet.
if this string is found in this ingredient
Filter code will be generated when you click the button below