Trigger workflows on an interval or cron schedule.
Schedules an Automation Server action request for a homekit scene. See the documentation
Schedules an Automation Server action request for a shortcut. See the documentation
Sends a smart notification to your devices. 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.
The Pushcut API enables the automation of iOS notifications with custom actions, triggering events based on various conditions. On Pipedream, you can harness this functionality to create intricate workflows, combining Pushcut notifications with a multitude of services to act based on data from APIs, schedules, or other apps. Think of Pushcut as a bridge between the real world and your digital tasks, letting you know when to act and offering shortcuts to execute specific automations directly from your iOS devices.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pushcut: {
type: "app",
app: "pushcut",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pushcut.io/v1/devices`,
headers: {
"Accept": `application/json`,
"API-Key": `${this.pushcut.$auth.api_key}`,
},
})
},
})