Capture instant feedback on Slack and Teams with Polly
The Polly API allows you to automate and personalize the creation of images for marketing campaigns, emails, and web content. It provides the capability to dynamically generate images with custom text, fonts, and other variables at scale. Specifically in Pipedream, you can harness this API to craft on-the-fly marketing assets that are tailored to individual recipients or audience segments, integrate with email services to deliver personalized images within newsletters, or trigger image creation based on specific events or actions taken by your users.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polly: {
type: "app",
app: "polly",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.polly.ai/api/workflows.trigger`,
params: {
"X-API-TOKEN": `${this.polly.$auth.api_key}`,
},
})
},
})
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.