Zonka Feedback

Zonka Feedback is a multi-channel feedback system and survey app with actionable insights, real-time reporting and collaborative inbox.

Integrate the Zonka Feedback API with the Discord Bot API

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

Send Email Survey with Zonka Feedback API on New Message in Channel from Discord Bot API
Discord Bot + Zonka Feedback
 
Try it
Send SMS Survey with Zonka Feedback API on New Message in Channel from Discord Bot API
Discord Bot + Zonka Feedback
 
Try it
Add Role with Discord Bot API on New Survey Response from Zonka Feedback API
Zonka Feedback + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Survey Response from Zonka Feedback API
Zonka Feedback + Discord Bot
 
Try it
Create Channel Invite with Discord Bot API on New Survey Response from Zonka Feedback API
Zonka Feedback + Discord Bot
 
Try it
New Survey Response from the Zonka Feedback API

Emit new event for each survey response. See docs

 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
Try it
New Guild Member from the Discord Bot API

Emit new event for every member added to a guild

 
Try it
Send Email Survey with the Zonka Feedback API

Send a survey by email. See docs

 
Try it
Add Role with the Discord Bot API

Assign a role to a user. Remember that your bot requires the MANAGE_ROLES permission. See the docs here

 
Try it
Send SMS Survey with the Zonka Feedback API

Send a survey by SMS. Please ensure you have enough SMS credits. See docs

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Create Channel Invite with the Discord Bot API

Create a new invite for the channel. See the docs here

 
Try it

Overview of Zonka Feedback

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:

  • Create a customer feedback questionaire for your products or services
  • Build an in-store experience feedback form
  • Create customer satisfaction surveys
  • Integrate customer feedback with your existing CRM system
  • Collect employee engagement and satisfaction feedback
  • Develop real-time customer support systems
  • Put together custom analytics reports
  • Develop customer satisfaction scorecards
  • Create custom satisfaction scoring models
  • Create customer feedback trend reports
  • Create surveys for product or service launches
  • Design customer loyalty systems
  • Monitor sales and customer experiences to pinpoint areas for improvement
  • Develop customer segmentation and targeting models

Connect Zonka Feedback

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Discord Bot

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord_bot: {
      type: "app",
      app: "discord_bot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        "Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
      },
    })
  },
})