📳SMS

WIP

SENDUNE integrates with your AWS SNS account to send SMS (Text Messages). You can send SMS manually, via the API, or via automated rules (workflows).

Manual SMS

To send SMS manually, go to the 'SMS > Manual' tab, select one or more contacts and click "Send" button at the top. You will be shown a popup where you can compose your SMS. See video for demo.

NOTEs:

  • Sender ID is optional. Enter only if you have one.

  • Origination number is required only if you are sending to USA mobile numbers.

API SMS

Use this to send Transactional SMS. See the request/response details below.

URL: https://api.sendune.com/send-sms
{
      "method": "POST",
      "url": "https://api.sendune.com/send-sms",
      "headers": {"template-key": "**************************4lVm"},
      "body": {
          "sender_id": "ABCDEF",
          "origination_number": "+449876543212",
          "mobile": "+449876543210",
          "message": "Hello John."
       }
}

IMPORTANT:

  • All API calls MUST include the Template Key. Template Key is unique to Transactional SMS and Marketing SMS.

  • 'Origination Number' is required only when sending to USA mobile numbers.

  • All mobile numbers MUST be in E.164 format.

Workflow SMS

See 'Automation' section for more details.

Last updated