Skip to content

๐Ÿ’Œ A simple twilio sms client for Node.js

Notifications You must be signed in to change notification settings

CosmoRocket/node-twilio-sms

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

22 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Twilio SMS Client

A simple twilio sms client for Node.js

Routes

POST /sms

Content-Type: application/json

{
  "recipient" : "+61xxxxxxxxx",
  "message": "Hello, this is a message sent to one person!"
}

POST /smsCopilot

Content-Type: application/json

{
  "recipient" : "+61xxxxxxxxx",
  "message": "Hello, this is a message sent to one person!"
}

POST /sendGroupSMS

Content-Type: application/json

{
  "recipients" : ["+61xxxxxxxx1","+61xxxxxxxx2","+61xxxxxxxx3","+61xxxxxxxx4","+61xxxxxxxx5"],
  "message": "Hello, this is a group message"
}

POST /receiveSMS

Use this endpoint as a webhook and configure in: https://www.twilio.com/console/phone-numbers/incoming

  1. Choose a number
  2. Under Messaging, select Configure with Webhooks, TwiML Bins, Functions, Studio or Proxy
  3. Specify the public url in "A mesage comes in" text box. Select HTTP POST

Example console.log output:

{ ToCountry: 'AU',
  ToState: '',
  SmsMessageSid: 'SMdb07337513b4f2d7933eda58eaffd0d6',
  NumMedia: '0',
  ToCity: '',
  FromZip: '',
  SmsSid: 'SMdb07337513b4f2d7933eda58eaffd0d6',
  FromState: '',
  SmsStatus: 'received',
  FromCity: '',
  Body: 'Hi John',
  FromCountry: 'AU',
  To: '+61448032193',
  ToZip: '',
  NumSegments: '1',
  MessageSid: 'SMdb07337513b4f2d7933eda58eaffd0d6',
  AccountSid: 'AC22458b497113eec0a935a684af68ab28',
  From: '+61439204670',
  ApiVersion: '2010-04-01' }

References

Bulk SMS

Receiving Two-way SMS Messages

How to receive sms in Node.js with Twilio

About

๐Ÿ’Œ A simple twilio sms client for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%