Microboard.Developers
ApiAll

Get all items in a board

GET
/developers/boards/{boardId}/items/all

Authorization

apiKey<token>

In: query

Path Parameters

boardId
Required
string
curl -X GET "https://api.microboard.com/api/v1/developers/boards/string/items/all" \
  -H "apiKey: <token>"

List of board items

[
  {
    "id": "string",
    "itemType": "Shape",
    "transformation": {
      "rotate": 0,
      "scaleX": 1,
      "scaleY": 1,
      "translateX": 0,
      "translateY": 0
    },
    "text": {
      "children": [
        {
          "type": "paragraph",
          "children": [
            {
              "text": "string",
              "type": "text",
              "fontSize": 14,
              "fontColor": "black",
              "fontFamily": "Arial",
              "lineHeight": 1.4,
              "bold": false,
              "italic": false,
              "underline": false,
              "lineThrough": false,
              "fontHighlight": ""
            }
          ],
          "horisontalAlignment": "left"
        }
      ],
      "insideOf": "Frame",
      "itemType": "RichText",
      "realSize": 0,
      "placeholderText": "string",
      "containerMaxWidth": 0,
      "verticalAlignment": "center"
    }
  }
]