Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event once a record is updated or newly created in Grist. See the documentation
Emit new event when a record is just created. 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}`,
},
})
},
})
Grist API on Pipedream enables you to automate data management tasks in your Grist documents. This might mean syncing data across different platforms, triggering notifications based on data changes, or processing data through custom logic. With Pipedream, you can use the Grist API to build workflows that react to events in real-time, connect to hundreds of other services, manipulate data in sophisticated ways, and create custom endpoints to integrate with your Grist data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
grist: {
type: "app",
app: "grist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://docs.getgrist.com/api/orgs`,
headers: {
Authorization: `Bearer ${this.grist.$auth.api_key}`,
},
})
},
})