Retrieves a single user-controlled wallet by its unique identifier.
Represents the input parameters for retrieving a wallet.
Unique system-generated identifier for the user.
The ID of the wallet to retrieve.
The JSON Web Token (JWT) representing the user.
The ID of the wallet to retrieve.
1const response = await client.getWallet({
2 id: 'wallet-id',
3 userToken: 'dummy-user-token',
4})
5console.log(response.data?.wallet)