Delighted

Delighted uses the Net Promoter System® to gather real feedback from your customers – in minutes, not weeks. No technical knowledge required.

Integrate the Delighted API with the Formatting API

Setup the Delighted API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Delighted and Formatting remarkably fast. Free for developers.

Sending to People with the Delighted API

Create or update a person and send a survey email. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Delighted

With the Delighted API, you can build a variety of things, including:

  • A way to automate your customer surveys
  • A platform to track your customer satisfaction levels
  • A tool to help you identify areas of improvement for your business

Connect Delighted

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})