Worry-Free Waiver Management.
Starts a new job to import an external file as a new design in Canva. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
otter_waiver: {
type: "app",
app: "otter_waiver",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.otterwaiver.com/waivers`,
headers: {
Authorization: `Bearer ${this.otter_waiver.$auth.oauth_access_token}`,
},
})
},
})
The Canva API enables automated interaction with the Canva platform, allowing users to create, edit, and manage designs programmatically. By using this API on Pipedream, you can streamline design workflows, integrate rich media generation into your apps, or even automate content creation across various marketing channels. The core power lies in its ability to seamlessly integrate with other services, making it a vital tool for dynamic content creation that can adapt to data inputs from various sources.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
canva: {
type: "app",
app: "canva",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.canva.com/rest/v1/users/me`,
headers: {
Authorization: `Bearer ${this.canva.$auth.oauth_access_token}`,
},
})
},
})