Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a new list of contacts in Findymail. See the documentation
Finds an email address using a given full name and a website domain. 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 Findymail API provides a way to enrich and validate email contacts. Leveraging Pipedream's capabilities, you can automate workflows that trigger on various events to lookup emails, auto-populate CRM fields, validate email data, or even enhance marketing lists with accurate contact information. Using Findymail's API in Pipedream, you can create intricate serverless workflows that react to various triggers, such as webhooks, scheduled timers, or actions from other apps, to integrate email data enrichment into your business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
findymail: {
type: "app",
app: "findymail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.findymail.com/api/credits`,
headers: {
Authorization: `Bearer ${this.findymail.$auth.api_key}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
})
},
})