Zach
02/28/2025, 9:54 PMVapi Support Bot
02/28/2025, 9:55 PMHandoffStep
, which allows you to move to the next step in a linear fashion without returning to previous steps. Here's a quick overview of how to set it up:
1. **Configuration**: You need to define the handoff step in your workflow. Here's a sample configuration snippet:
```json
{
"type": "handoff",
"name": "tool",
"block": {
"name": "tool",
"tool": {
"type": "function",
"server": {
"url": "https://hooks.zapier.com/hooks/catch/"
},
"function": {
"name": "tool",
"parameters": {
"type": "object",
"required": ["info", "name", "company", "accountNumber"],
"properties": {
"info": {"type": "string"},
"name": {"type": "string"},
"company": {"type": "string"},
"accountNumber": {"type": "string"}
}
}
}
},
"type": "tool-call",
"inputSchema": {
"type": "object",
"required": ["info", "name", "company", "accountNumber"],
"properties": {
"info": {"type": "string"},
"name": {"type": "string"},
"company": {"type": "string"},
"accountNumber": {"type": "string"}
}
},
"outputSchema": {
"type": "object",
"properties": {}
}
},
"input": {
"info": "{{conversation_1.output.Summary}}",
"name": "{{start.output.CallerName}}",
"company": "{{start.output.OrganizationName}}",
"accountNumber": "{{conversation_5.output.AccountNumber}}"
},Vapi Support Bot
02/28/2025, 9:57 PMVapi Support Bot
02/28/2025, 9:59 PMVapi Support Bot
02/28/2025, 9:59 PMZach
02/28/2025, 10:00 PMMason | Building KOI
02/28/2025, 10:05 PMMason | Building KOI
02/28/2025, 10:05 PMMason | Building KOI
02/28/2025, 10:06 PMShubham Bajaj
03/03/2025, 9:33 AM