IDXBroker empowers real estate agents with lead management solutions, customizable home search, and fully hosted websites.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
idx_broker: {
type: "app",
app: "idx_broker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.idxbroker.com/leads/lead`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
"accesskey": `${this.idx_broker.$auth.access_key}`,
},
})
},
})
IDX Broker uses API keys for authentication. When you connect your IDX Broker account, Pipedream securely stores the keys so you can easily authenticate to IDX Broker APIs in both code and no-code steps.
Sign in and copy your Access Key from the IDX Control Panel.