Files
m3o-go/curl/sms/send/sendSms.sh
2021-10-29 10:32:59 +00:00

8 lines
197 B
Bash
Executable File

curl "https://api.m3o.com/v1/sms/Send" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"from": "Alice",
"message": "Hi there!",
"to": "+447681129"
}'