Felix.Neutatz
09/11/2025, 11:55 AMVapi Support Bot
09/11/2025, 11:56 AMtransferCall, endCall, and dtmf), and you can request new features via their [feature request board](https://roadmap.vapi.ai/feature-requests) or [support channels](https://docs.vapi.ai/support).
Could you briefly describe the specific functionality you need from a "skip_turn" tool in your Vapi workflow? This will help us suggest a workaround or escalate your request to the product team.
Best regards,
Vapi Team
Sources:
- [Default Tools](https://docs.vapi.ai/tools/default-tools)
- [Support](https://docs.vapi.ai/support)Felix.Neutatz
09/11/2025, 3:39 PMChiranjeet Mishra
09/15/2025, 12:57 PMpython
from vapi import Vapi
client = Vapi(
token="YOUR_TOKEN",
)
client.tools.delete(
id="tool_id",
)
You can refer to the detailed [API reference](https://docs.vapi.ai/api-reference/tools/delete) for more information.Felix.Neutatz
09/23/2025, 3:51 PMChiranjeet Mishra
09/25/2025, 1:32 PMFelix.Neutatz
09/30/2025, 8:29 AMChiranjeet Mishra
10/02/2025, 5:54 AM{
"type": "function",
"function": {
"name": "wait_for_keypad_input",
"description": "Wait for keypad input for a specified duration",
"parameters": {
"type": "object",
"properties": {
"wait_seconds": {
"type": "number",
"description": "Number of seconds to wait"
},
"expected_key": {
"type": "string",
"description": "Expected keypad input"
}
},
"required": [
"wait_seconds",
"expected_key"
]
}
}
}
There is another method that may help, which is Server-Side Webhook Control. This requires configuring a server or similar system. What you do is implement server-side logic to control the conversation flow:
// In your webhook handler
app.post('/webhook', (req, res) => {
const { message } = req.body;
if (message.type === 'function-call' && message.functionCall.name === 'wait_for_keypad_input') {
// Implement waiting logic on server side
setTimeout(() => {
// Send response back to VAPI after wait period
res.json({
result: "Wait period completed, proceeding with call"
});
}, message.functionCall.parameters.wait_seconds * 1000);
}
});
If any of these help or you need other suggestions, feel free to reach outFelix.Neutatz
10/02/2025, 9:52 PMChiranjeet Mishra
10/06/2025, 6:55 PM