Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Add an email to SARE. Optionally, assign the subscriber to a group. See the documentation
Remove email from specified groups in SARE. 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 SARE API provides robust tools for email marketing and automation, enabling users to manage subscribers, send emails, and analyze campaigns directly via API. By leveraging SARE's features on Pipedream, you can automate workflows involving email operations, integrate with other platforms for enhanced data handling and customer engagement, and streamline communications in various marketing campaigns. This integration can particularly benefit marketers looking to automate responses based on subscriber behavior or integrate email marketing metrics with other business tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sare: {
type: "app",
app: "sare",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://s.enewsletter.pl/api/v1/${this.sare.$auth.uid}/email/props`,
headers: {
"ApiKey": `${this.sare.$auth.api_key}`,
},
})
},
})