1.0.5 • Published 5 years ago

ekko-nodejs v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

ekko-nodejs

Ekko Rest Api wrapper

Installation

npm install ekko-nodejs --save

Example

To create a user you would simply need to have something like this:

const EkkoSdk = require('ekko-nodejs');
const ekko = EkkoSdk('<SOME API TOKEN>');

const payload = {
    "user_id": string,
    "nickname": string,
    "image_url": string,
    "issue_access_token": boolean // (Optional)
};
ekko.users.create(payload)
    .then(function (response) {
        // do something with ekko response
        // {
        //     "user_id": string,
        //     "nickname": string,
        //     "image_url": string,
        //     "access_token": string
        // }
    });