lemlist

Personalize cold emails, automate follow-ups, and engage with leads across all channels

Integrate the lemlist API with the Node API

Setup the lemlist API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate lemlist and Node remarkably fast. Free for developers.

Run Node Code with Node API on New Activity (Instant) from lemlist API
lemlist + Node
 
Try it
Run Node Code with Node API on New Unsubscribed Recipient (Instant) from lemlist API
lemlist + Node
 
Try it
New Activity (Instant) from the lemlist API

Emit new event for each new activity. See docs here

 
Try it
New Unsubscribed Recipient (Instant) from the lemlist API

Emit new event when a recipient unsubscribes. See docs here

 
Try it
Add Email In Unsubscribes with the lemlist API

This action adds a lead in the unsubscribed list. See the docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Add Lead To A Campaign with the lemlist API

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

 
Try it
Delete An Email From Unsubscribes with the lemlist API

This action deletes a lead in the unsubscribed list. See the docs here

 
Try it
Delete Lead From Campaign with the lemlist API

This action deletes a lead from a specific campaign. All information, including statistics, will be deleted. See the docs here

 
Try it

Overview of lemlist

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:

  • A system to personalize emails based on information in a database
  • A campaign tracking system to see which emails are being opened and clicked
  • A way to A/B test different email content to see what works best

Connect lemlist

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.