SurveySparrow

An end-to-end Conversational Experience Management Platform that helps get 40% better response rate.

Integrate the SurveySparrow API with the GitHub API

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

Create Issue with GitHub API on New CES Submission (Instant) from SurveySparrow API
SurveySparrow + GitHub
 
Try it
Create Issue with GitHub API on New CSAT Submission (Instant) from SurveySparrow API
SurveySparrow + GitHub
 
Try it
Create Issue with GitHub API on New NPS Submission (Instant) from SurveySparrow API
SurveySparrow + GitHub
 
Try it
Create Issue with GitHub API on New Survey Response from SurveySparrow API
SurveySparrow + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New CES Submission (Instant) from SurveySparrow API
SurveySparrow + GitHub
 
Try it
New CES Submission (Instant) from the SurveySparrow API

Emit new event when a customer effort score (CES) survey receives a new submission.

 
Try it
New CSAT Submission (Instant) from the SurveySparrow API

Emit new event when a customer satisfaction (CSAT) survey receives a new submission.

 
Try it
New NPS Submission (Instant) from the SurveySparrow API

Emit new event when a net promoter score (NPS) survey receives a new submission.

 
Try it
New Survey Response (Instant) from the SurveySparrow API

Emit new event each time a the specified survey receives a response.

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
Create Contact with the SurveySparrow API

Creates a new contact. See the documentation

 
Try it
Create Issue with the GitHub API

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

 
Try it
Create Survey with the SurveySparrow API

Creates a new survey. See the documentation

 
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

Overview of SurveySparrow

The SurveySparrow API lets you tap into a robust platform for gathering feedback and insights. With Pipedream, you can automate interactions with your surveys, manage contacts, and analyze responses in real time. You can create workflows that trigger on new survey responses, sync data to other services, or even kick off email campaigns based on survey results. The power of Pipedream's serverless platform means you can integrate SurveySparrow with hundreds of other apps, enabling limitless automation scenarios without writing extensive code.

Connect SurveySparrow

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: {
    surveysparrow: {
      type: "app",
      app: "surveysparrow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.surveysparrow.com/v1/contacts`,
      headers: {
        Authorization: `Bearer ${this.surveysparrow.$auth.access_token}`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

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`,
      },
    })
  },
})