0.0.14 • Published 10 years ago

mambu-sdk v0.0.14

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

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

1.0.0

10 years ago