customer.phone not loading in workflow
# support
v
I can't seem to get {{customer.phone}} to load the customers phone number. im trying to send the phone number to MAke using an API request.
v
Based on the information I found, you should use
customer.number
instead of
customer.phone
in your Vapi workflow. The correct variable to access the customer's phone number is:
Copy code
{{customer.number}}
When setting up your API request to Make, ensure you're using this correct variable name in your request body. This is a common issue when trying to pass phone numbers from Vapi to external services. Sources: - [Vapi Documentation](https://docs.vapi.ai/squads-example) - [Discord Discussion](https://discord.com/channels/1211482211119796234/1341078918945439775) - [Discord Discussion](https://discord.com/channels/1211482211119796234/1338961731367604284)
k
Ensure
{{customer.phone}}
is correctly placed in the API request, verify the phone number is available in the context, and test the workflow to ensure the dynamic variable is properly populated.
2 Views