with Customer.guru and Pro Ledger?
Create a new record in the Pro Ledger platform. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pro_ledger: {
type: "app",
app: "pro_ledger",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pro-ledger.com/api/v1/auth/check_api_key`,
headers: {
"X-API-Key": `${this.pro_ledger.$auth.api_key}`,
},
})
},
})