GET
/
rooms
/
{room_id}
/
sessions
curl --request GET \
  --url https://api.pagecall.com/v1/rooms/{room_id}/sessions \
  --header 'Authorization: Bearer <token>'
{
  "sessions": [
    {
      "connected_at": "2023-01-01T01:00:00.000Z",
      "disconnected_at": "2023-01-01T01:30:00.000Z",
      "id": "000585f36eed9e8fb6b655b4",
      "member_id": "000585f36eed9e8fb6b655b4",
      "user_id": "000585f36eed9e8fb6b655b4"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Path Parameters

room_id
string
required

Query Parameters

user_id
string

(Optional) Filter by user_id

is_connecting
boolean

(Optional) Filter by their online status

Response

200 - application/json
sessions
object[]