POST
/
api
/
v0
/
threads
/
{thread_id}
/
questions
{
  "question_id": 123,
  "position": 123
}
{
  "thread_id": 123,
  "question_id": 123,
  "position": 123,
  "created_at": "string"
}

Add a question to a thread

Associates a question with a thread at the specified position.

Path Parameters

integer
required

No description provided

Request Body

This endpoint requires a request body.

{
  "question_id": 123,
  "position": 123
}

Response

data
object

The response data for this endpoint.

{
  "thread_id": 123,
  "question_id": 123,
  "position": 123,
  "created_at": "string"
}