An affordable and flexible real estate conversion engine, built to create a lifetime of opportunities for your business
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
realgeeks: {
type: "app",
app: "realgeeks",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://receivers.leadrouter.realgeeks.com/rest/sites/${this.realgeeks.$auth.site_uuid}/users`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.realgeeks.$auth.username}`,
password: `${this.realgeeks.$auth.password}`,
},
})
},
})
RealGeeks uses API keys for authentication. When you connect your RealGeeks account, Pipedream securely stores the keys so you can easily authenticate to RealGeeks APIs in both code and no-code steps.
Your API Username and Password are sent to your email when you request access to RealGeeks API. You will also need to request your site_uuid
as well to use the API.