public IActionResult ListChangedFilesForJob(ListChangedFilesForJobModel model)
        {
            try
            {
                _logger.LogDebug($"Endpoint: \"FileTransfer\" Method: \"ListChangedFilesForJob\" Parameters: \"{model}\"");
                ValidationResult validationResult = new FileTransferValidator(model).Validate();
                if (!validationResult.IsValid)
                {
                    ExceptionHandler.ThrowProperExternalException(new InputValidationException(validationResult.Message));
                }

                return(Ok(_service.ListChangedFilesForJob(model.SubmittedJobInfoId, model.SessionCode)));
            }
            catch (Exception e)
            {
                return(BadRequest(e.Message));
            }
        }