# Add

## Add Group

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

Add a new bot group

#### Headers

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

#### Request Body

| Name        | Type   | Description                                            |
| ----------- | ------ | ------------------------------------------------------ |
| askFeedback | string | Have the bot ask for feedback ("active" \| "disabled") |
| isDefault   | string | Make this group the default ("yes" \| "no")            |
| description | string | Description of your bot group                          |
| title       | string | Title for your bot group                               |

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

```
{
  "data": {
    "success": true,
    "message": "Group Added successfully.",
    "addedGroup": 2
  }
}
```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "title": "Group Title Demo",
  "description": "Group Title Demo",
  "isDefault": "no",
  "askFeedback": "active"
}
```
