There was an error while loading. Please reload this page.
This is a Node.js wrapper for the MX Atrium API. It provides helper methods for each of the endpoints.
npm install mx-atrium --save
const atrium = require('mx-atrium'); const atriumApi = new atrium.AtriumClient(apiKey, clientId, url); atriumApi.listUsers() .then(response => { console.log(response.users); }); const user = { first_name: 'New' last_name: 'User' email: 'new@user.com' }; atriumApi.createUser(user) .then(response => { console.log(response.user); });