# 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
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.acquire.io/rest-apis/chatbot/conversational-bot/question-and-answer/push-qna-to-suggestions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
