Mautic

Open Source Marketing Automation

Integrate the Mautic API with the Discord API

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

Add Contact to a Campaign with Mautic API on New Message from Discord API
Discord + Mautic
 
Try it
Clone Campaign with Mautic API on New Message from Discord API
Discord + Mautic
 
Try it
Create Contact with Mautic API on New Message from Discord API
Discord + Mautic
 
Try it
Delete Company with Mautic API on New Message from Discord API
Discord + Mautic
 
Try it
Get Campaign with Mautic API on New Message from Discord API
Discord + Mautic
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Add Contact to a Campaign with the Mautic API

Adds a contact to a specific campaign. See docs

 
Try it
Clone Campaign with the Mautic API

Clones an existing campaign. See docs

 
Try it
Create Contact with the Mautic API

Creates a new contact. See docs

 
Try it
Delete Company with the Mautic API

Deletes a company. See docs

 
Try it
Get Campaign with the Mautic API

Gets an individual campaign by ID. See docs

 
Try it

Overview of Mautic

Mautic's API enables you to build custom integrations and applications on top
of Mautic. This means you can connect Mautic to other tools in your tech stack,
automate processes, or even build your own Mautic-powered app.

Here are a few examples of what you can build using the Mautic API:

  • A CRM integration that syncs contact data between Mautic and your CRM system
  • An ecommerce integration that tracks purchase data from your store in Mautic
  • A marketing automation workflow that sends automated emails based on contact
    activity in Mautic
  • A custom app that uses Mautic data to power some unique functionality

Connect Mautic

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: {
    mautic: {
      type: "app",
      app: "mautic",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.mautic.$auth.mautic_url}/api/users/self`,
      headers: {
        Authorization: `Bearer ${this.mautic.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})