HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Emit new event on each new negative feedback received.
Emit new event on each new positive feedback received.
Emit new event when a specified property is provided or updated on a company. See the documentation
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
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}`,
},
})
},
})
The GatherUp API facilitates the automation of customer feedback and review management processes. It enables seamless integration with Pipedream's serverless platform for creating workflows that can aggregate reviews, trigger actions based on customer feedback, and enhance reputation management. By leveraging the GatherUp API, businesses can automate the collection and analysis of customer reviews, respond to feedback promptly, and harness insights to improve service quality and customer satisfaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gatherup: {
type: "app",
app: "gatherup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.gatherup.com/api/v2/user/managers/get`,
headers: {
Authorization: `Bearer ${this.gatherup.$auth.bearer_token}`,
},
params: {
clientId: `${this.gatherup.$auth.client_id}`,
},
})
},
})