Files
services/examples/sms/send/curl/sendSms.sh

8 lines
198 B
Bash
Executable File

curl "http://localhost:8080/sms/Send" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $MICRO_API_TOKEN" \
-d '{
"from": "Alice",
"message": "Hi there!",
"to": "+447681129"
}'