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

# Update wallet

Updates the mutable fields of a wallet. Only `status` can be modified after creation; `name` is immutable.

| Field    | Mutability                                                                                         |
| -------- | -------------------------------------------------------------------------------------------------- |
| `status` | ✅ Mutable. Accepts `ACTIVE` or `DISABLED`. See [Wallet lifecycle](/get-started/wallets/lifecycle). |
| `name`   | ❌ Immutable. Any attempt returns `LABEL_IMMUTABLE` (HTTP 422).                                     |

<Note>
  **`DISABLED` is a soft freeze, not a delete.** New payment orders are rejected; in-flight orders run to completion; balance queries still work. Reversible via the same endpoint with `status: ACTIVE`.
</Note>

`PUT` is idempotent — applying the same status repeatedly is safe and produces the same final state.
