Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zuwinda

zuwinda4ISC1.0.0-beta1

A Node.js SDK to make send SMS, Whatsapp, and other services into your Node.js applications using the Zuwinda REST API

zuwinda, api, rest

readme

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);
    }
})();