The Magic Drip

Build multi-step funnels using LinkedIn to supercharge your outreach 🚀

Integrate the The Magic Drip API with the Python API

Setup the The Magic Drip API trigger to run a workflow which integrates with the Python API. Pipedream's integration platform allows you to integrate The Magic Drip and Python remarkably fast. Free for developers.

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
Run Python Code with Python API on New Campaign Created from The Magic Drip API
The Magic Drip + Python
 
Try it
Run Python Code with Python API on New Template Created from The Magic Drip API
The Magic Drip + Python
 
Try it
New Campaign Created from the The Magic Drip API

Emit new event when a campaign is created. See the documentation

 
Try it
New Template Created from the The Magic Drip API

Emit new event when a template is created. See the documentation

 
Try it
Add Lead to Campaign with the The Magic Drip API

Add a lead to a campaign. See the documentation

 
Try it
Run Python Code with the Python API

Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.

 
Try it
List Campaigns with the The Magic Drip API

Retrieve all available campaigns. See the documentation

 
Try it
List Templates with the The Magic Drip API

Retrieve all available templates. See the documentation

 
Try it
Mark Campaign Active or Inactive with the The Magic Drip API

Marks a campaign as active or inactive. See the documentation

 
Try it

Connect The Magic 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: {
    the_magic_drip: {
      type: "app",
      app: "the_magic_drip",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.themagicdrip.com/v1/campaign`,
      headers: {
        "x-api-key": `${this.the_magic_drip.$auth.api_key}`,
      },
    })
  },
})

Overview of Python

Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.

This includes installing PyPI packages, within your code without having to manage a requirements.txt file or running pip.

Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:

Connect Python

1
2
3
4
5
def handler(pd: "pipedream"):
  # Reference data from previous steps
  print(pd.steps["trigger"]["context"]["id"])
  # Return data for use in future steps
  return {"foo": {"test":True}}

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