1.0.0-beta1 • Published 3 years ago

zuwinda v1.0.0-beta1

Weekly downloads
14
License
ISC
Repository
github
Last release
3 years ago

zuwinda-node

Documentation

The documentation for the Zuwinda API can be found here.

Sample Usage

Check out these code examples in JavaScript to get up and running quickly.

const Zuwinda = require('zuwinda');
const client = new Zuwinda('Your token');

Example

const Zuwinda = require('zuwinda');
const client = new Zuwinda('Your token');

(async() => {
 try {
       let response = await client.sms.send({
           to: '08151xxxxx',
           content: 'Hello world!!'
       });
       console.log(response);
    } catch (error) {
       console.log(error);
    }
})();
1.0.0-beta1

3 years ago

1.0.0-beta0

3 years ago

1.0.0

3 years ago