Daniel m
Daniel m

Reputation: 11

I want to send multiple sms with nexmo cURL

curl -X "POST" "https://rest.nexmo.com/sms/json" \
 -d "from=testsms" \
 -d "text=hello" \
 -d "to=44xxxxxxxxxx” \
 -d "api_key=xxxxxxxx" \
 -d "api_secret=xxxxxxxxxxxxxxxx"

I want to send multiple SMS so basically bulk SMS but it does not allow more than 1 number in the -d "to=44xxxxxxxxxx” \ bit so can someone please help me fix this. I will place a few links to see what is happening

https://help.nexmo.com/hc/en-us/articles/205065817-How-to-Send-Multiple-SMS-in-a-Single-API-Request

please use that link to guide the answer. Thank you very much

Upvotes: 0

Views: 434

Answers (1)

Lorna Mitchell
Lorna Mitchell

Reputation: 1986

Each API call can only send one SMS. The article describes how to keep the connection open between sends but the API is also rate-limited so this may not help. This isn't the answer you were looking for but you will need to handle a queue or something yourself, and trickle the messages into the API one-by-one.

Upvotes: 2

Related Questions