vonage
# support
e
I am unable to find a Vonage option when using your Api documentation to create an outbound call. We need an app that makes an outbound call from a .csv file. I've attached the existing code (with api_keys masked, lmk if you need and I'll send) but it keeps asking for twilio credentials. Can you guide me on how we can get this code to work with vonage while still detecting voicemails? Thx. @Sahil https://cdn.discordapp.com/attachments/1269280768828510248/1269280769629491270/insurance.py?ex=66af7d55&is=66ae2bd5&hm=be38dcc248c887533c6dbf0f7b9544c81e58a2eabf030ce48ca48e550c241e79&
s
1. put customer phone number into customer property or key
Copy code
json
  "customer": {
    "numberE164CheckEnabled": false,
    "number": "string",
    "name": "string"
  }
2. import vonage number and use "phoneNumberId"
3 Views