1.0.4 • Published 4 years ago

jsingrid v1.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

jsingrid

jsingrid is as Node.js wrapper for communicating with the ingrid rest api.

Example

const jsingrid = require('jsingrid')

let url = "https://example.com/class/operation";
let body = JSON.stringify({});
let config = {
    headers: {
        "Authorization": "{YOUR_AUTH}"
    }
}

jsingrid.send(
    url,
    body,
    config)
    .then(function (data) {
        console.log("data", data)
    }).catch(function (error) {
        console.log("error", error)
    })
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago