← Discord + SendPulse integrations

Unsubscribe a Contact From a Defined Mailing List with SendPulse API on New Message (Instant) from Discord API

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

Trigger workflow on
New Message (Instant) from the Discord API
Next, do this
Unsubscribe a Contact From a Defined Mailing List with the SendPulse 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

This integration creates a workflow with a Discord trigger and SendPulse action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Message (Instant) trigger
    1. Connect your Discord account
    2. Configure Channels
    3. Configure discordApphook
  3. Configure the Unsubscribe a Contact From a Defined Mailing List action
    1. Connect your SendPulse account
    2. Configure id
    3. Configure emails
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are 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.

Trigger

Description:Emit new event for each message posted to one or more channels in a Discord server
Version:1.0.1
Key:discord-new-message

Discord Overview

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Trigger Code

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

export default {
  type: "source",
  key: "discord-new-message",
  name: "New Message (Instant)",
  description: "Emit new event for each message posted to one or more channels in a Discord server",
  version: "1.0.1",
  dedupe: "unique",
  props: {
    discord,
    channels: {
      type: "$.discord.channel[]",
      appProp: "discord",
      label: "Channels",
      description: "Select the channel(s) you'd like to be notified for",
    },
    // eslint-disable-next-line pipedream/props-label,pipedream/props-description
    discordApphook: {
      type: "$.interface.apphook",
      appProp: "discord",
      async eventNames() {
        return this.channels || [];
      },
    },
  },
  async run(event) {
    if (event.guildID != this.discord.$auth.guild_id) {
      return;
    }
    this.$emit(event, {
      id: event.id,
    });
  },
};

Trigger 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
DiscorddiscordappThis component uses the Discord app.
Channelschannels$.discord.channel[]

Select the channel(s) you'd like to be notified for

discordApphook$.interface.apphook

Trigger Authentication

Discord uses OAuth authentication. When you connect your Discord account, Pipedream will open a popup window where you can sign into Discord and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Discord API.

Pipedream requests the following authorization scopes when you connect your account:

botemailidentifyguilds

About Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Action

Description:Make a POST request to https://api.sendpulse.com/addressbooks/{id}/emails/unsubscribe
Version:0.1.1
Key:sendpulse-unsubscribe-contact-from-mailing-list

SendPulse Overview

SendPulse is a powerful platform that lets you send emails, push notifications,
and SMS messages using their API. It offers advanced features such as email
segmentation, autoresponders, advanced analytics, and more. With the SendPulse
API, you can build amazing automated marketing solutions that can help you
increase conversions, reach more users, and boost your customer engagement.

Send pulse API can be used to build:

  • Automated lead nurturing campaigns
  • Automated welcome emails
  • Automated re-engagement campaigns
  • SMS campaigns
  • Push notifications
  • Trigger-based emails
  • Personalized customer journeys
  • Multi-level segmentation
  • Custom user onboarding
  • Automated customer feedback
  • And much more!

Action Code

// legacy_hash_id: a_Xzi2Kp
import { axios } from "@pipedream/platform";

export default {
  key: "sendpulse-unsubscribe-contact-from-mailing-list",
  name: "Unsubscribe a Contact From a Defined Mailing List",
  description: "Make a POST request to https://api.sendpulse.com/addressbooks/{id}/emails/unsubscribe",
  version: "0.1.1",
  type: "action",
  props: {
    sendpulse: {
      type: "app",
      app: "sendpulse",
    },
    id: {
      type: "string",
      description: "The mailing list ID",
    },
    emails: {
      type: "string",
      description: "The contact that you want to unsubscribe from the defined mailing list [\"example@yourdomain.com\"]",
    },
  },
  async run({ $ }) {
    return await axios($, {
      method: "POST",
      url: "https://api.sendpulse.com/blacklist",
      headers: {
        Authorization: `Bearer ${this.sendpulse.$auth.oauth_access_token}`,
      },
      data: {
        id: this.id,
        emails: this.emails,
      },
    });
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
SendPulsesendpulseappThis component uses the SendPulse app.
ididstring

The mailing list ID

emailsemailsstring

The contact that you want to unsubscribe from the defined mailing list ["example@yourdomain.com"]

Action Authentication

SendPulse uses OAuth authentication. When you connect your SendPulse account, Pipedream will open a popup window where you can sign into SendPulse and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any SendPulse API.

Pipedream requests the following authorization scopes when you connect your account:

About SendPulse

Multi-Channel Marketing Platform

More Ways to Connect SendPulse + Discord

Retrieve General Information About a Specific Email Address with SendPulse API on New Message from Discord API
Discord + SendPulse
 
Try it
Retrieve General Information About a Specific Email Address with SendPulse API on Message Deleted (Instant) from Discord API
Discord + SendPulse
 
Try it
Unsubscribe a Contact From a Defined Mailing List with SendPulse API on Message Deleted (Instant) from Discord API
Discord + SendPulse
 
Try it
Retrieve General Information About a Specific Email Address with SendPulse API on New Guild Member (Instant) from Discord API
Discord + SendPulse
 
Try it
Unsubscribe a Contact From a Defined Mailing List with SendPulse API on New Guild Member (Instant) from Discord API
Discord + SendPulse
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Reaction Added (Instant) from the Discord API

Emit new event for each reaction added to a message

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it
Retrieve General Information About a Specific Email Address with the SendPulse API
 
Try it
Unsubscribe a Contact From a Defined Mailing List with the SendPulse API
 
Try it