LLSR API - SMS API Specification and Examples
Note that the methods in this API require authentication to use them. Visit the Authentication API for more information.
/sms/send
Reading
You can't read using the SMS API.
Publishing
The following example shows how to send an SMS using the /sms/send endpoint:
POST /sms/send HTTP/1.1
Host: api.skilouise.com
number=1234567890&message=Test%20SMS%20Message
If successful, the following JSON-encoded result would be generated:
{
"number":"1234567890",
"sent":"1",
}
Error:
{
"error":{
"message":"Failed to send SMS message"
}
}
Updating
You can't update using the SMS API.
Deleting
You can't delete using the SMS API.
HTTP Status Codes
The scanning API uses the following standard HTTP status codes:
200: OK
400: Bad Request
401: Unauthorized
503: Service Unavailable