public IHttpActionResult Apply([FromUri] Guid id) { if (!ModelState.IsValid) { return(this.Error().InvalidParameters("Invalid parameters")); } // Check if update exists IUpdate update = _updateManager.GetUpdate(id); if (update == null) { return(NotFound()); } // Apply update _updateManager.Apply(id); return(Ok()); }