Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Triggers when a new client is created. 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}`,
},
})
},
})
YoPlanning API offers tools for event planning, with features such as creating and managing event schedules, attendee lists, and budgets. Leveraging this API in Pipedream enables automating event-related workflows, syncing event data with other services, and triggering actions based on event updates or attendee responses. It's a powerful way to streamline event management tasks, ensuring that nothing slips through the cracks as you orchestrate everything from small meetings to large conferences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yoplanning: {
type: "app",
app: "yoplanning",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://yoplanning.pro/api/v3.1/teams`,
headers: {
"Authorization": `Token ${this.yoplanning.$auth.api_key}`,
},
})
},
})