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

> Create a contact in your MsgFlash directory.

## Endpoint

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

## Body

| Field   | Type      | Required | Description  |
| ------- | --------- | -------- | ------------ |
| `name`  | string    | yes      | Nom complet  |
| `phone` | string    | yes      | E.164 number |
| `tags`  | string\[] | no       | Tags         |
| `meta`  | object    | no       | Métadonnées  |

## Success response `201`

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