Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a new activity or task within Zixflow. See the documentation
Deletes an existing activity or task from Zixflow. See the documentation
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}`,
},
})
},
})
The Zixflow API allows for the automation of business process workflows, enabling the creation, management, and optimization of tasks across various functions. Utilizing this API in Pipedream, one can automate repetitive tasks, integrate with other services, and trigger actions based on specific conditions, helping to streamline business operations and increase efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zixflow: {
type: "app",
app: "zixflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zixflow.com/api/v1/workspace-members`,
headers: {
Authorization: `Bearer ${this.zixflow.$auth.api_key}`,
},
})
},
})