What do you want to automate

with Sendloop and Selzy?

Prompt, edit and deploy AI agents that connect to Sendloop, Selzy and 2,500+ other apps in seconds.

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Subscriber with Sendloop API on New Campaign Created from Selzy API
Selzy + Sendloop
 
Try it
Add Subscriber with Sendloop API on New Campaign Status (Instant) from Selzy API
Selzy + Sendloop
 
Try it
Add Subscriber with Sendloop API on New Subscriber (Instant) from Selzy API
Selzy + Sendloop
 
Try it
Create Campaign with Selzy API on New Email Opened from Sendloop API
Sendloop + Selzy
 
Try it
Create Campaign with Selzy API on New Hard Bounce from Sendloop API
Sendloop + Selzy
 
Try it
New Email Opened from the Sendloop API

Emit new event when a subscriber opens an email.

 
Try it
New Hard Bounce from the Sendloop API

Emit new event when a subscriber's status changes to 'hard bounce'.

 
Try it
New Campaign Created from the Selzy API

Emit new event when a new email campaign is created. Useful for monitoring campaign creation activity.

 
Try it
New Subscriber Added from the Sendloop API

Emit new event when a new subscriber is added to the list.

 
Try it
New Campaign Status (Instant) from the Selzy API

Emit new event when the status of a campaign changes.

 
Try it
Add Subscriber with the Sendloop API

Adds a new subscriber to a specified list.

 
Try it
Create Campaign with the Selzy API

Creates a new campaign. See the documentation

 
Try it
Create Email Message with the Selzy API

Adds a new email message. See the documentation

 
Try it
Remove Subscriber with the Sendloop API

Unsubscribe an email address from your lists.

 
Try it
Integrate the Sendloop API with the Selzy API
Setup the Sendloop API trigger to run a workflow which integrates with the Selzy API. Pipedream's integration platform allows you to integrate Sendloop and Selzy remarkably fast. Free for developers.

Overview of Sendloop

Sendloop is a robust email marketing platform designed to help businesses engage with their audience. With Sendloop's API on Pipedream, you can automate email campaigns, manage subscribers, and track the performance of your emails. Pipedream's serverless platform enables you to connect Sendloop with hundreds of other apps, creating powerful workflows that save time and enhance productivity.

Connect Sendloop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sendloop: {
      type: "app",
      app: "sendloop",
    }
  },
  async run({steps, $}) {
    const data = {
      "APIKey": `${this.sendloop.$auth.api_key}`,
    }
    return await axios($, {
      method: "post",
      url: `https://${this.sendloop.$auth.account}.sendloop.com/api/v3/Account.Info.Get/json`,
      headers: {
        "Content-Type": `application/x-www-form-urlencoded`,
      },
      data,
    })
  },
})

Connect Selzy

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: {
    selzy: {
      type: "app",
      app: "selzy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.selzy.com/en/api/getCampaigns`,
      params: {
        format: `json`,
        api_key: `${this.selzy.$auth.api_key}`,
      },
    })
  },
})

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo