with NinjaOne and PhoneBurner?
Creates a new support ticket in NinjaOne. See the documentation
Update details for a specific device in NinjaOne. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ninjaone: {
type: "app",
app: "ninjaone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.ninjaone.$auth.region}.ninjarmm.com/v2/users`,
headers: {
Authorization: `Bearer ${this.ninjaone.$auth.oauth_access_token}`,
},
})
},
})
The PhoneBurner API provides programmatic access to call center functionality, allowing you to manage contacts, handle dial sessions, and interact with call logs. With Pipedream, you can automate workflows that respond to events in PhoneBurner or orchestrate PhoneBurner actions based on triggers from other apps. This melds the power of cloud telephony with broad integration possibilities, unlocking productivity gains and streamlined operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
phoneburner: {
type: "app",
app: "phoneburner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.phoneburner.com/rest/1/members/`,
headers: {
Authorization: `Bearer ${this.phoneburner.$auth.oauth_access_token}`,
},
})
},
})