v1

latestOpenAPI 3.0.02026-07-13171730.7 KB
room

Create Pages For Room

Create new pages in a meeting room (Bulk API)

post/rooms/{room_id}/pages/create_many

Request body

indexinteger

Example request

[
  {
    "entities": [
      {
        "type": "Image",
        "src": "https://picsum.photos/id/237/536/354"
      }
    ]
  }
]

Response

Successful operation

Example response

{
  "pages": [
    {
      "id": "000585f36eed9e8fb6b655b4",
      "entities": [
        {
          "type": "Image",
          "src": "https://picsum.photos/id/237/536/354"
        }
      ]
    },
    {
      "id": "000585f36eed9e8fb6b655b5",
      "entities": [
        {
          "type": "Image",
          "src": "https://picsum.photos/id/237/536/354"
        },
        {
          "type": "Image",
          "src": "https://picsum.photos/id/237/536/354"
        }
      ]
    }
  ]
}