Customer.guru is an easy-to-setup tool for tracking customer satisfaction using Net Promoter Score. Connect with your customers, in a matter of minutes.
The Customer.guru API is a potent tool for gauging customer satisfaction and Net Promoter Score (NPS). By integrating with Pipedream, you can automate the collection and analysis of customer feedback, trigger targeted actions based on NPS results, and meld those insights with other data sources. Pipedream's serverless platform lets you create workflows that react to Customer.guru events in real-time, enrich customer data, and drive personalized engagements.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
customer_guru: {
type: "app",
app: "customer_guru",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://customer.guru/export/ratings`,
headers: {
"Content-Type": `application/json`,
},
params: {
api_token: `${this.customer_guru.$auth.api_token}`,
api_secret: `${this.customer_guru.$auth.api_secret}`,
},
})
},
})
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`,
},
})
},
})