The Gleap API allows for the seamless integration of customer feedback into your product development cycle. With Gleap, you can collect bug reports, feature requests, and general feedback, all enriched with screenshots, replay videos, and logs to give you comprehensive insights into user experiences. In Pipedream, you can harness this API to automate workflows, connect feedback to your issue trackers or communication platforms, and analyze data to inform product improvements.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gleap: {
type: "app",
app: "gleap",
}
},
async run({steps, $}) {
const data = {
"userId": `1234`,
"name": `John Doe`,
"email": `john@doe.com`,
"value": `1927`,
"phone": `+1 (129) 18283 8292`,
"createdAt": `2022-09-28T10:11:18.156Z`,
}
return await axios($, {
url: `https://api.gleap.io/projects `,
headers: {
Authorization: `Bearer ${this.gleap.$auth.oauth_access_token}`,
"Api-Token": `${this.gleap.$auth.secret_api_token}`,
"Content-Type": `application/json`,
},
})
},
})
Sync Feedback to Project Management Tools: Automatically create new tasks or tickets in project management tools like Jira or Trello whenever a new feedback is submitted through Gleap. This keeps your development team instantly in the loop and ensures no user feedback slips through the cracks.
Trigger Notifications Based on Feedback Severity: Set up a workflow that evaluates the severity of feedback from Gleap and triggers instant alerts through communication platforms like Slack, Discord, or email for high-severity reports, ensuring rapid response to critical issues.
Feedback Aggregation and Analysis: Collect and aggregate feedback data from Gleap into a Google Sheets or Airtable base for advanced analysis and reporting. Use this data to spot trends, prioritize product enhancements, and make data-driven decisions.
Gleap uses OAuth authentication. When you connect your Gleap account, Pipedream will open a popup window where you can sign into Gleap and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Gleap API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.gleap.io/auth
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}}