An end-to-end Conversational Experience Management Platform that helps get 40% better response rate.
Go to siteThe 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.
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}`,
},
})
},
})
Automate Response Acknowledgment: Send a thank you email automatically using the Gmail app on Pipedream when a new SurveySparrow response is received. This keeps your respondents engaged and shows appreciation for their input.
Sync Survey Data to Google Sheets: Every time a survey is completed, append the responses to a Google Sheet for easy data analysis and sharing. This workflow can be vital for teams that rely on collaborative data analysis.
Trigger Follow-up Actions Based on Responses: Use SurveySparrow responses to trigger follow-up tasks or actions in project management tools like Trello or Asana. For instance, if a respondent reports an issue, automatically create a Trello card to ensure it is addressed in a timely manner.
Emit new event when a customer effort score (CES) survey receives a new submission.
Emit new event when a customer satisfaction (CSAT) survey receives a new submission.
Emit new event when a net promoter score (NPS) survey receives a new submission.
Emit new event each time a the specified survey receives a response.
Sends a saved NPS share template via SMS to given mobile number recipients. See the documentation
Sends a saved email share template to a provided email address. Configure the saved template's name and the recipient's email address. See the documentation
SurveySparrow uses OAuth authentication. When you connect your SurveySparrow account, Pipedream will open a popup window where you can sign into SurveySparrow and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any SurveySparrow API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://app.surveysparrow.com/o/oauth/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://app.surveysparrow.com/o/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://app.surveysparrow.com/o/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}