Official Plugins (Kuzzle v2.x)
Hermes Messenger v0.x
2

sendSms #

Sends an SMS using one of the registered Twilio account.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/hermes/twilio/sms
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "hermes/twilio",
  "action": "sendSms",
  "account": "<account name>",
  "body": {
    "from": "<twilio phone number>", // optional
    "to": "<recipient phone number>",
    "text": "<sms content>"
  }
}

Kourou #

Copied to clipboard!
kourou hermes/twilio:sendSms -a account=<account name> --body '{
  "from": "<twilio phone number>",
  "to": "<recipient phone number>",
  "text": "<sms content>"
}'