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
Fetches detailed LinkedIn profile information based on the provided URL. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Fetches the work email of a LinkedIn profile based on the specified URL. 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}`,
},
})
},
})
Leadzen.ai is an API designed to enhance lead management and marketing automation. It allows users to dynamically score, segment, and nurture leads based on various criteria and interactions. By integrating Leadzen.ai with Pipedream, users can automate complex workflows, sync data across multiple platforms, and trigger actions based on lead behavior in real-time. This integration enables marketers to refine their engagement strategies, personalize communications more effectively, and drive sales conversions more efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadzen_ai: {
type: "app",
app: "leadzen_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leadzen.ai/api/credits`,
headers: {
Authorization: `Bearer ${this.leadzen_ai.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})