GatherUp

GatherUp™ is a customer experience and online review engine that enables insights, empowers marketing and converts customers.

Go to site
Explore
/
Apps
/
GatherUp

GatherUp API Integrations

Build and run workflows using the GatherUp API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

You can use the GatherUp API to build a variety of applications, including:

  • A customer feedback management system
  • A customer engagement platform
  • A customer loyalty program
  • A customer experience management system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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}`,
      },
    })
  },
})
Create Customer with GatherUp API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + GatherUp
 
Try it
Send Message (Advanced) with Discord Webhook API on New Feedback Received from GatherUp API
GatherUp + Discord Webhook
 
Try it
Create Customer with GatherUp API on New Submission from Typeform API
Typeform + GatherUp
 
Try it
Create Customer with GatherUp API on Custom Events from Zoom API
Zoom + GatherUp
 
Try it
Get Film with SWAPI - Star Wars API on New Feedback Received from GatherUp API
GatherUp + SWAPI - Star Wars
 
Try it
New Feedback Received from the GatherUp API

Emit new event on each new feedback received.

 
Try it
New Negative Feedback Received from the GatherUp API

Emit new event on each new negative feedback received.

 
Try it
New Positive Feedback Received from the GatherUp API

Emit new event on each new positive feedback received.

 
Try it
Create Customer with the GatherUp API

Creates a customer. See docs here

 
Try it

Authentication

GatherUp uses API keys for authentication. When you connect your GatherUp account, Pipedream securely stores the keys so you can easily authenticate to GatherUp APIs in both code and no-code steps.

You can get your Client ID and your Bearer Token on the Account Owner Details page.