All docs
1 min read

Examples

High-priority lead → Slack

Trigger: submission.created. Steps:

  1. condition{ all: [{ field: 'plan', op: 'equals', value: 'enterprise' }] }
  2. action integration_driver{ provider: 'slack', url: 'https://hooks.slack.com/...' }
  3. action tag_submission{ tag: 'priority' }

Delayed follow-up email

Trigger: submission.created. Steps:

  1. delay{ seconds: 86400 }
  2. action send_email{ to: '{{ submission.email }}', subject: 'Following up', body: '...' }