Retention Marketing Software for Ecommerce
Emit new event when a contact is added to the specified list. See the documentation.
Adds a customer to a specific list, or if the customer already exists, will update the record of that customer with the supplied data. See the documentation
Triggers the beginning of a customer journey in Rejoiner. See the documentation
Updates a customer's profile information. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rejoiner: {
type: "app",
app: "rejoiner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rj2.rejoiner.com/api/v2/${this.rejoiner.$auth.site_id}/ping/`,
headers: {
"Authorization": `Rejoiner ${this.rejoiner.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})