Workplace Productivity & Automation Tools
Emit new event for each new form submission. See docs here
The Formstack API facilitates the automation of form creation and submission processes, enhancing data collection and integration. With Pipedream's serverless platform, you can trigger workflows on form submissions, manipulate and route form data to various endpoints, and seamlessly connect Formstack with other apps to streamline tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formstack: {
type: "app",
app: "formstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.formstack.com/api/v2/form.json`,
headers: {
Authorization: `Bearer ${this.formstack.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})