with Tiledesk and Nicereply?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tiledesk: {
type: "app",
app: "tiledesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tiledesk.com/v3/users`,
headers: {
"Authorization": `${this.tiledesk.$auth.token}`,
},
})
},
})
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}`,
},
})
},
})