← lemlist

Delete Lead From Campaign with lemlist API

Pipedream makes it easy to connect APIs for lemlist and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Delete Lead From Campaign with the lemlist API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Delete Lead From Campaign with the lemlist API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Delete Lead From Campaign action
    1. Connect your lemlist account
    2. Select a Campaign Id
    3. Select a Email
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Delete Lead From Campaign with lemlist API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + lemlist
 
Try it
Delete Lead From Campaign with lemlist API on New Message in Channel from Discord Bot API
Discord Bot + lemlist
 
Try it
Delete Lead From Campaign with lemlist API on New Submission from Typeform API
Typeform + lemlist
 
Try it
Delete Lead From Campaign with lemlist API on Custom Events from Zoom API
Zoom + lemlist
 
Try it
Delete Lead From Campaign with lemlist API on New Submission (Instant) from Jotform API
Jotform + lemlist
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Delete Lead From Campaign on lemlist
Description:This action deletes a lead from a specific campaign. All information, including statistics, will be deleted. [See the docs here](https://developer.lemlist.com/#delete-a-lead-from-a-campaign)
Version:0.0.1
Key:lemlist-delete-lead-from-a-campaign

Code

import lemlist from "../../lemlist.app.mjs";

export default {
  key: "lemlist-delete-lead-from-a-campaign",
  name: "Delete Lead From Campaign",
  description: "This action deletes a lead from a specific campaign. All information, including statistics, will be deleted. [See the docs here](https://developer.lemlist.com/#delete-a-lead-from-a-campaign)",
  version: "0.0.1",
  type: "action",
  props: {
    lemlist,
    campaignId: {
      propDefinition: [
        lemlist,
        "campaignId",
      ],
      withLabel: true,
    },
    campaignEmail: {
      propDefinition: [
        lemlist,
        "campaignEmail",
        (c) => ({
          campaignId: c.campaignId.value,
        }),
      ],
    },
  },
  async run({ $ }) {
    const response = await this.lemlist.removeLeadFromACampaign({
      $,
      email: this.campaignEmail,
      campaignId: this.campaignId.value,
      params: {
        action: "remove",
      },
    });

    $.export("$summary", `Successfully removed ${this.campaignEmail} lead from ${this.campaignId.label} campaign!`);
    return response;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
lemlistlemlistappThis component uses the lemlist app.
Campaign IdcampaignIdstringSelect a value from the drop down menu.
EmailcampaignEmailstringSelect a value from the drop down menu.

Authentication

lemlist uses API keys for authentication. When you connect your lemlist account, Pipedream securely stores the keys so you can easily authenticate to lemlist APIs in both code and no-code steps.

Get your lemlist API key at the integration page.

About lemlist

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

More Ways to Use lemlist

Triggers

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

Actions

Add Email In Unsubscribes with the lemlist API

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

 
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
Get Lead with the lemlist API

This action retrieves all the information of a specific lead using its email. See the docs here

 
Try it
Mark Lead From All Campaigns As Interested with the lemlist API

This action marks a specific lead as interested using its email in all campaigns. See the docs here

 
Try it