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

# Conversation - Update

Actualiza el estado, prioridad o metadata de una conversación. Funciona sin autenticación para usuarios anónimos (widget visitors).

### Campos soportados

| Campo         | Tipo      | Valores                                               |
| ------------- | --------- | ----------------------------------------------------- |
| `status`      | `string`  | `UNRESOLVED`, `RESOLVED`, `HUMAN_REQUESTED`           |
| `priority`    | `string`  | `LOW`, `MEDIUM`, `HIGH`, `URGENT`                     |
| `isAiEnabled` | `boolean` | Habilitar/deshabilitar IA en la conversación          |
| `metadata`    | `object`  | Metadata arbitraria (ej: `{ isFormSubmitted: true }`) |

### Ejemplo

```bash theme={null}
curl -X PATCH https://app.braviloai.com/api/conversations/${conversationId} \
-H "Content-Type: application/json" \
-d '{
"status": "RESOLVED",
"metadata": { "isFormSubmitted": true }
}'
```
