0.0.14 • Published 8 years ago

mambu-sdk v0.0.14

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

mambu-sdk

is a simple library for NodeJS, that wraps up the RESTfull API of the mambu banking core backend (mambu.com).

Note that this is a work in progress and still very incomplete. More APIs will come soon.

install

$ npm install mambu-sdk

use

// require the module
var mambu = require('mambu-sdk');

// Create a connector
var con = mambu.create({
    baseUrl:            "example.com/api",             
    isSSL:              true,           
    defaultCredentials: {
        user:       "admin-user",
        password:   "admin-pass"
    }
});

// call some API: GET /api/groups/{id}
var id = 101;
con.getById(null, mambu.Resources.GROUPS, id, function(err, data) {
    // do something with the received data
});

##license ISC

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

1.0.0

8 years ago