> ## 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.

# POST Créer un groupe

> Crée un groupe de contacts.

## Endpoint

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

## Body

| Champ         | Type   | Requis | Description          |
| ------------- | ------ | ------ | -------------------- |
| `name`        | string | oui    | Nom du groupe        |
| `description` | string | non    | Description          |
| `color`       | string | non    | Couleur hexadécimale |

## Réponse succès `201`

```json theme={null}
{
  "data": {
    "id": "grp_uuid",
    "name": "Clients VIP",
    "description": "Clients à forte valeur",
    "color": "#F59E0B",
    "contactCount": 0
  }
}
```
