Digistore24 is a full-service online sales platform with one of the world’s largest affiliate marketplaces that helps you grow & scale your business.
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
Digistore24 API allows for automation of tasks related to digital sales, such as product management, order processing, and affiliate tracking. Using Pipedream, you can craft workflows that automate repetitive tasks, integrating with other services to streamline your digital sales pipeline. Pipedream's serverless platform facilitates the creation of these workflows without the need for dedicated infrastructure, making it easier to connect Digistore24 to a multitude of other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
digistore24: {
type: "app",
app: "digistore24",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.digistore24.com/api/call/getUserInfo`,
headers: {
"X-DS-API-KEY": `${this.digistore24.$auth.api_key}`,
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}`,
},
})
},
})