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

addAccount #

Adds a Twilio account. This account can then be used to send SMS.


Query Syntax #

HTTP #

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

Other protocols #

Copied to clipboard!
{
  "controller": "hermes/twilio",
  "action": "addAccount",
  "account": "<account name>",
  "body": {
    "accountSid": "<twilio account sid>",
    "authToken": "<twilio auth token>",
    "defaultSender": "<default sender phone>"
  }
}

Kourou #

Copied to clipboard!
kourou hermes/twilio:addAccount -a account=<account name> --body '{
  "accountSid": "<twilio account sid>",
  "authToken": "<twilio auth token>",
  "defaultSender": "<default sender phone>"
}'