Intercom

Intercom is the only solution that combines an AI chatbot, help desk, and proactive support—so you can keep costs low, support teams happy, and customers satisfied.

Integrate the Intercom API with the Mailgun API

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

Create Mailing List Member with Mailgun API on New Companies from Intercom API
Intercom + Mailgun
 
Try it
Create Mailing List Member with Mailgun API on New Reply From Admin from Intercom API
Intercom + Mailgun
 
Try it
Create Route with Mailgun API on New Companies from Intercom API
Intercom + Mailgun
 
Try it
Create Route with Mailgun API on New Reply From Admin from Intercom API
Intercom + Mailgun
 
Try it
Delete Mailing List Member with Mailgun API on New Companies from Intercom API
Intercom + Mailgun
 
Try it
New Companies from the Intercom API

Emit new event each time a new company is added.

 
Try it
New Reply From Admin from the Intercom API

Emit new event each time an admin replies to a conversation.

 
Try it
New Conversations from the Intercom API

Emit new event each time a new conversation is added.

 
Try it
New Reply From User from the Intercom API

Emit new event each time a user replies to a conversation.

 
Try it
New Unsubscriptions from the Intercom API

Emit new event each time a user unsubscribes from receiving emails.

 
Try it
Create Mailing List Member with the Mailgun API

Add to an existing mailing list. See the docs here

 
Try it
Create Route with the Mailgun API

Create a new route. See the docs here

 
Try it
Delete Mailing List Member with the Mailgun API

Delete a mailing list member by address. See the docs here

 
Try it
Get Mailing List Member with the Mailgun API

Retrieve a mailing list member by address. See the docs here

 
Try it
Get Mailing List Members with the Mailgun API

List all mailing list members. See the docs here

 
Try it

Connect Intercom

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: {
    intercom: {
      type: "app",
      app: "intercom",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.intercom.io/admins`,
      headers: {
        Authorization: `Bearer ${this.intercom.$auth.oauth_access_token}`,
        "Accept": `application/json`,
      },
    })
  },
})

Overview of Mailgun

Mailgun allows you to send and receive emails using their API. With Mailgun,
you can build a variety of applications and services that can send or receive
emails. Here are a few examples of what you can build with Mailgun:

  • A simple email service that can send or receive emails
  • An email marketing service that can send mass emails
  • A notification service that can send emails when certain events occur
  • A task management service that can send emails when tasks are due
  • A customer support service that can send or receive emails from customers

Connect Mailgun

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: {
    mailgun: {
      type: "app",
      app: "mailgun",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.mailgun.$auth.region && this.mailgun.$auth.region === "EU" ? "api.eu" : "api"}.mailgun.net/v3/domains`,
      auth: {
        username: `api`,
        password: `${this.mailgun.$auth.api_key}`,
      },
    })
  },
})