with Schedule and Bridge Interactive Platform?
Emit new event when a new listing is created. See the documentation
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Get MLS listings from a dataset. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
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}`,
},
})
},
})