Mautic

Open Source Marketing Automation

Integrate the Mautic API with the Google Drive API

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

Add Contact to a Campaign with Mautic API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + Mautic
 
Try it
Add Contact to a Campaign with Mautic API on Changes to Specific Files from Google Drive API
Google Drive + Mautic
 
Try it
Add Contact to a Campaign with Mautic API on New Files (Instant) from Google Drive API
Google Drive + Mautic
 
Try it
Add Contact to a Campaign with Mautic API on New or Modified Comments from Google Drive API
Google Drive + Mautic
 
Try it
Add Contact to a Campaign with Mautic API on New or Modified Files from Google Drive API
Google Drive + Mautic
 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files

 
Try it
New Contact from the Mautic API

Emit new event when a contact is created. See the docs

 
Try it
New Form Submission from the Mautic API

Emit new event when a form is submitted. See the docs

 
Try it
Updated Contact from the Mautic API

Emit new event when a contact is updated. See the docs

 
Try it
Add Contact to a Campaign with the Mautic API

Adds a contact to a specific campaign. See docs

 
Try it
Add File Sharing Preference with the Google Drive API

Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information

 
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

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 Google Drive

Using the Google Drive API, you can build applications that:

  • Create and manage files and folders
  • Download and upload files
  • Share and organize files
  • Search for files
  • Track changes to files
  • And much more!

Connect Google Drive

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