Nicereply

Nicereply helps our customers tell us whether they’re getting what they need. This creates opportunities to respond to specific feedback in the short-term while developing longer-term solutions in our approach.

Integrate the Nicereply API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New CES Rating from Nicereply API
Nicereply + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New CSAT Rating from Nicereply API
Nicereply + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Customer Rating from Nicereply API
Nicereply + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New NPS Rating from Nicereply API
Nicereply + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Survey Rating from Nicereply API
Nicereply + Formatting
 
Try it
New CES Rating from the Nicereply API

Emit new event on each new CES rating.

 
Try it
New CSAT Rating from the Nicereply API

Emit new event on each new CSAT rating.

 
Try it
New Customer Rating from the Nicereply API

Emit new event on each new customer rating.

 
Try it
New NPS Rating from the Nicereply API

Emit new event on each new NPS rating.

 
Try it
New Survey Rating from the Nicereply API

Emit new event on each new survey rating.

 
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
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Nicereply

The Nicereply API enables the integration of customer satisfaction data into various business workflows. With its API, you can automate the collection of customer feedback, analyze customer sentiment, track agent performance, and generate actionable insights. Leveraging Pipedream’s capabilities, you can create powerful automations that respond to Nicereply events, synchronize data across platforms, and trigger actions in other applications, enriching CRM data or streamlining support workflows.

Connect Nicereply

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    nicereply: {
      type: "app",
      app: "nicereply",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.nicereply.com/v1/users`,
      headers: {
        "Accept": `application/json`,
      },
      auth: {
        username: ``,
        password: `${this.nicereply.$auth.private_key}`,
      },
    })
  },
})

Connect Formatting

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