Miro Developer App

The Visual Collaboration Platform for Every Team.

Integrate the Miro Developer App API with the Formatting API

Setup the Miro Developer App API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Miro Developer App and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on Item Position Changed from Miro Developer App API
Miro Developer App + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Item Position Changed from Miro Developer App API
Miro Developer App + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on Item Position Changed from Miro Developer App API
Miro Developer App + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on Item Position Changed from Miro Developer App API
Miro Developer App + Formatting
 
Try it
[Date/Time] Format with Formatting API on Item Position Changed from Miro Developer App API
Miro Developer App + Formatting
 
Try it
Item Position Changed from the Miro Developer App API

Emit new event when an item's position changes in a Miro Custom App.

 
Try it
Create Board with the Miro Developer App API

Creates a Miro board. See the docs.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Create Shape with the Miro Developer App API

Creates a shape on a Miro board. See the docs.

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Create Sticky Note with the Miro Developer App API

Creates a sticky note on a Miro board. See the docs.

 
Try it

Connect Miro Developer App

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})