in transferCall, do i need to specify parameters ? Is it essential ?
Original message was deleted
destination parameter—is essential for transferCall to work. Without it, the call will not be forwarded. Here’s a minimal example:⤵️ Mention @Vapi Support Bot for follow-ups 🐥

parameters config ?

destination parameter in your transferCall function, even if calls appear to work without it. This ensures predictable behavior, especially as your configuration grows. Example:destination parameter in your transferCall tool configuration. destinationdestinationdestinationparameters"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+1234567890"], // Replace with your number
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}{
"function": {
"name": "transferCall",
"parameters": {
"destination": "+15308891500"
}
}
}{
"function": {
"name": "transferCall",
"parameters": {
"destination": "+15308891500"
}
}
}