with Bridge Interactive Platform and Formatting?
Emit new event when a new listing is created. See the documentation
Get MLS listings from a dataset. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})