Q a

Ask a question on behalf of a user

POST
/api/v1/questions

Authorization

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

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

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/questions" \  -H "Content-Type: application/json" \  -d '{    "text": "Will the slides be shared afterwards?",    "roomId": "clxyz...",    "askerExternalId": "user_abc123"  }'
{  "id": "string",  "roomId": "string",  "text": "string",  "status": "OPEN",  "askerExternalId": {},  "askerName": {},  "upvoteCount": 0,  "answerText": {},  "answeredByExternalId": {},  "answeredAt": {},  "createdAt": "2019-08-24T14:15:22Z"}