public async Task StartAsync(string name, string userId)
 {
     try
     {
         await _exchangeSettingsService.StartAsync(name, userId);
     }
     catch (EntityNotFoundException)
     {
         throw new ValidationApiException(HttpStatusCode.NotFound, "Exchange not found");
     }
 }