Q a

List questions in a room (sorted by upvotes)

GET
/api/v1/questions

Authorization

tenant-api-key
x-api-key<token>

Tenant API key (backend only — never expose to a browser)

In: header

Query Parameters

roomId*string

Room ID

status?string

Value in

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

Response Body

application/json

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