ronaks2309
10/08/2025, 1:41 AMronaks2309
10/08/2025, 1:42 AMVapi Support Bot
10/08/2025, 1:43 AMassistantOverrides property—especially with `variableValues`—may not be supported when creating a customer via the /customer endpoint, as most documentation examples use it in call or campaign creation contexts. As a next step, try creating the customer without assistantOverrides, then apply personalization at the call level:
json
{
"assistantId": "your-assistant-id",
"assistantOverrides": {
"variableValues": {
"Cur_State": "NY"
}
},
"customer": {
"id": "customer-id"
},
"phoneNumberId": "your-phone-id"
}
Apply dynamic variables when starting a call, not during customer creation. If you need to personalize at the customer level, please contact support@vapi.ai for confirmation on schema support or possible workarounds.
Sources:
- [Personalization with user information](https://docs.vapi.ai/assistants/personalization)
- [Dynamic variables documentation](https://docs.vapi.ai/assistants/dynamic-variables)Vapi Support Bot
10/08/2025, 1:43 AMCur_State is defined in your assistant's configuration as a dynamic variable? If not, the API may not recognize it, which can cause errors.
If you’re unsure, please check your assistant setup for a list of supported variables or let me know if you need guidance on where to find this in the dashboard.
Example variable definition in assistant config:
{{Cur_State}}
Let me know if Cur_State is present or if you need help checking this!
Source:
- [Dynamic Variables Documentation](https://docs.vapi.ai/assistants/dynamic-variables)Vercel
10/08/2025, 4:30 AMronaks2309
10/08/2025, 7:58 AM