Delighted uses the Net Promoter System® to gather real feedback from your customers – in minutes, not weeks. No technical knowledge required.
Create or update a person and send a survey email. See the docs here
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Delighted API, you can build a variety of things, including:
module.exports = defineComponent({
props: {
delighted: {
type: "app",
app: "delighted",
}
},
async run({steps, $}) {
const delighted = require('delighted')(this.delighted.$auth.api_key)
return await delighted.metrics.retrieve()
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})