Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Adds a new subscriber or updates existing subscriber's details for a specific list. See the documentation
Creates a new draft campaign ready to be filled in with details. See the documentation
Removes a subscriber from a specified list. 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 Sendy API allows you to programmatically manage email campaigns, subscribers, and lists. With Pipedream's capabilities, you can leverage Sendy API to create custom workflows that respond to events, synchronize data across platforms, and automate email marketing tasks. Pipedream provides a serverless platform where you can connect Sendy with hundreds of other apps without writing complex code, harnessing the power of Sendy's features with event-driven programming and API integration.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendy: {
type: "app",
app: "sendy",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.sendy.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://sendy.email/dev2/api/brands/get-brands.php`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})