# Push QnA To Suggestions

## Push QnA to Suggestions

<mark style="color:green;">`POST`</mark> `https://{{account_id}}.acquire.io/api/v1/bot/qna/push`

Create a QnA and set its status to draft. If a similar question exists within the group, the added question will be merged to that QnA group.&#x20;

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{api\_key}} |

#### Request Body

| Name       | Type    | Description                                            |
| ---------- | ------- | ------------------------------------------------------ |
| qnaGroupId | integer | The ID of the group you'd like to add the question to. |
| question   | string  | A question you want to add to your Conversational Bot  |

{% tabs %}
{% tab title="200 " %}

```
{
  "data": {
    "message": "Question merged to existing similar question"
  }
}

```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "question": "Test Question",
  "qnaGroupId": 1
}

```
