Send a Net Promoter Score® survey to your clients and start gathering, analyzing and acting on the received customer feedback.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
retently: {
type: "app",
app: "retently",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.retently.com/api/v2/nps/customers`,
headers: {
"Authorization": `api_key=${this.retently.$auth.api_key}`,
},
})
},
})
Retently uses API keys for authentication. When you connect your Retently account, Pipedream securely stores the keys so you can easily authenticate to Retently APIs in both code and no-code steps.