> ## Documentation Index
> Fetch the complete documentation index at: https://docs.msgflash.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET List groups for a contact

> List the groups a contact belongs to.

## Endpoint

```txt theme={null}
GET /api/v1/contacts/{id}/groups
```

## Parameters path

| Nom  | Type | Required | Description   |
| ---- | ---- | -------- | ------------- |
| `id` | UUID | yes      | ID du contact |

## Success response `200`

```json theme={null}
{
  "data": {
    "groups": [
      {
        "id": "grp_uuid",
        "name": "Clients VIP",
        "color": "#F59E0B"
      }
    ]
  }
}
```
