Skip to content

Workflow Debugging & Testing

Foundry provides tools to debug and test Fusion SOAR workflows during development.

  1. In the workflow builder, click Test or Execute.
  2. Provide any required trigger inputs.
  3. The workflow executes and displays the result of each action step.

For on-demand workflows, you can supply test input directly. For event-driven workflows, you can simulate events using test data.

After a workflow executes, review the execution log:

  • Each action step shows its input, output, and status (success/failure).
  • Conditional branches show which path was taken and why.
  • Loop iterations show each iteration’s input and output.
  • Error details include the HTTP status code, error message, and the full request/response payload.
IssueCauseResolution
Action returns unexpected empty resultsSchema validation is filtering out fieldsTry schemaless mode
Function timeoutFunction exceeds 60-second limitOptimize the function or break into smaller steps
API integration returns 401Credentials expired or incorrectReconfigure the integration’s authentication
Loop doesn’t terminateMissing or incorrect termination conditionAdd an explicit loop counter or check the condition logic
Variable not foundReferencing a field from a previous action incorrectlyUse the data panel to find the correct field path

The Data panel in the workflow builder shows all available data from previous steps. Use this to find the correct field paths for conditions and action inputs.

Click on any completed action step to see its output in the data panel. Field paths follow the format:

data['actionName.fieldName']