with NinjaOne and OnePageCRM?
Creates a new support ticket in NinjaOne. See the documentation
Deletes an existing contact from OnePageCRM. See the documentation
Update details for a specific device in NinjaOne. See the documentation
Updates an existing deal's details in OnePageCRM. 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 OnePageCRM API enables interaction with your OnePageCRM account, automating your contact and sales management. With it, you can create, update, and delete contacts, deals, and notes, or trigger actions based on sales activities. When combined with Pipedream's serverless platform, this API allows you to connect OnePageCRM with hundreds of other apps to streamline your sales process, enhance lead generation, and improve follow-ups.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
onepagecrm: {
type: "app",
app: "onepagecrm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.onepagecrm.com/api/v3/contacts.json`,
auth: {
username: `${this.onepagecrm.$auth.user_id}`,
password: `${this.onepagecrm.$auth.api_key}`,
},
})
},
})