> 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/groups/copy.md).

# Copy

## Copy

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

Copy a group. The id of the group must be passed in to the endpoint as body parameter. Current questions and answers will be copied into the new group.&#x20;

#### Headers

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

#### Request Body

| Name | Type    | Description                         |
| ---- | ------- | ----------------------------------- |
| id   | integer | The ID of the group you are copying |

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

```
{
  "data": {
    "success": true,
    "message": "Group is being copied .."
  }
}
```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "id": 1
}
```
