SDK Explorer

Update the name of the wallet set using its ID.

Parameters
input
object
Required

Represents the input for updating a wallet set.

id
string
Required

The ID of the wallet set to be updated.

name
string
Required

The new name for the wallet set.

Responses
Example
1const response = await client.updateWalletSet({
2  id: 'b26bb9f9-7b85-48e2-a613-1923fb470e2e',
3  name: 'My new walletSet name',
4})
5console.log(response.data?.walletSet)
ResponseChoose an example
1{
2  "data": {
3    "walletSet": {
4      "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5      "createDate": "2023-01-01T12:04:05Z",
6      "updateDate": "2023-01-01T12:04:05Z",
7      "custodyType": "DEVELOPER"
8    }
9  }
10}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.