← Drip + Data Stores integrations

List keys with Data Stores API on New Campaign Subscription Added (Instant) from Drip API

Pipedream makes it easy to connect APIs for Data Stores, Drip and 1,600+ other apps remarkably fast.

Trigger workflow on
New Campaign Subscription Added (Instant) from the Drip API
Next, do this
List keys with the Data Stores API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 750,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

Developers Pipedream

Getting Started

This integration creates a workflow with a Drip trigger and Data Stores 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 Campaign Subscription Added (Instant) trigger
    1. Connect your Drip account
    2. Configure Include Received Email
  3. Configure the List keys action
    1. Connect your Data Stores account
    2. Configure Data Store
  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 when a subscriber subscribes to an Email Series Campaign.
Version:0.0.2
Key:drip-new-campaign-subscription-added

Drip Overview

With the Drip API, you can:

  • Build drip campaigns that send emails, push notifications, or SMS messages to
    your users
  • Trigger actions in your app based on events that happen in Drip
  • Build custom tools and dashboards on top of your Drip data
  • Automate your workflows
  • And much more!

Trigger Code

import base from "../common/base.mjs";

export default {
  ...base,
  key: "drip-new-campaign-subscription-added",
  name: "New Campaign Subscription Added (Instant)",
  description: "Emit new event when a subscriber subscribes to an Email Series Campaign.",
  version: "0.0.2",
  dedupe: "unique",
  type: "source",
  methods: {
    ...base.methods,
    getEventType() {
      return "subscriber.subscribed_to_campaign";
    },
    getSummary({
      subscriber: {
        email, first_name, last_name,
      },
      properties: { campaign_name },
    }) {
      let string = `New Subscription in campaign ${campaign_name}: ${email}`;
      if (first_name) string += ` - ${first_name} ${last_name}`;
      return string;
    },
  },
};

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
DripdripappThis component uses the Drip app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Include Received EmailincludeReceivedEmailboolean

A Boolean specifying whether we should send a notification whenever a subscriber receives an email.

Trigger 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

Action

Description:List all keys in your [Pipedream Data Store](https://pipedream.com/data-stores/).
Version:0.0.2
Key:data_stores-list-keys

Data Stores Overview

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Action Code

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

export default {
  key: "data_stores-list-keys",
  name: "List keys",
  description: "List all keys in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
  version: "0.0.2",
  type: "action",
  props: {
    app,
    dataStore: {
      propDefinition: [
        app,
        "dataStore",
      ],
    },
  },
  async run ({ $ }) {
    const keys = await this.dataStore.keys();
    if (keys.length > 0) {
      $.export("$summary", `Found ${keys.length} key(s).`);
    } else {
      $.export("$summary", "No keys found.");
    }
    return keys;
  },
};

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
Data StoresappappThis component uses the Data Stores app.
Data StoredataStoredata_store

Select an existing Data Store or create a new one.

Action Authentication

The Data Stores API does not require authentication.

About Data Stores

Use Pipedream Data Stores to manage state throughout your workflows.

More Ways to Connect Data Stores + Drip

Delete All Records with Data Stores API on New Campaign Subscription Added (Instant) from Drip API
Drip + Data Stores
 
Try it
List Records with Data Stores API on New Campaign Subscription Added (Instant) from Drip API
Drip + Data Stores
 
Try it
Add or update multiple records with Data Stores API on New Campaign Subscription Added (Instant) from Drip API
Drip + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Campaign Subscription Added (Instant) from Drip API
Drip + Data Stores
 
Try it
Delete a single record with Data Stores API on New Campaign Subscription Added (Instant) from Drip API
Drip + Data Stores
 
Try it
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
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
List Subscribers with the Drip API

List all subscribers. 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
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it

Explore Other Apps

1
-
12
of
1,600+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.