Trigger workflows on an interval or cron schedule.
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).
Emit new event each time a campaign is created. See the docs
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.
The Overloop API is a powerhouse for sales automation, enabling users to streamline their sales pipeline by automating repetitive tasks, syncing data across platforms, and enhancing lead management. With Pipedream, you can leverage Overloop's capabilities to create detailed, event-driven workflows that respond in real-time to changes in your sales environment. This integration can help maintain a healthy sales funnel, ensure timely follow-ups, and personalize communication at scale.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
overloop: {
type: "app",
app: "overloop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.overloop.com/public/v1/organizations`,
headers: {
"Authorization": `${this.overloop.$auth.api_key}`,
"Content-Type": `application/vnd.api+json; charset=utf-8`,
},
})
},
})