Skip to main content

Troubleshooting

This page covers common issues encountered when building and running AgentVerse orchestrations, along with steps to diagnose and resolve them.

General Debugging Workflow

  1. Open the Orchestration Runs panel and find the failed run.
  2. Click the run to open the Run Detail view.
  3. Inspect the Node Execution Trace — identify the first node with an Error status.
  4. Expand the node row to view the full error message and the input data it received.
  5. Use the information below to resolve the specific error type.

Common Errors

Orchestration Does Not Trigger

Symptom: No runs appear in the Orchestration Runs panel when the expected event occurs.

Node Failed: Credential Error

Symptom: A node fails with 401 Unauthorized, 403 Forbidden, or Invalid API key.

Node Failed: Template Resolution Error

Symptom: A node fails with Cannot read property of undefined or produces empty/unexpected values. Cause: A {{ }} expression references a field that does not exist in the upstream node’s output. Resolution:
  1. Open the failed run and expand the upstream node to view its actual output.
  2. Verify the field names match exactly (case-sensitive).
  3. Use dot notation for nested fields: {{ webhook.body.data.userId }}
  4. Use a fallback value for optional fields: {{ webhook.body.userId || 'unknown' }}

Node Failed: HTTP Request Error

Symptom: HTTP Request node fails with a 4xx or 5xx status code.

Orchestration Run Times Out

Symptom: A run stays in Running state for a long time and then fails with a timeout error.

Infinite Loop

Symptom: A For Loop runs indefinitely and the run never completes.

Human in the Loop — Approval Message Not Received

Symptom: The Slack or email approval message is never delivered.

SubVerse Agent Call Did Not Start

Symptom: A SubVerse Agents or SubVerse AI node reports a failure to initiate a call.

Getting Help

If you cannot resolve an issue using this guide:
  1. Collect the Run ID and error message from the Run Detail view.
  2. Check the Node Execution Trace and note which node failed and what input it received.
  3. Contact SubVerse AI support with this information.

  • Monitoring — View run history, metrics, and alerts
  • Node Types — Reference for all node parameters and behavior