Email Marketing Software
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
Robly API enables seamless integration of Robly's email marketing tools with other services. Pipedream acts as a bridge, automating tasks between Robly and various apps to streamline email campaigns, subscriber management, and analytical reporting. Using Pipedream with Robly API, you can trigger workflows based on subscriber activity, sync contact lists across platforms, and automate email campaign follow-ups, enhancing the efficiency and personalization of marketing efforts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
robly: {
type: "app",
app: "robly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.robly.com/api/v1/contacts`,
params: {
api_key: `${this.robly.$auth.api_key}`,
api_id: `${this.robly.$auth.api_id}`,
},
})
},
})
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}`,
},
})
},
})