Drip

Marketing automation

Integrate the Drip API with the Airtable (OAuth) API

Setup the Drip API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate Drip and Airtable (OAuth) remarkably fast. Free for developers.

Activate Workflow with Drip API on New Field from Airtable (OAuth) API
Airtable (OAuth) + Drip
 
Try it
Activate Workflow with Drip API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Drip
 
Try it
Activate Workflow with Drip API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + Drip
 
Try it
Activate Workflow with Drip API on New or Modified Records from Airtable (OAuth) API
Airtable (OAuth) + Drip
 
Try it
Activate Workflow with Drip API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + Drip
 
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
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
Activate Workflow with the Drip API

Activate a workflow. See the docs here

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
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
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
List Subscribers with the Drip API

List all subscribers. See the docs here

 
Try it

Overview of Drip

The Drip API allows for powerful email marketing automation, providing tools to craft every interaction with your leads, trial users, and customers. With the Drip API on Pipedream, you can manage subscribers, send emails, track user actions, and more. This integration opens up possibilities for syncing subscriber data, triggering communication based on user behavior, and connecting your email marketing to a wider ecosystem of tools.

Connect Drip

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    drip: {
      type: "app",
      app: "drip",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.getdrip.com/v2/user`,
      headers: {
        Authorization: `Bearer ${this.drip.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})