Room Endpoints
Create Pages For Room
Create new pages in a meeting room (Bulk API)
POST
Currently, You cannot try this API on the docs.
Request Body Example
This will create two pages, each containing a picture of a dog and a fox respectively.
URL Encoding Requirement
Notice: Always encode URLs when using Pagecall’s APIs. Unencoded URLs may lead to errors, for which Pagecall is not liable.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
room id
Response
200
application/json
Successful operation
Created pages
Example:
[
{
"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"
}
]
}
]