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
Create or update a batch of contacts by its ID or email. 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 Wiza API offers robust tools for scraping LinkedIn profiles and turning them into structured data such as emails, names, and company details. This data can be pivotal for sales and marketing professionals to build lead lists, validate contact information, and enrich existing databases directly through API integration. Leveraging this API on Pipedream allows users to automate the entire process of lead generation and management by connecting Wiza to a myriad of other services like CRMs, email marketing platforms, and data analysis tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wiza: {
type: "app",
app: "wiza",
}
},
async run({steps, $}) {
const data = {
"list": {
"name": "VP of Sales in San Francisco",
"enrichment_level": "partial",
"email_options": {
"accept_work": true,
"accept_personal": true,
"accept_generic": true
},
"items": [
{
"full_name": "Stephen Hakami",
"company": "Wiza",
"domain": "wiza.co",
"profile_url": "https://www.linkedin.com/in/stephen-hakami-5babb21b0/"
}
]
}
}
return await axios($, {
method: "post",
url: `https://wiza.co/api/lists`,
headers: {
Authorization: `Bearer ${this.wiza.$auth.api_key}`,
},
data,
})
},
})