Pick one outcome
A good first workflow does exactly one thing — for example, respond to a new inbound lead within 60 seconds. Resist building a branching monster on day one; small workflows are easier to debug and easier to hand over.
Choose the trigger
Common triggers are form submitted, inbound call missed, pipeline stage changed, appointment booked and tag added. Add trigger filters so the workflow only fires for the right source or pipeline instead of every contact in the account.
Sequence the actions
Order matters. A typical new-lead flow sends an SMS immediately, waits five minutes, sends an email with a booking link, creates a task for the assigned rep, then waits a day and follows up if no appointment exists.
- Use wait steps with business-hours settings so texts do not land at 3am.
- Add an if/else branch on 'appointment booked' to exit contacts who already converted.
- End every branch explicitly so contacts never sit in limbo.
Test before publishing
Run the workflow against a test contact you control and watch the execution log step by step. Only publish once the log shows every step firing in the order and timing you expect.
