Troubleshooting
This page covers common issues encountered when building and running AgentVerse orchestrations, along with steps to diagnose and resolve them.General Debugging Workflow
- Open the Orchestration Runs panel and find the failed run.
- Click the run to open the Run Detail view.
- Inspect the Node Execution Trace — identify the first node with an
Errorstatus. - Expand the node row to view the full error message and the input data it received.
- 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 with401 Unauthorized, 403 Forbidden, or Invalid API key.
Node Failed: Template Resolution Error
Symptom: A node fails withCannot 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:
- Open the failed run and expand the upstream node to view its actual output.
- Verify the field names match exactly (case-sensitive).
- Use dot notation for nested fields:
{{ webhook.body.data.userId }} - 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 inRunning 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:- Collect the Run ID and error message from the Run Detail view.
- Check the Node Execution Trace and note which node failed and what input it received.
- Contact SubVerse AI support with this information.
Related Pages
- Monitoring — View run history, metrics, and alerts
- Node Types — Reference for all node parameters and behavior