Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Executes a single email search using Enrow email finder. See the documentation
Retrieve a result from a single search executed via email finder function. 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 Enrow API offers the power to automate and enhance your e-commerce operations with features like product catalog management, order processing, and customer interactions. By leveraging the Enrow API on Pipedream, you can create custom workflows that trigger actions based on specific events, integrate with other services for a seamless back-end process, and manipulate data to fit your business needs. With Pipedream's serverless platform, you can execute complex sequences of tasks with minimal setup, tapping into the vast library of pre-built actions or writing your own code steps in Node.js.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enrow: {
type: "app",
app: "enrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enrow.io/account/info`,
headers: {
"x-api-key": `${this.enrow.$auth.api_key}`,
},
})
},
})