Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
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 Doppler Marketing Automation API allows you to automate email marketing campaigns, manage subscriber lists, and analyze the performance of your email marketing efforts. When integrated with Pipedream, you can craft workflows that respond to events in real-time, sync data across various platforms, and personalize your marketing strategy, all while leveraging the serverless execution environment to scale as needed.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
doppler_marketing_automation: {
type: "app",
app: "doppler_marketing_automation",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://restapi.fromdoppler.com/accounts/${this.doppler_marketing_automation.$auth.account_name}/campaigns`,
headers: {
"Accept": `application/json`,
"Authorization": `token ${this.doppler_marketing_automation.$auth.api_key}`,
},
})
},
})