> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/hyperion/examples/accountsclient/accountsclientexample2.md).

# AccountsClientExample2

```csharp
public async Task Test2()
{
    var accountsClient = new AccountsClient(new HttpHandler());

    // Request all Accounts that are controlled by an individual Account
    var controlledAccounts = await accountsClient.GetControlledAccountsAsync(controllingAccount: "someaccount",
        cancellationToken: CancellationToken.None);

    foreach (var controlledAccount in controlledAccounts.ControlledAccounts)
    {
        // Print all controlled Accounts
        Console.WriteLine(controlledAccount);
    }
}
```
