> For the complete documentation index, see [llms.txt](https://sdk.venly.io/sdk-reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sdk.venly.io/sdk-reference/c-sdk-v3/function-references/wallet/wallet/updatewallet.md).

# UpdateWallet

### Description

Updates modifiable metadata properties of an existing wallet. This endpoint allows you to modify the wallet's description, set primary status, archive/unarchive the wallet, or update the custom identifier for external system integration

{% code overflow="wrap" %}

```csharp
public static VyTask<VyWalletDto> UpdateWallet(string id, VyUpdateWalletRequest reqParams)
```

{% endcode %}

{% tabs %}
{% tab title="Details" %}
**Parameters**

| id        | string                                                                                             | This is the \`UUID\` of the wallet |
| --------- | -------------------------------------------------------------------------------------------------- | ---------------------------------- |
| reqParams | [VyUpdateWalletRequest](/sdk-reference/c-sdk-v3/object-references/wallet/vyupdatewalletrequest.md) | Request data for the operation     |

**Returns**

VyTask<[VyWalletDto](/sdk-reference/c-sdk-v3/object-references/wallet/vywalletdto.md)>\
Wallet description and/or arhive/unarchive successful.
{% endtab %}
{% endtabs %}
