Voice Self-Service for your growing business needs
When the caller sends a text message to your nimblevox Blast phone number, nimblevox Blast receives the message and sends the information to your url.
The SMS receive API is a callback initiated from nimblevox Blast to a URL you define in my.nimblevox.com. You define the URL by configuring the SMS Receive URL for the phone number.
URL: user defined
Params
message | Required | The text message that was sent. |
destination | Required | The phone number where message was sent to. |
source | Required | The phone number where the message comes from. |
Responses
2xx | OK | The message was received successfully |
Any return other than a valid response will result in the message being queued and retried later.
Example PHP
$message = $_REQUEST["message"]; $destination = $_REQUEST["destination"]; $source = $_REQUEST["source"]; // Do your magic echo "ok";
When the server receives this request it will check your number configuration.
Example CURL Command
curl --request POST -d "messageId=1234" -d "source={a number}" -d "destination={your number} -d "message={Your message}" "{your url}"