# 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](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/wallet/vyupdatewalletrequest) | Request data for the operation     |

**Returns**

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