AutomationsManager

Description#

This components allows end user to list, create and update his automations.

Import#

import { AutomationsManager } from "@rollouthq/connect-react"

Usage#

Here's a basic usage example:

<AutomationsManager />

Filtering#

Filtering automations is possible by specifying a predicate via the optional filter function property.

The example below will filter automations whose trigger.inputParams.form_id is 123.

<AutomationsManager
filter={(automation) => automation.trigger.inputParams.form_id === "123"}
/>