# GET QNA Thread

## GET QNA Thread

<mark style="color:blue;">`GET`</mark> `https://api.cakes.com/qna/thread/:id`

This endpoint allows you to get QNA thread list.

#### Path Parameters

| Name | Type   | Description                |
| ---- | ------ | -------------------------- |
| id   | string | question id for the thread |

{% tabs %}
{% tab title="200 QNA Thread successfully retrieved." %}

```
{    "data": {
       "QNA Thread List" : [{
          "thread_id": "thread_id",
          "user_id": "user_id",
          "question_id": "question_id",
          "text": "thread text",
          "created_at": "date of QNA post created",
          "updated_at": "date of QNA post updated"
       }]
             }
}
```

{% endtab %}

{% tab title="404 Could not find a Thread matching this query." %}

```
{    "message": "Could not find a QNA Thread list."}
```

{% endtab %}
{% endtabs %}
