HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Adds a contact to a specific static list. See the documentation
Extracts structured data based on a user-predefined extraction schema. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Uploads a document into the inbox for data extraction. See the documentation
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.
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}`,
},
})
},
})
The Airparser API simplifies the process of extracting data from emails, such as order confirmations, shipping notifications, or any structured email content. By transforming emails into structured data, it enables seamless integration of email data into various workflows. On Pipedream, you can leverage this API to create automations that act on the parsed data—like updating databases, triggering notifications, or integrating with other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airparser: {
type: "app",
app: "airparser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airparser.com/inboxes/`,
headers: {
"X-API-Key": `${this.airparser.$auth.api_key}`,
},
})
},
})