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.
With Nicereply API, you can create powerful customer feedback solutions and
measure customer satisfaction scores in different ways.
Whether you're a developer, marketer, customer service agent, or product
manager, the Nicereply API makes it easy to set up and manage your customer
feedback solutions.
Here are some examples of what you can do with Nicereply API:
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})