Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when a course is completed. See the docs here
Emit new event when a funnel is created. See the docs here
Emit new event when a new live class is registered. See the docs here
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 Zenler API lets you tap into your online course platform to automate tasks, streamline student engagement, and track course performance. By harnessing the power of the Zenler API on Pipedream, you can create dynamic serverless workflows that respond to course interactions, manage users, and analyze educational content effectiveness, all in real-time. Whether you're looking to enhance the learning experience, or make your course administration more efficient, the Zenler API on Pipedream offers the tools to make it happen.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenler: {
type: "app",
app: "zenler",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newzenler.com/api/v1/users`,
headers: {
"X-API-Key": `${this.zenler.$auth.api_key}`,
"X-Account-Name": `${this.zenler.$auth.account_name}`,
},
})
},
})