Qualaroo

Qualaroo makes it easy to survey specific users in context while they are looking at your product, service & brand.

Integrate the Qualaroo API with the GitHub API

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

Create Issue with GitHub API on New Survey Created from Qualaroo API
Qualaroo + GitHub
 
Try it
Create Issue with GitHub API on New Survey Response Received from Qualaroo API
Qualaroo + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Survey Created from Qualaroo API
Qualaroo + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Survey Response Received from Qualaroo API
Qualaroo + GitHub
 
Try it
Create Branch with GitHub API on New Survey Created from Qualaroo API
Qualaroo + GitHub
 
Try it
New Survey Created from the Qualaroo API

Emit new event when a survey is created.

 
Try it
New Survey Response Received from the Qualaroo API

Emit new event when a survey response is received.

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See docs here

 
Try it
Create Gist with the GitHub API

Allows you to add a new gist with one or more files. See docs here

 
Try it
Create Issue Comment with the GitHub API

Create a new comment in a issue. See docs here

 
Try it

Overview of Qualaroo

Using the Qualaroo API, you can build comprehensive customer feedback systems
for your business or website. Qualaroo helps you discover the information you
need from your customers, capture every detail and make changes to improve the
customer experience. With Qualaroo, you can easily build surveys, polls, and
other forms of customer feedback.

Examples of Things You Can Build Using the Qualaroo API:

  • Surveys to measure customer satisfaction
  • Polls to quickly collect opinions
  • Gather in-depth customer insights
  • Create targeted questions for different customers
  • Capture customer feedback and analyze it in real-time
  • Customize text and coding to create surveys and polls
  • Deliver survey results to your development team
  • Integrate surveys into your website or mobile app

Connect Qualaroo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    qualaroo: {
      type: "app",
      app: "qualaroo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.qualaroo.com/api/v1/nudges/{survey_id}/responses.json`,
      auth: {
        username: `${this.qualaroo.$auth.api_key}`,
        password: `${this.qualaroo.$auth.api_secret}`,
      },
    })
  },
})

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})