Create and send postal Direct Mail campaigns: letters or postcards.
Add people to a manual segment by ID. You are limited to 1000 customer IDs per request. See the docs here
Creates a new recipient in a specified group. See the Stannp documentation
Get a single campaign based on the provided campaign ID. See the documentation
The Stannp API integrates with Pipedream to automate direct mail campaigns. You can create, manage, and send personalized postcards, letters, or flyers using Stannp's services. With Pipedream's serverless platform, you can connect Stannp to various triggers and actions, creating workflows that handle everything from customer outreach to event-triggered mailings. This combination is powerful for businesses looking to blend digital and physical marketing strategies seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stannp: {
type: "app",
app: "stannp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.stannp.$auth.region}.stannp.com/api/v1/users/me`,
auth: {
username: `${this.stannp.$auth.api_key}`,
password: ``,
},
})
},
})
Customer.io is a versatile automation tool that allows you to harness the power of email, SMS, and push notifications to create personalized customer experiences. With its comprehensive API, Customer.io enables you to track customer interactions, segment audiences, and trigger targeted communications based on user behavior and data. By leveraging Pipedream, you can easily connect Customer.io to various other services and APIs to automate complex workflows, synthesize data, and respond to events in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
customer_io: {
type: "app",
app: "customer_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://track.customer.io/api/v1/accounts/region`,
auth: {
username: `${this.customer_io.$auth.site_id}`,
password: `${this.customer_io.$auth.api_key}`,
},
})
},
})