Retrieve a list of all wallet sets.
Represents the input for listing wallet sets.
Developer-provided parameter used to identify this request.
Start time of the query, inclusive.
Used to return items after the specified item exclusively.
SHOULD NOT be used in conjunction with pageBefore
.
Used to return items before the specified item exclusively.
SHOULD NOT be used in conjunction with pageAfter
.
The number of items to return.
End time of the query, inclusive. Defaults to the current time.
1const response = await client.listWalletSets()
2console.log(response.data?.walletSets)
1{
2 "data": {
3 "walletSets": [
4 {
5 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
6 "createDate": "2023-01-01T12:04:05Z",
7 "updateDate": "2023-01-01T12:04:05Z",
8 "custodyType": "DEVELOPER"
9 }
10 ]
11 }
12}