Jeremy L
11/06/2025, 10:51 AMChiranjeet Mishra
11/08/2025, 7:30 AMcurl -X POST https://api.vapi.ai/call \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"squadId": "your-squad-id-here",
"assistantOverrides": {
"variableValues": {
"customerName": "John Doe",
"accountNumber": "12345",
"customVariable": "value"
}
},
"phoneNumberId": "your-phone-number-id",
"customer": {
"number": "+11234567890"
}
}'Jeremy L
11/13/2025, 2:08 PMJeremy L
11/13/2025, 2:12 PMassistantOverrides with a persistent squadId , is it safe to say that the variableValues would get applied to all the assistants that are part of the squad?
And if they do, as part of the assistantTransfer, if we were to capture variable overrides in the assistantTransfer, is it safe to assume they would then override into the assistant compared to what was provided in the initial /call APIChiranjeet Mishra
11/17/2025, 3:47 PM