Nico
08/23/2025, 7:48 PMChiranjeet Mishra
08/23/2025, 7:48 PMChiranjeet Mishra
08/27/2025, 4:30 AMNico
09/04/2025, 12:47 AMChiranjeet Mishra
09/06/2025, 12:28 AMChiranjeet Mishra
09/06/2025, 1:25 AMen for the language. This is main reason your assistant is not resulting in a transfer, or even a transcription. Here is the transcriber object from the logs:
"transcriber": {
"model": "nova-2",
"language": "en",
"provider": "deepgram"
},
To resolve this issue, you can use the API /squad endpoint to PATCH your squad id and all of your assistants to override the language to es instead. We have partially built out the request for you and all it needs is your VAPI private API key as the bearer token to complete this request. You can either build this request using our documentation page, run this cURL request on an API application such as postman, or you can reach out to us and we will assist you with sending this request. Please let us know how you would like to proceed. We will drop the cURL request below:
curl -X PATCH https://api.vapi.ai/squad/013a1578-a6c1-4c83-bf35-30fd3dbdcc57 \
-H "Authorization: Bearer " \
-H "Content-Type: application/json" \
-d '{
"members": [
{
"assistantId": "14b19f1e-0e76-4409-bb64-2720846017c0"
},
{
"assistantId": "a45810c0-0804-4b7f-90e8-ecc2ed803166"
},
{
"assistantId": "220ed19e-c0ff-456a-8af3-71742a9f472b"
},
{
"assistantId": "14b19f1e-0e76-4409-bb64-2720846017c0"
}
],
"membersOverrides": {
"transcriber": {
"provider": "deepgram",
"language": "es"
}
}
}'