- Java
- .NET
- Go
- Python
- CLI
- TS/JS
Copy
Ask AI
WalletsService walletsService = PrimeServiceFactory.createWalletsService(client);
GetWalletDepositInstructionsRequest request = new GetWalletDepositInstructionsRequest.Builder()
.portfolioId("PORTFOLIO_ID_HERE")
.walletId("WALLET_ID_HERE")
.depositType(DepositType.CRYPTO)
.build();
GetWalletDepositInstructionsResponse response = walletsService.getWalletDepositInstructions(request);
Copy
Ask AI
var walletsService = new WalletsService(client);
var request = new GetWalletDepositInstructionsRequest("PORTFOLIO_ID_HERE", "WALLET_ID_HERE")
{
DepositType = DepositType.CRYPTO,
};
var response = walletsService.GetWalletDepositInstructions(request);
Copy
Ask AI
walletsService := users.NewWalletsService(client)
request := &users.GetWalletDepositInstructionsRequest{
PortfolioId: "PORTFOLIO_ID_HERE",
Id: "WALLET_ID_HERE",
DepositType: "CRYPTO",
}
response, err := walletsService.GetWalletDepositInstructions(context.Background(), request)
Copy
Ask AI
prime_client = PrimeClient(credentials)
request = GetWalletDepositInstructionsDepositInstructionsRequest(
portfolio_id="PORTFOLIO_ID_HERE",
wallet_id="WALLET_ID_HERE",
deposit_type="CRYPTO",
)
response = prime_client.get_wallet_deposit_instructions(request)
Copy
Ask AI
primectl get-wallet-deposit-instructions --help
Copy
Ask AI
const walletsService = new WalletsService(client);
walletsService.getWalletDepositInstructions({
portfolioId: 'PORTFOLIO_ID_HERE',
walletId: 'WALLET_ID_HERE',
}).then(async (response) => {
console.log('Deposit Instructions: ', response);
})