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": `*/*`,
},
})
},
})
Posts to a social media platform. See documentation
Creates a new video using a template. The template takes an ID and input parameters. See documentation
Delete a video, carousel, or graphic. See documentation
Get a video, carousel, or graphic. 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.