Application Integration
- Application Integration
- All Products
List<Account> accountList = [SELECT Name, id FROM Account WHERE OwnerId =:userRef LIMIT 20]; for (Account account: accountList) { // For a search service, return name/id as parameters response.addParameter(account.Name, account.Id); }