The email delivery system you can rely on
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
UniOne is an email service provider that offers a broad range of features for sending and managing email campaigns. Through its API, you can programmatically send transactional emails, organize mailing lists, track email delivery statuses, and analyze recipient engagements. When integrated on Pipedream, UniOne becomes a part of your serverless workflow, enabling you to automate email operations with various triggers and actions from other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
unione: {
type: "app",
app: "unione",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://${this.unione.$auth.server}/en/transactional/api/v1/system/info.json`,
headers: {
"X-API-KEY": `${this.unione.$auth.api_key}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
data: {} //this empty object is required for the test request to work
})
},
})
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}`,
},
})
},
})