Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Enrich a list of contacts in Dropcontact. See the documentation
Retrieve the enriched contacts of a request in Dropcontact. 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 Dropcontact API on Pipedream allows you to enrich and clean contact data dynamically within a serverless workflow. It can find, verify, and correct email addresses, providing additional information like company details and social network profiles. Integrating Dropcontact into Pipedream workflows enables automated data enhancement tasks that can trigger actions in other apps for marketing, sales, or CRM purposes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dropcontact: {
type: "app",
app: "dropcontact",
}
},
async run({steps, $}) {
const data = {
"data": [
{"email": "sample_email1@domain.com"},
{"first_name": "SampleFirstName", "last_name": "SampleLastName", "website": "samplewebsite.com"},
{"first_name": "SampleFirstName2", "last_name": "SampleLastName2", "email": "sample_email2@domain.com"}
],
}
return await axios($, {
method: "post",
url: `https://api.dropcontact.io/batch`,
headers: {
"Content-Type": `application/json`,
"X-Access-Token": `${this.dropcontact.$auth.api_key}`,
},
data,
})
},
})