Customer number
# support
d
What dynamic field can I add to refer to the number lead is calling from. Like: I see that you calling from {{number}} when promoting in vapi.
v
Hi there! 👋 To reference the number a lead is calling from in Vapi, you should use the dynamic variable
{{customer.number}}
. This variable automatically displays the customer's phone number in E.164 format. So instead of:
Copy code
I see that you calling from {{number}} when promoting in vapi.
You should use:
Copy code
I see that you calling from {{customer.number}} when promoting in vapi.
This variable is automatically filled with the caller's number and doesn't need to be set manually. You can use it directly in your assistant's messages or prompts to personalize the conversation [based on the caller's information](https://docs.vapi.ai/assistants/dynamic-variables). When setting up your call request, the variable will be populated from the customer information in your API call payload. Source: - [Vapi Dynamic Variables Documentation](https://docs.vapi.ai/assistants/dynamic-variables)
k
@dripchatagency use variable
{{customer.number}}
to refer to the number lead is calling from.
Copy code
markdown
Let me know if you need any clarification on any part of this integration, or if you'd like more specific details about any aspect of the configuration.
d
Thank you