with npm and Miro Developer App?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a card item is updated on a Miro board
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when an item's position changes in a Miro Custom App.
Emit new event when a new card item is created on a Miro board
Creates a card item on a Miro board. See the documentation
Creates a sticky note on a Miro board. See the docs
The Miro Developer App API lets you extend the functionality of Miro, an online collaborative whiteboarding platform. On Pipedream, you can automate interactions with Miro boards, such as creating or updating content, and extracting data for reporting or integration purposes. This can streamline collaboration and project management by automating repetitive tasks and connecting Miro with other tools and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
miro_custom_app: {
type: "app",
app: "miro_custom_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.miro.com/v2/boards`,
headers: {
Authorization: `Bearer ${this.miro_custom_app.$auth.access_token}`,
},
})
},
})