Ask question

To ask a question you need to execute a POST request against the /rooms/:id/questions endpoint.

You need to specify the participant who is asking the question, the actual question text and if it is an anonymous question. You can either specify an existing live participant id, or a name + external_id if you are asking a question on behalf of someone not inside the room.

--If user is live in the room
"participant": {
   "id": "be50ca88-efca-4a03-aec6-f87ed57d5b16"
}

--If user is not existing in the room (an external one)
"participant": {
   "name": "John Smith",
   "external_id": "ABCDEF123456"
}
circle-info

A question can be asked as anonymous - that means nobody in the room will be able to see who asked the question. Only the question text will be seen.

Request

curl --request POST \
  --header "Content-Type: application/json" \
  --url https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/questions \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY \
  --data '{"participant": {"id": "be50ca88-efca-4a03-aec6-f87ed57d5b16"}, "question": "When does the meeting start?", "anonymous": false}'

Response (200 -> No Content)

Response is empty because the question was created and there is no content to return.

Last updated