Skip to main content
Entity IDTo retrieve your entity_id, use List Portfolios.
Use the Prime SDK or CLI to test this endpoint by following the quickstart guide and running with the following examples
UsersService usersService = PrimeServiceFactory.createUsersService(client);

ListUsersRequest request = new ListUsersRequest.Builder()
    .entityId("ENTITY_ID_HERE")
    .build();

ListUsersResponse response = usersService.listUsers(request);
For more information, please visit the Prime Java SDK.