Personalize cold emails, automate follow-ups, and engage with leads across all channels
Emit new event when a recipient unsubscribes. See docs here
This action adds a lead in the unsubscribed list. See the docs here
Add or update a single record in your Pipedream Data Store.
This action adds a lead in a specific campaign. If the lead doesn't exist, it'll be created, then inserted to the campaign. The creator of the lead is the campaign's sender See the docs here
Add or update multiple records to your Pipedream Data Store.
This action deletes a lead in the unsubscribed list. See the docs here
With the lemlist API you can easily create campaigns with personalized emails
and track the results.
Some things you can build with the lemlist API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lemlist: {
type: "app",
app: "lemlist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lemlist.com/api/team`,
auth: {
username: ``,
password: `${this.lemlist.$auth.api_key}`,
},
})
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})