0.0.14 • Published 9 years ago

mambu-sdk v0.0.14

Weekly downloads
-
License
ISC
Repository
-
Last release
9 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

9 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

1.0.0

9 years ago