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
Add tags to a new subscriber See the documentation.
Create or update a batch of contacts by its ID or email. See the documentation
Create a new subscriber into a list 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 GiantCampaign API facilitates the automation and integration of email marketing capabilities into various applications and workflows. With this API, you can manage contact lists, design and send email campaigns, track performance metrics, and segment your audience for targeted marketing. Pipedream, with its ability to connect to hundreds of apps, provides a robust platform to create serverless workflows that leverage the capabilities of GiantCampaign. By tapping into event sources and actions, you can seamlessly integrate GiantCampaign with other services to enhance your marketing efforts and streamline processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
giantcampaign: {
type: "app",
app: "giantcampaign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://acc.giantcampaign.com/api/v1/lists`,
headers: {
"accept": `application/json`,
},
params: {
api_token: `${this.giantcampaign.$auth.api_token}`,
},
})
},
})