import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bridge_interactive_platform: {
type: "app",
app: "bridge_interactive_platform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bridgedataoutput.com/api/v2/test/listings`,
params: {
access_token: `${this.bridge_interactive_platform.$auth.access_token}`,
},
})
},
})
Emit new event when a new listing is created. See the documentation
Get MLS listings from a dataset. See the documentation
Bridge Interactive Platform uses API keys for authentication. When you connect your Bridge Interactive Platform account, Pipedream securely stores the keys so you can easily authenticate to Bridge Interactive Platform APIs in both code and no-code steps.