11 lines
258 B
Markdown
11 lines
258 B
Markdown
|
# sendsms
|
||
|
|
||
|
This is a very small web API to send SMS using SMSTools 3.
|
||
|
Just use json POST requests.
|
||
|
|
||
|
Exemple with curl:
|
||
|
|
||
|
```
|
||
|
curl -i -H "Content-Type: application/json" -X POST -d '{"phone":"33612345678","text":"Do a barrel roll"}' http://localhost:5000/
|
||
|
```
|