Q a

List questions in the current room (mid-join sync)

GET
/api/v1/questions/public

Authorization

participant-token
AuthorizationBearer <token>

Participant join token (LiveKit JWT — the only browser-held credential)

In: header

Query Parameters

status?string

Value in

  • "OPEN"
  • "ANSWERED"
  • "DISMISSED"

Response Body

application/json

curl -X GET "https://example.com/api/v1/questions/public"
[  {    "id": "string",    "roomId": "string",    "text": "string",    "status": "OPEN",    "askerExternalId": {},    "askerName": {},    "upvoteCount": 0,    "answerText": {},    "answeredByExternalId": {},    "answeredAt": {},    "createdAt": "2019-08-24T14:15:22Z"  }]