ManyChat

Grow your business with ChatMarketing today. Connect with customers via Messenger, SMS, Email, or IG using ManyChat.

Integrate the ManyChat API with the HubSpot API

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

Add Contact to List with HubSpot API on New Or Updated Custom Field from ManyChat API
ManyChat + HubSpot
 
Try it
Add Tag to User with ManyChat API on Company Updated from HubSpot API
HubSpot + ManyChat
 
Try it
Add Tag to User with ManyChat API on Contact Updated from HubSpot API
HubSpot + ManyChat
 
Try it
Add Tag to User with ManyChat API on Deleted Blog Posts from HubSpot API
HubSpot + ManyChat
 
Try it
Add Tag to User with ManyChat API on Line Item Updated from HubSpot API
HubSpot + ManyChat
 
Try it
New Or Updated Custom Field from the ManyChat API

Emit new event when a selected custom field on a user profile is added or updated. See the documentation

 
Try it
Company Updated from the HubSpot API

Emit new event each time a company is updated.

 
Try it
Contact Updated from the HubSpot API

Emit new event each time a contact is updated.

 
Try it
Deleted Blog Posts from the HubSpot API

Emit new event for each deleted blog post.

 
Try it
Line Item Updated from the HubSpot API

Emit new event each time a line item is updated.

 
Try it
Add Tag to User with the ManyChat API

Adds a specific tag to a user specified by their user ID. This action is essential to categorize and filter users based on business-specific parameters. See the documentation

 
Try it
Add Contact to List with the HubSpot API

Adds a contact to a specific static list. See the documentation

 
Try it
Find User by Custom Field with the ManyChat API

Locates a user based on a particular custom field's value. See the documentation

 
Try it
Batch Create or Update Contact with the HubSpot API

Create or update a batch of contacts by its ID. See the documentation

 
Try it
Send Dynamic Message to User with the ManyChat API

Delivers a dynamic message to a particular user specified by their user ID. See the documentation

 
Try it

Overview of ManyChat

The ManyChat API lets you manage and automate conversations in your chatbot, giving you control over user data, tags, and messaging. Integrating ManyChat with Pipedream can supercharge your chatbot workflows, enabling you to connect your ManyChat bot to various apps and services, automate interactions based on triggers, and analyze chatbot data to improve user engagement.

Connect ManyChat

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: {
    manychat: {
      type: "app",
      app: "manychat",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.manychat.com/fb/page/getInfo`,
      headers: {
        Authorization: `Bearer ${this.manychat.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of HubSpot

The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.

Connect HubSpot

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: {
    hubspot: {
      type: "app",
      app: "hubspot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hubapi.com/integrations/v1/me`,
      headers: {
        Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
      },
    })
  },
})