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.
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.
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}`,
},
})
},
})
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})