with WebinarJam and Autotask PSA?
The WebinarJam API enables the automation of webinar management tasks, allowing users to seamlessly integrate their webinar data with other systems and services. With this API, you can programmatically create and update webinars, register participants, send custom notifications, and more. Leveraging Pipedream's serverless integration platform, you can create workflows that react to WebinarJam events, process data in real-time, and interact with countless other apps to optimize your webinar operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinarjam: {
type: "app",
app: "webinarjam",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.webinarjam.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://api.webinarjam.com/webinarjam/webinars`,
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
autotask_psa: {
type: "app",
app: "autotask_psa",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.autotask_psa.$auth.url}V1.0/ClientPortalUsers/query`,
headers: {
"UserName": `${this.autotask_psa.$auth.username}`,
"Secret": `${this.autotask_psa.$auth.password}`,
"ApiIntegrationCode": `${this.autotask_psa.$auth.api_integration_code}`,
},
params: {
search: `{
"filter": [
{
"op": "gt",
"field": "id",
"value": "1"
}
]
}`,
},
})
},
})