SubVerse Agents
The SubVerse Agents node executes a SubVerse AI agent on a specific communication channel — voice, WhatsApp, email, or chat. It initiates an agent conversation and can optionally wait for the conversation to complete before passing results downstream.
Use Cases
- Initiate an outbound voice call handled by a SubVerse AI agent
- Send a WhatsApp message and have an AI agent conduct the conversation
- Launch an AI agent over email to gather information from a contact
- Embed an AI chat session in an orchestration and use the outcome downstream
Node Reference
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Agent Channel | Select | Yes | The communication channel: Voice, WhatsApp, Email, or Chat |
| Agent | Select | Yes | The SubVerse AI agent to execute (select from list) |
| Agent Version | String | No | The agent version to use: default, draft, or a specific version (e.g. v1) |
| Wait for Completion | Boolean | No | If enabled, the orchestration pauses until the agent conversation finishes |
| Customer Metadata | Key-Value | No | Custom key-value pairs passed to the agent. Reference them in agent prompts using {{key}} syntax. |
Channel-Specific Parameters
Voice
| Parameter | Type | Required | Description |
|---|---|---|---|
| Customer Phone Number | String | Yes | The phone number to call (E.164 format, e.g. +912298765432) |
| Bot Phone Number | Select | No | The SubVerse AI outbound caller number — leave empty to use the default |
| Parameter | Type | Required | Description |
|---|---|---|---|
| Customer Phone Number | String | Yes | The WhatsApp number to message (E.164 format) |
| Bot Phone Number | Select | No | The SubVerse AI WhatsApp sender number — leave empty to use the default |
| Parameter | Type | Required | Description |
|---|---|---|---|
| Customer Email | String | Yes | The recipient email address |
Chat
| Parameter | Type | Required | Description |
|---|---|---|---|
| Session ID | String | No | Optional session identifier for continuing an existing chat |
| Initial Message | String | No | The first message to send to the agent |
Customer Metadata
Provide custom key-value pairs that the agent can reference during the conversation using{{key}} in prompts:
| Example Key | Example Value | Description |
|---|---|---|
customerName | John Doe | Customer’s full name |
orderId | ORD-12345 | Relevant order reference |
language | en | Preferred language for the conversation |
Wait for Completion
When Wait for Completion is enabled:- The orchestration run pauses while the SubVerse AI agent handles the conversation.
- Once the agent marks the conversation as complete, execution resumes.
- The full conversation outcome (transcript, status, extracted data) is available downstream.
- The node starts the agent conversation and immediately moves to the next node.
- The conversation happens asynchronously — the SubVerse AI Trigger can be used to react to the completion in a separate orchestration when it finishes.
Output Data
When the agent conversation completes:Related Nodes
- SubVerse AI Trigger — React to a completed SubVerse AI call in a separate orchestration
- Conditions — Branch based on the agent’s outcome or extracted intent