cURL
curl --request GET \ --url https://api.pagecall.com/v1/rooms/{room_id}/sessions \ --header 'Authorization: Bearer <token>'
{ "sessions": [ { "id": "000585f36eed9e8fb6b655b4", "member_id": "000585f36eed9e8fb6b655b4", "user_id": "000585f36eed9e8fb6b655b4", "connected_at": "2023-01-01T01:00:00.000Z", "disconnected_at": "2023-01-01T01:30:00.000Z" } ] }
Get a list of sessions in a meeting room
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
(Optional) Filter by user_id
(Optional) Filter by their online status
Successful operation
Show child attributes
ID of the session
"000585f36eed9e8fb6b655b4"
ID for the member associated with the session
ID for the user associated with the session. It can be empty if the session represents an anonymous user.
Datetime when the session was established
"2023-01-01T01:00:00.000Z"
Datetime when the session was ended. It can be empty if the session is online.
"2023-01-01T01:30:00.000Z"