Mailchimp

Mailchimp is a marketing automation and email marketing platform.

Integrate the Mailchimp API with the GitHub API

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

Create Issue with GitHub API on Link Clicked from Mailchimp API
Mailchimp + GitHub
 
Try it
Create Issue with GitHub API on New Audience from Mailchimp API
Mailchimp + GitHub
 
Try it
Create Issue with GitHub API on New Campaign from Mailchimp API
Mailchimp + GitHub
 
Try it
Create Issue with GitHub API on New Customer from Mailchimp API
Mailchimp + GitHub
 
Try it
Create Issue with GitHub API on New File from Mailchimp API
Mailchimp + GitHub
 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
Link Clicked from the Mailchimp API

Emit new event when a recipient clicks a pre-specified link in an specific campaign.

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
Add Member To Segment with the Mailchimp API

Adds a new member to a static segment. See docs here

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Add Note to Subscriber with the Mailchimp API

Adds a new note to an existing subscriber. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Add Or Remove Members Tags with the Mailchimp API

Add or remove member tags. See docs here

 
Try it

Overview of Mailchimp

The Mailchimp API taps into the heart of your email marketing efforts, allowing you to manage subscribers, campaigns, and reports. With the API, you can automate tasks like syncing subscriber lists, segmenting contacts based on behavior, and personalizing email content to match user profiles. It's a powerful tool for marketers looking to fine-tune their email strategy and maximize engagement.

Connect Mailchimp

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: {
    mailchimp: {
      type: "app",
      app: "mailchimp",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://login.mailchimp.com/oauth2/metadata`,
      headers: {
        Authorization: `Bearer ${this.mailchimp.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

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