Gain visibility, control and automation with an all-in-one Workflow Orchestration Software
Emit new event when a comment is posted to a job. See the documentation
The Qntrl API offers a powerful way to manage and automate your organization's workflows and processes directly within Pipedream. With this API, you can create, update, retrieve, and manage cards, orchestrate workflows, and synchronize data across different systems. Harness the power of Pipedream to integrate Qntrl with various apps and services, enabling seamless data flow and enhanced productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qntrl: {
type: "app",
app: "qntrl",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://coreapi.qntrl.com/blueprint/api/user/myinfo`,
headers: {
Authorization: `Bearer ${this.qntrl.$auth.oauth_access_token}`,
},
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})