Skip to main content
Use the Prime SDK or CLI to test this endpoint by following the quickstart guide and running with the following examples
CommissionService commissionService = PrimeServiceFactory.createCommissionService(client);

GetPortfolioCommissionRequest request = new GetPortfolioCommissionRequest.Builder()
    .portfolioId("PORTFOLIO_ID_HERE")
    .build();

GetPortfolioCommissionResponse response = commissionService.getPortfolioCommission(request);
For more information, please visit the Prime Java SDK.