The Autopilot AI Workers For Small Business Growth
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
burstyai: {
type: "app",
app: "burstyai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.burstyai.com/burstyai/storage/url`,
headers: {
Authorization: `Bearer ${this.burstyai.$auth.api_key}`,
"accept": `application/json`,
},
params: {
fileList: `xxx/yyy.jpg`, //Comma-separated s3 object IDs used to fetch corresponding download URLs,
//e.g. for a s3 object ID as @url{xxx/yyy.jpg}@, the parameter value shall
//be xxx/yyy.jpg only, excluding @url{}@ is a must.
},
})
},
})
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.