# Client (single) Endpoints that operate on a specific client by ID. ## Endpoints GET /v2/clients/:id Fetch one client. PATCH /v2/clients/:id Update mutable attributes (only `name`). DELETE /v2/clients/:id Delete the client. The deletion is rejected if the client has children, legal entities, or reporting entities — remove or re-parent them first. ## Path params id (required) — Client identifier (Mongo ObjectID). The schema and field semantics are the same as `/v2/clients`. See `aleta api --spec /v2/clients` for the data model.