List
To list all participants you need to execute a GET request against the /participants endpoint.
Since potentially there could be thousands of participants, pagination is supported with limit, order and after arguments. Read about pagination to learn the details of it. By default maximum 100 participants will be returned in the response.
To list all participants for a concrete room execute a GET request against the /participants endpoint and add the room_id param. api/v1/participants?room_id=87a5d383-9e79-44ea-b382-686e430f4ecc
You can also use: api/v1/rooms/87a5d383-9e79-44ea-b382-686e430f4ecc/participants
To list all participants for a concrete session execute a GET request against the /participants endpoint and add the session_id param. api/v1/participants?session_id=09b9df70-7ce9-4f15-8ebb-55939024e72f
You can also use: api/v1/sessions/09b9df70-7ce9-4f15-8ebb-55939024e72f/participants
If you want to filter live participants (haven't left the room yet), then use the live parameter: api/v1/participants?live=true If you want to filter participants who left the room: api/v1/participants?live=false
Request (listing all participants)
Response (200 OK)
The total_count is the total amount of participants that used the platform. It is NOT the amount of participants in the current page returned in the data array. In the above example you have 20000 participants in total, but in the data array there will be maximum 100 participants (the default limit argument value).
Last updated