UNPKG

opsgenie-sdk-revived

Version:

Reviving the opsgenie-sdk, Giving Node.js access to the OpsGenie Web API

13 lines (10 loc) 228 B
const opsgenie = require('../..'); require('../configure'); const list_params = {}; opsgenie.scheduleV2.list(list_params, (error, users) => { if (error) { console.error(error); } else { console.log(users); } });