zuwinda
v1.0.0-beta1
Published
A Node.js SDK to make send SMS, Whatsapp, and other services into your Node.js applications using the Zuwinda REST API
Downloads
5
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);
}
})();