Zonka Feedback is a multi-channel feedback system and survey app with actionable insights, real-time reporting and collaborative inbox.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Zonka Feedback API, you can create powerful tools for collecting
customer feedback. Here are just a few examples of the types of things you can
build with their API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zonka_feedback: {
type: "app",
app: "zonka_feedback",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apis.zonkafeedback.com/users`,
headers: {
"Z-API-TOKEN": `${this.zonka_feedback.$auth.auth_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})