Trigger workflows on an interval or cron schedule.
Generates a campaign experience based on a selected campaign. See the documentation
Creates an image experience from a template. See the documentation
Creates a video experience from a template. See the 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.
The Nexweave API lets you create personalized images and videos at scale, transforming static designs into dynamic templates. With it, you can automate the generation of customized content for email campaigns, social media, or advertising, by integrating user-specific data to create a more engaging and personalized experience. On Pipedream, you can harness this power to craft serverless workflows that trigger Nexweave's capabilities in response to various events and integrate them with other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nexweave: {
type: "app",
app: "nexweave",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nexweave.com/api/v1/integration/campaign`,
headers: {
"X-API-KEY": `${this.nexweave.$auth.api_key}`,
},
})
},
})