Enable your organization to create, collaborate, and publish visual content with a secure platform designed for enterprise.
Creates an asynchronous job to autofill a design from a brand template with your input information. See the documentation
Starts a new job to export a file from Canva. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
canva_enterprise: {
type: "app",
app: "canva_enterprise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.canva.com/rest/v1/users/me`,
headers: {
Authorization: `Bearer ${this.canva_enterprise.$auth.oauth_access_token}`,
},
})
},
})
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.