iLovePDF is an online service to work with PDF files completely free and easy to use. Merge PDF, split PDF, compress PDF, office to PDF, and more.
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
Process one or more files with the desired tool. See the documentation
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,
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})