micro-sms

Microservice for sending sms

API

All calls must supply a valid jwt

POST /sms

Send sms to one or multiple receivers. In order to send unicode characters (emojies), operation has to be 9, otherwise this shouldn't be defined.

NB! All receiver numbers should be prefixed with country code (e.g. 47987654321) without plus/leading zeroes.

{
  "sender": "<name-or-number>",
  "receivers": ["number1", "number2"],
  "message": "<message>",
  "operation": 9 // Optional
}
$ curl -v -H "Authorization: Bearer <INSERT TOKEN>" -d '{ "sender": "A Book", "receivers": ["4712345678", "4787654321"], "message": "Do you read me?" }' https://sms.service.io/sms

License

MIT