aqsafulara
11/11/2025, 6:58 PMAdrian
11/12/2025, 9:24 AMAdrian
11/12/2025, 9:25 AMaqsafulara
11/12/2025, 2:27 PMRamik
11/12/2025, 7:53 PM{{customer.number}} and any other property by using {{customer.propertyName}}. You can personalize messages by configuring your server to recognize incoming calls and respond with customer data. Here's a quick example of how you might set this up:
1. **Identify the Caller**: Use the calling number to look up customer information in your database.
2. **Respond to Vapi**: Return the relevant customer data in the required format.
For instance, if you want to include the customer name and number in a greeting, you'd configure:
json
{
"assistantId": "your-assistant-id",
"assistantOverrides": {
"variableValues": {
"customerName": "John Doe",
"customerNumber": "+1234567890"
}
}
}
Make sure your server is set up to respond to Vapi's requests with this kind of data.
For more details, you can refer to the [Personalization with user information documentation](https://docs.vapi.ai/assistants/personalization).aqsafulara
11/13/2025, 6:15 PMRamik
11/18/2025, 5:25 AM