Trigger workflows on an interval or cron schedule.
Process one or more files with the desired tool. 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 iLovePDF API lets you automate PDF processing tasks like merging, splitting, compressing, and converting PDFs to other formats. iLovePDF's robust functionality can be harnessed in Pipedream workflows, which may include handling PDFs generated from various triggers, processing them as needed, and connecting to other services for storage, data extraction, or further actions based on the transformed PDFs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ilovepdf: {
type: "app",
app: "ilovepdf",
}
},
async run({steps, $}) {
const data = {
"public_key": `${this.ilovepdf.$auth.public_key}`,
}
return await axios($, {
method: "post",
url: `https://api.ilovepdf.com/v1/auth`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})