@orgmanager/node-orgmanager-api

1.1.2 • Public • Published

Node OrgManager API

NPM

A Node.js client for the OrgManager API

Use

const orgmanager = require('node-orgmanager-api')
const token = 'my-token' //https://orgmanager.miguelpiedrafita.com/token
const client = new orgmanager(token)

//Join Org
client.joinOrg('org-id', 'username')

//Get User info
client.getUser()

//Get User Orgs
client.getOrgs()

//Get Org info
client.getOrg('org-id')

//Change Org Password
client.changeOrgPassword('org-id', 'new-password')

//Update Org
client.updateOrg('org-id')

//Delete Org
client.deleteOrg('org-id')

//Get Stats
client.getStats()

//Renenerate Token
client.regenerateToken()

//Renenerate Token and Set new Token
client.regenerateToken(true)

Proxy

const orgmanager = require('node-orgmanager-api')
const token = 'my-token' //https://orgmanager.miguelpiedrafita.com/token
const client = new orgmanager(token, 'proxy-url ~> orgmanager')

Installation

This is a Node.js module available through the npm registry. It can be installed using the npm command line tools.

$ npm install node-orgmanager-api

Dependencies

  • request: Simplified HTTP request client.
  • request-promise-native: The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.

License

MIT

/@orgmanager/node-orgmanager-api/

    Package Sidebar

    Install

    npm i @orgmanager/node-orgmanager-api

    Weekly Downloads

    4

    Version

    1.1.2

    License

    MIT

    Unpacked Size

    7.08 kB

    Total Files

    7

    Last publish

    Collaborators

    • m1guelpiedrafita
    • tiagodanin