View workflow runs
Every workflow execution creates a run record:1
Open the workflow
Navigate to Automations → Workflows and select your workflow.
2
Click Runs
Click the Runs tab or button to see execution history.
3
Select a run
Click on a specific run to see details.
4
Review execution
See which actions ran, what data was used, and any errors.
Run statuses
| Status | Meaning |
|---|---|
| Completed | Workflow finished successfully |
| Failed | An error stopped the workflow |
| Running | Workflow is currently executing |
| Waiting | Workflow is paused (e.g., by a Wait action) |
Common issues
Workflow not triggering
Symptoms: Workflow never runs when expected. Check:- Is it published? Draft workflows don’t run
- Are conditions too strict? Review trigger conditions
- Is the trigger correct? Verify the trigger type matches your intent
- Is the event firing? Confirm the triggering action is happening
- Publish the workflow if it’s a draft
- Simplify or remove trigger conditions
- Test with a different trigger
Wrong data in actions
Symptoms: Tasks have wrong names, emails go to wrong people. Check:- Are variables correct? Verify variable names
- Is the right record in scope? Check what the trigger provides
- Are variables resolving? Look for literal variable text that wasn’t replaced
- Correct variable names (e.g.,
household.namenot justname) - Use the variable picker instead of typing manually
- Verify the trigger provides the data you need
Action fails
Symptoms: Run shows failed status, action has error. Check:- What’s the error message? Click on the failed action
- Is required data missing? Some actions need specific inputs
- Are permissions correct? Some actions require admin access
| Error | Cause | Fix |
|---|---|---|
| ”Record not found” | Referenced record doesn’t exist | Check if record was deleted |
| ”Required field missing” | Action missing required input | Add the required value |
| ”Permission denied” | User lacks permission | Run as user with access |
| ”Rate limit exceeded” | Too many actions too fast | Workflow will retry automatically |
Branch not taking expected path
Symptoms: Workflow follows wrong branch. Check:- Review conditions — Are they evaluating as expected?
- Check data values — What values does the record actually have?
- Logic operators — Is AND/OR logic correct?
- Add a notification at the start of each branch to see which fires
- Simplify to one condition at a time
- Check the run details to see condition evaluation
Wait action stuck
Symptoms: Workflow never continues after Wait. Check:- Is the wait duration reasonable? Long waits are expected
- Did the workflow fail elsewhere? Check for hidden errors
- Was the workflow republished? Some changes restart waits
- Check the run to see remaining wait time
- If stuck, cancel and rerun manually
Debugging techniques
Add notifications
Insert notification actions to trace execution:Test with specific records
Use a test client to verify behavior:- Create a test client with known data
- Trigger the workflow on that client
- Verify results match expectations
- Adjust and repeat
Check run data
In the run details, you can see:- Trigger data — What triggered the workflow
- Action inputs — What each action received
- Action outputs — What each action produced
- Errors — Any error messages
Simplify the workflow
If a complex workflow fails:- Create a copy of the workflow
- Remove actions until it works
- Add actions back one at a time
- Identify which action causes the issue
Error recovery
Retry failed runs
Some failures are temporary. To retry:1
Find the failed run
Navigate to the workflow and open Runs.
2
Select the run
Click on the failed run.
3
Retry
Click Retry to re-execute the workflow.
Manual intervention
If a workflow fails mid-execution:- Check what actions completed successfully
- Manually perform any skipped actions
- Fix the workflow to prevent future failures
- Consider re-running on affected records
Rollback changes
If a workflow made unwanted changes:- Identify what the workflow did (check run details)
- Manually undo changes (delete tasks, remove tags, etc.)
- Fix the workflow before re-enabling
Preventive measures
Test before publishing
- Save as draft first
- Test on a single record
- Verify results are correct
- Then publish
Start simple
- Begin with 1-2 actions
- Verify they work
- Add complexity gradually
- Test after each addition
Monitor regularly
- Check runs periodically for failures
- Set up notifications for workflow errors
- Review workflows quarterly for relevance
Document workflows
Add descriptions explaining:- What the workflow does
- Why it exists
- What triggers it
- Expected outcomes
Getting help
If you can’t resolve an issue:- Check the run details — Capture error messages
- Document the problem — What you expected vs what happened
- Contact support — Provide workflow name and run ID