Commerce platform built on modern MACH principles
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
Commercetools is a flexible, cloud-based e-commerce platform offering APIs that allow you to build a wide array of custom shopping experiences. Using Pipedream, you can harness these APIs to automate various e-commerce operations, such as inventory management, order processing, and customer engagement. Its headless architecture means that you can decouple the backend from the frontend, giving you the freedom to create unique user interfaces while Pipedream manages the heavy lifting on the backend.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
commercetools: {
type: "app",
app: "commercetools",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.commercetools.$auth.api_host}${this.commercetools.$auth.projectKey}/stores`,
headers: {
Authorization: `Bearer ${this.commercetools.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})