Trigger workflows on an interval or cron schedule.
List all the uploaded files and folders in your ImageKit.io media library. 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.
ImageKit.io API lets you manage, optimize, and deliver images dynamically for your web applications. On Pipedream, you can integrate this API to construct serverless workflows that automate your image operations and connect with other services. You can upload images from various sources, apply real-time transformations, and track media assets without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagekit_io: {
type: "app",
app: "imagekit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagekit.io/v1/files`,
auth: {
username: `${this.imagekit_io.$auth.private_key}`,
password: ``,
},
})
},
})