Update the name of the wallet set
Name or description associated with the wallet or walletSet.
The universally unique identifier of the resource.
Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.WalletSetsApi(client)
7request = developer_controlled_wallets.UpdateWalletSetRequest.from_dict({
8 "name": "user-group-01",
9})
10response = api_instance.update_wallet_set(id='b3fa50d0-5fca-527f-b13e-979a6f5ee419', update_wallet_set_request=request)
11print(response.json())
12
1{
2 "data": {
3 "wallet_set": {
4 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5 "create_date": "2023-01-01T12:04:05Z",
6 "update_date": "2023-01-01T12:04:05Z",
7 "custody_type": "DEVELOPER"
8 }
9 }
10}