Has anyone managed to get Vonage working with the API Connector?
I’m struggling to send a simple SMS via their API. Should be pretty straightforward but no matter what I do, I get an error message (api key missing).
Has anyone managed to get Vonage working with the API Connector?
I’m struggling to send a simple SMS via their API. Should be pretty straightforward but no matter what I do, I get an error message (api key missing).
We many need a little more info.
Not done it, but can’t think why it wouldn’t work. The API connector can do a lot.
Sorry, this is the explanation on their docs on how to do a simple call:
curl -X “POST” “https://rest.nexmo.com/sms/json”
-d “from=Vonage APIs”
-d “text=Hello from Vonage SMS API”
-d “to=XXXXXXX”
-d “api_key=xxxxxxx”
-d “api_secret=xxxxxxxxx”
In the API Connector I have converted this:
This generates an error message.
If I try the cURL directly via an online tool, it works great.
Try adding a header “content-type” “application/json”
Thanks! That worked!