Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Starts a new job to import an external file as a new design in Canva. See the documentation
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}`,
},
})
},
})