Stormz

Developer


Canvas

A canvas allows you to visually organize workshop’s cards. Use it in the workshops API.

List all canvas

GET /v1/canvas

Response

200 OK
[
  {
    "id": "swot",
    "name": "Swot",
    "background": {
      "cols": 2,
      "rows": 2
    },
    "zones": [

    ]
  }
]

Get one canvas

GET /v1/canvas/:id

Response

200 OK
{
  "id": "swot",
  "name": "Swot",
  "background": {
    "cols": 2,
    "rows": 2
  },
  "zones": [

  ]
}