> 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/bulk-action.md).

# Bulk Action

## Bulk Update

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

Perform a bulk action on multiple QnAs.&#x20;

#### Headers

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

#### Request Body

| Name       | Type    | Description                                              |
| ---------- | ------- | -------------------------------------------------------- |
| tab        | string  | Specify the section. Current sections: "qna"             |
| recordIds  | array   | Array of integers. The IDs of the QnAs.                  |
| groupId    | integer | The QnA's group                                          |
| actionType | string  | Specify which action to take. Current actions: "delete". |

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

```
{
  "data": {
    "success": true,
    "message": "Questions deleted successfully",
    "lessEventsNotice": true
  }
}

```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
   "actionType":"delete",
   "groupId":1,
   "recordIds":[
      2,
      1
   ],
   "tab":"qna"
}
```
