added

API: New GET /sessions/{id}/chat_messages Endpoint

We’re excited to announce that we’re opening a new API endpoint meant to retrieve the chat messages sent in the dedicated “Chat” tab during a Livestorm event session. To use it, simply call this new GET /sessions/{id}/chat_messages endpoint as follow:

curl --request GET \
     --url https://api.livestorm.co/v1/sessions/SESSION_ID/chat_messages \
     --header 'Accept: application/vnd.api+json' \
     --header 'Authorization: YOUR_API_TOKEN'

The above call will send back a paginated list of public chat messages sent during the session. the list doesn’t include private messages.

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