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}`,
},
})
},
})
Emit new event when an item's position changes in a Miro Custom App.
Miro Developer App uses API keys for authentication. When you connect your Miro Developer App account, Pipedream securely stores the keys so you can easily authenticate to Miro Developer App APIs in both code and no-code steps.
With this connection you can build your own Miro App and connect it to Pipedream.
Follow the REST API app quickstart guide on Miro to create an app that can interact with your Miro team over the Miro REST API.
This will produce a unique Access Token for accessing your boards. Once you have finished those steps, paste that Access Token in to the field below.