Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Create a new donation with the provided data. See the documentation
Create a new membership with the provided data. 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}`,
},
})
},
})
NationBuilder is a comprehensive platform for community organizing, offering tools for website creation, donor management, and communication with the community. The NationBuilder API unlocks potent opportunities for automation and data management. On Pipedream, you can leverage this API to streamline interactions between NationBuilder and other services, automate contacts synchronization, trigger communications based on user activities, and more, all while enjoying the benefits of serverless workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nationbuilder: {
type: "app",
app: "nationbuilder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.nationbuilder.$auth.slug}.nationbuilder.com/api/v1/people/me`,
headers: {
Authorization: `Bearer ${this.nationbuilder.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})