GatherUp™ is a customer experience and online review engine that enables insights, empowers marketing and converts customers.
Retrieve multiple RSS feeds and return a merged array of items sorted by date See documentation
The GatherUp API facilitates the automation of customer feedback and review management processes. It enables seamless integration with Pipedream's serverless platform for creating workflows that can aggregate reviews, trigger actions based on customer feedback, and enhance reputation management. By leveraging the GatherUp API, businesses can automate the collection and analysis of customer reviews, respond to feedback promptly, and harness insights to improve service quality and customer satisfaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gatherup: {
type: "app",
app: "gatherup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.gatherup.com/api/v2/user/managers/get`,
headers: {
Authorization: `Bearer ${this.gatherup.$auth.bearer_token}`,
},
params: {
clientId: `${this.gatherup.$auth.client_id}`,
},
})
},
})
The RSS app allows users to automatically fetch and parse updates from web feeds. This functionality is pivotal for staying abreast of content changes or updates from websites, blogs, and news outlets that offer RSS feeds. With Pipedream, you can harness the RSS API to trigger workflows that enable a broad range of automations, like content aggregation, monitoring for specific keywords, notifications, and data synchronization across platforms.
module.exports = defineComponent({
props: {
rss: {
type: "app",
app: "rss",
}
},
async run({steps, $}) {
// Retrieve items from a sample feed
const Parser = require('rss-parser');
const parser = new Parser();
const stories = []
// Replace with your feed URL
const url = "https://pipedream.com/community/latest.rss"
const feed = await parser.parseURL(url);
const { title, items } = feed
this.title = title
if (!items.length) {
$end("No new stories")
}
this.items = items
},
})