Gabriel C
04/30/2025, 9:16 PMVapi Support Bot
04/30/2025, 9:17 PMassistantOverrides is incorrectly nested inside the customer object. It should be at the top level of your request. Here's the correct structure:
json
{
"assistantId": "43a7f214-9351-4a17-a0cf-15d47ae48323",
"phoneNumberId": "735ca5d5-773-46ab-b823-fb342a2895fc",
"assistantOverrides": {
"variableValues": {
"name": "John",
"appointmentTime": "3 PM",
"timezone": "PST"
}
},
"customer": {
"number": "+1234567890"
}
}
According to [Vapi's documentation](https://docs.vapi.ai/assistants/dynamic-variables), dynamic variables must be passed in the assistantOverrides object at the top level.
Source:
- [Dynamic Variables Documentation](https://docs.vapi.ai/assistants/dynamic-variables)Chiranjeet Mishra
05/01/2025, 8:33 AMGabriel C
05/01/2025, 12:30 PMVapi Support Bot
05/01/2025, 12:32 PMcustomer property inside your assistantOverrides object. Make sure your request looks exactly like this:
json
{
"assistantId": "43a7f214-9351-4a17-a0cf-15d47ae48323",
"phoneNumberId": "735ca5d5-773-46ab-b823-fb342a2895fc",
"assistantOverrides": {
"variableValues": {
"name": "John",
"appointmentTime": "3 PM",
"timezone": "PST"
}
},
"customer": {
"number": "+1234567890"
}
}
Double-check that you've removed any metadata or other properties containing customer from within assistantOverrides.
Source:
- [Discord conversation about assistantOverrides structure](https://discord.com/channels/1211482211119796234/1344652901791961211)Gabriel C
05/01/2025, 12:48 PMVapi Support Bot
05/01/2025, 12:50 PMmetadata property from your customer object. The correct structure should be:
json
{
"assistantId": "43a7f214-9351-4a17-a0cf-15d47ae48323",
"phoneNumberId": "735ca5d5-773-46ab-b823-fb342a2895fc",
"assistantOverrides": {
"variableValues": {
"name": "John",
"appointmentTime": "3 PM",
"timezone": "PST"
}
},
"customer": {
"number": "+1234567890"
}
}
The customer object should only contain the number property in this case.
Source:
- [Discord conversation about assistantOverrides structure](https://discord.com/channels/1211482211119796234/1344652901791961211)Vapi Support Bot
05/01/2025, 2:15 PMKings_big💫
05/01/2025, 2:30 PM