with Alteryx Analytics Cloud and Apex 27?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alteryx_analytics_cloud: {
type: "app",
app: "alteryx_analytics_cloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.alteryx_analytics_cloud.$auth.region}.alteryxcloud.com/v4/people/current`,
headers: {
Authorization: `Bearer ${this.alteryx_analytics_cloud.$auth.oauth_access_token}`,
},
})
},
})
The Apex 27 API provides real estate management tools that can streamline property listings, client interactions, and office administration. With Pipedream's serverless integration platform, this API can be a powerhouse for automations, connecting with a multitude of apps to enhance real estate business processes. By harnessing the power of Apex 27, you can automate listing updates, synchronize client information across platforms, and generate real-time notifications for key activities, ensuring that agents stay ahead of the market and deliver top-notch service.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apex_27: {
type: "app",
app: "apex_27",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apex27.co.uk/users`,
headers: {
"X-Api-Key": `${this.apex_27.$auth.api_key}`,
},
})
},
})