public async Task <ActionResult <ApiKey> > FindOne(string id)
        {
            var apiKey = await _apiKeyService.FindOneAsync(id);

            return(apiKey == null?NotFound(id) : Ok(apiKey));
        }