Zoho Campaigns

Marketing platform built exclusively for email marketing—you bring in and manage the email database of your leads and contacts and send marketing emails to them.

Integrate the Zoho Campaigns API with the HubSpot API

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

Add Contact to List with HubSpot API on New Campaign from Zoho Campaigns API
Zoho Campaigns + HubSpot
 
Try it
Add Contact to List with HubSpot API on New Contact from Zoho Campaigns API
Zoho Campaigns + HubSpot
 
Try it
Add Contact to Mailing List with Zoho Campaigns API on Company Updated from HubSpot API
HubSpot + Zoho Campaigns
 
Try it
Add Contact to Mailing List with Zoho Campaigns API on Contact Updated from HubSpot API
HubSpot + Zoho Campaigns
 
Try it
Add Contact to Mailing List with Zoho Campaigns API on Deleted Blog Posts from HubSpot API
HubSpot + Zoho Campaigns
 
Try it
New Campaign from the Zoho Campaigns API

Emit new event when a new campaign is created.

 
Try it
Company Updated from the HubSpot API

Emit new event each time a company is updated.

 
Try it
New Contact from the Zoho Campaigns API

Emit new event when a new contact is created.

 
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
Add Contact to Mailing List with the Zoho Campaigns API

You can use this API to add contacts to your mailing lists. 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
Create Campaign with the Zoho Campaigns API

You can create a campaign using this API. Using this API, you can set the campaign name, subject line, sender address; choose the intended mailing list.. 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
Create Associations with the HubSpot API

Create associations between objects. See the documentation

 
Try it

Overview of Zoho Campaigns

The Zoho Campaigns API opens up a world of possibilities for email marketing automation within Pipedream, allowing you to manage contacts, campaigns, and reports programmatically. You can connect Zoho Campaigns with other apps to create workflows that automate various tasks, such as synchronizing subscriber lists, triggering campaigns based on specific actions or events, and analyzing campaign performance with custom metrics.

Connect Zoho Campaigns

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: {
    zoho_campaigns: {
      type: "app",
      app: "zoho_campaigns",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://campaigns.${this.zoho_campaigns.$auth.base_api_url}/api/v1.1/getmailinglists?resfmt=JSON`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${this.zoho_campaigns.$auth.oauth_access_token}`,
      },
    })
  },
})

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