Workflow Debugging
Debug workflow execution issues
Workflow Debugging
Viewing Run Details
Get detailed information about a workflow run:
The response includes:
- Overall run status
- Each step's status, input, and output
- Error messages for failed steps
- Timing information
Common Step Failures
Template Variable Errors
Error: Cannot read property 'x' of undefined
Cause: Referencing a field that doesn't exist.
Solution: Check the input data structure and use optional chaining:
Action Errors
Error: Integration error: Rate limited
Cause: The external API rate limited the request.
Solution: Add retry configuration to the step:
Condition Errors
Error: Invalid condition expression
Cause: Malformed condition syntax.
Solution: Verify operator and value types match.
Testing Workflows
Test with Mock Input
Dry Run Mode
Execute without side effects:
Logging
Enable verbose logging for debugging: