0.0.10 • Published 7 years ago

mailwizz-sdk v0.0.10

Weekly downloads
23
License
ISC
Repository
-
Last release
7 years ago

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

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago