Social Intents is a social apps platform that allows live chat with website visitors to offer great customer service and sell more right from MS Teams, Slack, Zoom, or Webex.
The Social Intents API enables seamless integration of live chat, customer feedback, and email list building services into your digital platforms. You can byukd workflows that automatically trigger actions based on chat events, gather insights from customer interactions, and enhance your marketing strategies by connecting Social Intents to various other tools, like CRMs, email marketing services, and databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
social_intents: {
type: "app",
app: "social_intents",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.socialintents.com/v1/api/chats/`,
auth: {
username: `${this.social_intents.$auth.account_id}`,
password: `${this.social_intents.$auth.api_token}`,
},
})
},
})
The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klaviyo: {
type: "app",
app: "klaviyo",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://a.klaviyo.com/api/accounts/`,
headers: {
"Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
"revision": `2023-12-15`,
},
})
},
})