with Schedule and Blotato?
Creates a new video using a template. The template takes an ID and input parameters. See documentation
Uploads a media file by providing a URL. The uploaded media will be processed and stored, returning a new media URL that can be used to publish a post. See 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.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blotato: {
type: "app",
app: "blotato",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://backend.blotato.com/v2/users/me`,
headers: {
"blotato-api-key": `${this.blotato.$auth.api_key}`,
"accept": `*/*`,
},
})
},
})