1.0.11 • Published 7 years ago

voodoo-sms-api-sdk v1.0.11

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

Voodoo SMS API Javascript SDK

Simple to use

Create you own Voodoo SMS account and try to fire up simple sendSMS call.

var VoodooApi = require('voodoo-sms-api-sdk');
var api = new VoodooApi('user', 'pass', 48);

api.call('sendSMS', 'from' , '123456789', 'test message')
    .then((result) => {
        // result
    })
    .catch((err) => {
        // error handling
    });

Methods

  • constructor
  • sendSMS
  • getSMS
  • getCredit
  • getDlrStatus
  • getDlr

constructor

Constructor. new VoodooApi(user, pass, defaultCountry)

sendSMS

Send SMS. call('sendSMS', from, to, msg)

getSMS

Get Incoming SMSs. call('getSMS', dateFrom, dateTo)

getCredit

Get Credit. call('getCredit')

getDlrStatus

Get status of Single Message. call('getDlrStatus', reference)

getDlr

Get Deliveries. call('getDlr', date)

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago