← Drip

List Subscribers with Drip API

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

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
List Subscribers with the Drip 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 List Subscribers with the Drip API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the List Subscribers action
    1. Connect your Drip account
    2. Optional- Select a Status
    3. Optional- Select one or more Tags
    4. Optional- Configure Subscribed Before
    5. Optional- Configure Subscribed After
  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

List Subscribers with Drip API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Drip
 
Try it
List Subscribers with Drip API on New Submission from Typeform API
Typeform + Drip
 
Try it
List Subscribers with Drip API on Custom Events from Zoom API
Zoom + Drip
 
Try it
List Subscribers with Drip API on New Submission (Instant) from Jotform API
Jotform + Drip
 
Try it
List Subscribers with Drip API on New Custom Webhook Events from Stripe API
Stripe + Drip
 
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.

List Subscribers on Drip
Description:List all subscribers. [See the docs here](https://developer.drip.com/#list-all-subscribers)
Version:0.0.2
Key:drip-list-subscribers

Code

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

export default {
  key: "drip-list-subscribers",
  name: "List Subscribers",
  version: "0.0.2",
  description: "List all subscribers. [See the docs here](https://developer.drip.com/#list-all-subscribers)",
  type: "action",
  props: {
    drip,
    status: {
      type: "string",
      label: "Status",
      description: "Filter by status. Defaults to active.",
      optional: true,
      options: [
        "all",
        "active",
        "unsubscribed",
        "active_or_unsubscribed",
        "undeliverable",
      ],
    },
    tags: {
      type: "string[]",
      label: "Tags",
      description: "A list of tags.",
      optional: true,
      async options({ page }) {
        const { tags } = await this.drip.listTags({
          params: {
            page,
          },
        });

        return tags;
      },
    },
    subscribedBefore: {
      type: "string",
      label: "Subscribed Before",
      description: "A *ISO-8601* datetime. When included, returns only subscribers who were created before the date. Eg. `2017-01-01T00:00:00Z`",
      optional: true,
    },
    subscribedAfter: {
      type: "string",
      label: "Subscribed After",
      description: "A *ISO-8601* datetime. When included, returns only subscribers who were created after the date. Eg. `2017-01-01T00:00:00Z`",
      optional: true,
    },
  },
  async run({ $ }) {
    const {
      status,
      tags,
      subscribedBefore,
      subscribedAfter,
    } = this;

    const response = await this.drip.listSubscribers({
      $,
      params: {
        status,
        tags: tags?.toString(),
        subscribed_before: subscribedBefore,
        subscribed_after: subscribedAfter,
      },
    });

    $.export("$summary", "Subscribers Successfully fetched");
    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
DripdripappThis component uses the Drip app.
StatusstatusstringSelect a value from the drop down menu:allactiveunsubscribedactive_or_unsubscribedundeliverable
Tagstagsstring[]Select a value from the drop down menu.
Subscribed BeforesubscribedBeforestring

A ISO-8601 datetime. When included, returns only subscribers who were created before the date. Eg. 2017-01-01T00:00:00Z

Subscribed AftersubscribedAfterstring

A ISO-8601 datetime. When included, returns only subscribers who were created after the date. Eg. 2017-01-01T00:00:00Z

Authentication

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

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

About Drip

Marketing automation

More Ways to Use Drip

Triggers

New Campaign Subscription Added (Instant) from the Drip API

Emit new event when a subscriber subscribes to an Email Series Campaign.

 
Try it
New Custom Event Performed (Instant) from the Drip API

Emit new event when a custom event is performed for a subscriber

 
Try it
New Subscriber Added (Instant) from the Drip API

Emit new event when a new subscriber is created

 
Try it
New Tag Applied (Instant) from the Drip API

Emit new event when a tag is applied to a subscriber

 
Try it

Actions

Activate Workflow with the Drip API

Activate a workflow. See the docs here

 
Try it
Create Or Update Subscriber with the Drip API

Creates a new subscriber. If the email already exists, it will update the existing subscriber. See the docs here

 
Try it
Start Someone on a Workflow with the Drip API

If the workflow is not active, the subscriber will not be added to the workflow. See the docs here

 
Try it