There is a private method that does this in ConceptInsights.java: ``` java private String getAccountId() { if (accountId == null) { final Accounts accounts = getAccountsInfo(); if (accounts != null && accounts.getAccounts() != null && !accounts.getAccounts().isEmpty()) { accountId = accounts.getAccounts().get(0).getId(); } } return accountId; } ```