added
New GET /sessions/{id}/questions Endpoint
over 2 years ago by Karim Hamza
We’re excited to announce that we’re opening a new API endpoint meant to retrieve the questions asked in the dedicated “Questions” tab during a Livestorm event session. To use it, simply call this new GET /sessions/{id}/questions
endpoint as follow:
curl --request GET \
--url https://api.livestorm.co/v1/sessions/SESSION_ID/questions \
--header 'Accept: application/vnd.api+json' \
--header 'Authorization: YOUR_API_TOKEN'
The above call will send back a paginated list of questions asked during the session, along with the answer provided by the team member who replied.
Please note that in order to use this endpoint, your API token or OAuth2 access token need the events:read
or events:write
scopes.
Check this new endpoint here →
Happy coding!
The Livestorm developer relationship team