> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/rest-apis/chatbot/conversational-bot/question-and-answer/publish.md).

# Publish

## Publish QnA

<mark style="color:orange;">`PUT`</mark> `https://{{account_id}}.acquire.io/api/v1/bot/qna/move/{{id}}`

Publish or draft a QnA. The QnA id must be passed in to the endpoint as a path parameter. If a question is a draft, it will be published. If a question is published, it will be set to draft.&#x20;

#### Path Parameters

| Name | Type    | Description    |
| ---- | ------- | -------------- |
| id   | integer | Specify QnA id |

#### Headers

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

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

```
{
  "data": {
    "success": true,
    "message": "Question Published Successfully",
    "movedId": 3775
  }
}

```

{% endtab %}
{% endtabs %}
