POST
/
rooms
Authorization
Body
curl --request POST \
  --url https://api.pagecall.com/v1/rooms \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Meeting Room - 1",
  "type": "public"
}'
{
  "paging": {
    "limit": "30",
    "offset": "0",
    "total": "number"
  },
  "room": {
    "application_id": "000585f36eed9e8fb6b655b4",
    "created_at": "2023-01-01T01:00:00.000Z",
    "created_user_id": "000585f36eed9e8fb6b655b4",
    "id": "000585f36eed9e8fb6b655b4",
    "is_ephemeral": "boolean",
    "is_recurring": "boolean",
    "is_terminated": "boolean",
    "last_thumbnail_updated_at": "2023-01-01T01:00:00.000Z",
    "meeting_time": "200000",
    "members": [
      {
        "name": "user-1",
        "type": "guest",
        "user_id": "000585f36eed9e8fb6b655b4"
      }
    ],
    "name": "Weekly Meet",
    "record": "boolean",
    "room_template_id": "63d0bf2b2dbc8f9743338be8",
    "started_at": "2023-01-01T01:00:00.000Z",
    "terminated_at": "2023-01-01T01:00:00.000Z",
    "thumbnail_url": "https://example.url/thumbnail.png",
    "type": "public",
    "updated_at": "2023-01-01T01:00:00.000Z"
  }
}

Webhook

When you create a room with webhook parameters, a webhook will be sent via a POST method for each participant’s entry and exit. The request body for this is as follows.

{
  action: "sessionLeft" | "sessionJoined",
  payload: {
    roomId: string,
    userId?: string,
    memberId: string,
    sessionId: string,
    sessionsCount: number,
    membersCount: number,
    timestamp: string // e.g. '2022-05-31T12:38:15.059Z'
  }
}

Authorizations

Authorizationheaderrequired
string

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
max_meeting_seconds
integer

Determines the maximum meeting time in seconds. Once this time has elapsed, the meeting room will be automatically terminated. The 'meeting time' refers to the duration during which two or more participants are connected. If a max_meeting_seconds is set, the timer UI will display the remaining meeting time, rather than the elapsed time.

members
object[]

Specify inviting user_id and type

namerequired
string

Human-readable name of the room

record
Default: true
boolean

All meeting will be recorded

typerequired
enum<string>

Room can have three different type

  • open - anyone who obtain this room url can join and replay the meet.
  • public - any member who haved joined in same worksapce can join and replay the meet.
  • private - only invited workspace user can join and replay the meet.
Available options:
open,
public,
private
webhook
object

Response

200 - application/json
paging
object

Details of pagination used for current responses.

room
object

Information about room