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

# List

## List Groups

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

Retrieve a list of questions and answers in the Conversational Bot groups.&#x20;

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {{api\_key}} |

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

```
{
  "data": {
    "rows": [
      {
        "id": 1,
        "title": "Primary Group",
        "description": "Default question group created at the time of account registration.",
        "isDefault": "yes",
        "askFeedback": "disabled",
        "cascadeApplicable": "disabled",
        "createdBy": 1,
        "updatedBy": 1,
        "dateCreated": "2020-06-22T16:17:32.000Z",
        "dateUpdated": "2021-01-19T05:05:08.000Z"
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}
