Skip to content

ntlzz93/node-mailwizz-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

We are still developing this SDK.

To to know which API is available and params, go to api directory.

This SDK are using native Promise instead of Callback, so you can async/await as you want

How to use

Example:

const mailwizzSdk = require('node-mailwizz-sdk');

const config = {
    publicKey: 'publicKey',
    secret: 'secretKey',
    baseUrl: 'yourMailwizzApiUrl'
};

const lists = new mailwizzSdk.Lists(config);

lists.getLists()
    .then(function(result) {
        //TODO: do what you want
    })
    .catch(function(err) {
        //handle error here
    });

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published