GatherUp™ is a customer experience and online review engine that enables insights, empowers marketing and converts customers.
Go to siteYou can use the GatherUp API to build a variety of applications, including:
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}`,
},
})
},
})
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.