An ecosystem for the growth of your entire team 🌱
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 Bloom Growth API provides a suite of tools for business management and growth, focusing on customer relationships, project management, and data analysis. With Pipedream, you can leverage this API to create automated workflows that integrate Bloom Growth's functionalities with other apps, streamline processes, and enhance data-driven decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bloom_growth: {
type: "app",
app: "bloom_growth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.bloomgrowth.com/api/v1/users/mine`,
headers: {
Authorization: `Bearer ${this.bloom_growth.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})