Repuso

Review management solution that helps businesses monitor feedback received on various social media platforms including Facebook.

Integrate the Repuso API with the Node API

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

Add Invite Request with the Repuso API

Add an invite request See docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it

Overview of Repuso

Repuso API is a powerful and easy to use API that offers a wide range of
content creation and management capabilities. With it, you can easily create,
manage, and publish content for use in any application. From creating websites,
blogs and other web content, to building applications for mobile and desktop,
to creating multimedia presentations, Repuso API is a great tool for content
creators of all kinds.

Here is a list of some of the things you can build with the Repuso API:

  • Websites: Create dynamic websites, blogs, and other web content with ease.
  • Applications: Build applications for iOS, Android, Windows, and other
    platforms.
  • Multimedia Presentations: Create stunning multimedia presentations with
    dynamic visuals, audio and video.
  • Content Management: Manage and publish content with great control.
  • Google Analytics Integration: Track and analyze your content with ease.
  • Social Media Integration: Integrate with popular social networks like
    Twitter, Facebook and more.
  • ECommerce Platforms: Create eCommerce websites with great scalability.

Connect Repuso

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

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.