UltraMsg

Ultramsg is a WhatsApp API provider and a gateway for working with messages.

Integrate the UltraMsg API with the Mailchimp API

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

Send a Document with UltraMsg API on Link Clicked from Mailchimp API
Mailchimp + UltraMsg
 
Try it
Send a Document with UltraMsg API on New Audience from Mailchimp API
Mailchimp + UltraMsg
 
Try it
Send a Document with UltraMsg API on New Campaign from Mailchimp API
Mailchimp + UltraMsg
 
Try it
Send a Document with UltraMsg API on New Customer from Mailchimp API
Mailchimp + UltraMsg
 
Try it
Send a Document with UltraMsg API on New File from Mailchimp API
Mailchimp + UltraMsg
 
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 Audience from the Mailchimp API

Emit new event when an audience is added to the connected Mailchimp account.

 
Try it
New Campaign from the Mailchimp API

Emit new event when a new campaign is created or sent

 
Try it
New Customer from the Mailchimp API

Emit new event when a new customer is added to a selected store.

 
Try it
New File from the Mailchimp API

Emit new event when a new file is added to the File Manager of the connected Mailchimp account.

 
Try it
Send a Document with the UltraMsg API

Send a document to a specified number. See the docs here

 
Try it
Add Member To Segment with the Mailchimp API

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

 
Try it
Send a Link with the UltraMsg API

Send a link to a specified number. See the 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
Send a Location with the UltraMsg API

Send a location to a specified number. See the docs here

 
Try it

Overview of UltraMsg

UltraMsg API offers a suite of messaging capabilities that let you automate WhatsApp messaging. With it, you can send and receive messages, create WhatsApp chatbots, and manage media, enabling a wide range of automated interactions with users. Pipedream acts as a powerful accelerator here, letting you connect UltraMsg to hundreds of other apps to craft custom workflows.

Connect UltraMsg

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ultramsg: {
      type: "app",
      app: "ultramsg",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ultramsg.com/${this.ultramsg.$auth.instance_id}/messages/statistics`,
      headers: {
        "Content-Type": `application/x-www-form-urlencoded`,
      },
      params: {
        token: `${this.ultramsg.$auth.token}`,
      },
    })
  },
})

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}`,
      },
    })
  },
})