public async Task <IActionResult> GetAllocatedUsers(string username)
        {
            try
            {
                var response = await _testApiClient.GetAllocateUsersByAllocatedByAsync(username);

                _logger.LogInformation("Allocated to {count} user(s)", response.Count);
                return(Ok(response));
            }
            catch (TestApiException e)
            {
                _logger.LogError(e, "Unable to retrieve allocated users with username: {username}", username);
                return(StatusCode(e.StatusCode, e.Response));
            }
        }