Highrise

Simple CRM software

Go to site
Explore
/
Apps
/
Highrise

Highrise API Integrations

Build and run workflows using the Highrise 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

Highrise is a customer relationship management tool that allows users to track their interactions with clients and customers. The Highrise API allows developers to access and manipulate data stored in Highrise, including contacts, companies, deals, notes, and tasks. With the Highrise API, developers can build a variety of applications, such as CRM systems, customer support tools, and sales tracking applications.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    highrise: {
      type: "app",
      app: "highrise",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.highrise.$auth.subdomain}.highrisehq.com/people/1.xml`,
      auth: {
        username: `${this.highrise.$auth.token}`,
        password: ``,
      },
    })
  },
})

Authentication

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

Authenticating is done with an authentication token, which you'll find on the "My Info" screen in Highrise, in the "Integrations" tab.
For subdomain, use https://[subdomain].highrisehq.com/