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
Runs a command on a computer. Refer to the TRIGGERcmd Forum to learn more.
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. 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}`,
},
})
},
})
TRIGGERcmd is a cloud service that allows you to execute commands on your computers remotely through a REST API or via voice command with smart home integrators. With Pipedream's integration capabilities, you can create custom workflows to automate tasks across various apps and services. For instance, you could set up a serverless workflow to trigger scripts on your computer when specific events occur in other apps, such as receiving an email, a new GitHub commit, or a scheduled timer.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
triggercmd: {
type: "app",
app: "triggercmd",
}
},
async run({steps, $}) {
const data = {
"computer": `insert_computer_name_here`,
"trigger": `insert_trigger_name_here`,
}
return await axios($, {
method: "post",
url: `https://www.triggercmd.com/oauth/pipedream`,
headers: {
Authorization: `Bearer ${this.triggercmd.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})