HubSpot

HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.

Integrate the HubSpot API with the Formatting API

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

[Date/Time] Format with Formatting API on Contact Updated from HubSpot API
HubSpot + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Company Property Change from HubSpot API
HubSpot + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Company Updated from HubSpot API
HubSpot + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Contact Updated from HubSpot API
HubSpot + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Deleted Blog Posts from HubSpot API
HubSpot + Formatting
 
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
New Blog Posts from the HubSpot API

Emit new event for each new blog post.

 
Try it
Add Contact to List with the HubSpot API

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

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
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
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of HubSpot

HubSpot's API opens a world of CRM automation opportunities, interfacing directly with customer data, marketing campaigns, sales pipelines, and service tickets. On Pipedream, you can tap into this wellspring of data and harness HubSpot's capabilities for personalized workflows, syncing data across platforms, triggering actions based on customer interactions, and refining sales and marketing strategies through real-time analytics.

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})