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: ``,
},
})
},
})
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/