List
To list the asked questions in a concrete room you need to execute a GET request against the /rooms/:id/questions endpoint.
Use the session_id argument if you want to list the asked questions in a concrete session. https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/questions?session_id=16e44502-dae5-41f9-b095-e41bf6ac2d1d
Since potentially there could be thousands of questions, pagination is supported with limit, order and after arguments. Read about pagination to learn the details of it. By default maximum 100 questions will be returned in the response.
Request
Response (200 OK)
The total_count is the total amount of asked questions in the room. It is NOT the amount of questions in the current page returned in the data array. In the above example you have 6124 questions in total, but in the data array there will be maximum 100 questions (the default limit argument value).
Last updated