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

> Crée un contact dans votre répertoire MsgFlash.

## Endpoint

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

## Body

| Champ   | Type      | Requis | Description  |
| ------- | --------- | ------ | ------------ |
| `name`  | string    | oui    | Nom complet  |
| `phone` | string    | oui    | Numéro E.164 |
| `tags`  | string\[] | non    | Tags         |
| `meta`  | object    | non    | Métadonnées  |

## Réponse succès `201`

```json theme={null}
{
  "data": {
    "id": "cnt_uuid",
    "name": "Awa Doe",
    "phone": "+33612345000"
  }
}
```
