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
Executes an API function from a cloud backend. 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 AppDrag API lets you manage cloud functions, databases, and mail sending features within your AppDrag projects. With Pipedream, you can harness these capabilities to automate workflows such as syncing data between different platforms, processing form submissions, or triggering communication sequences. By connecting AppDrag’s API to Pipedream, you gain the ability to create serverless workflows that can respond to various triggers like webhooks, schedules, or even actions from other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appdrag: {
type: "app",
app: "appdrag",
}
},
async run({steps, $}) {
const data = {
"APIKey": `${this.appdrag.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://${this.appdrag.$auth.app_id}.appdrag.site/api/testfunc`,
headers: {
"Content-Type": `x-www-form-urlencoded`,
},
data,
})
},
})