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": `*/*`,
},
})
},
})
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
Blotato uses API keys for authentication. When you connect your Blotato account, Pipedream securely stores the keys so you can easily authenticate to Blotato APIs in both code and no-code steps.