Export

To export the asked questions in a concrete room you need to execute a GET request against the /rooms/:id/questions/export endpoint.

Use the session_id argument if you want to export the questions in a concrete session. https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/questions/export?session_id=16e44502-dae5-41f9-b095-e41bf6ac2d1d

Request

curl --request GET \
  --url https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/questions/export \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY

Response (200 OK)

2024-04-04 12:01:46 John Smith: When does the meeting start?
2024-04-04 12:01:50 Cillian Anderson: In 15 minutes
2024-04-04 12:01:48 Cillian Anderson: [Answered live]

Use the format param if you want to export as a JSON file. Permitted values for the format param are txt and json. /api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/questions/export?format=json

Last updated