public async Task <IActionResult> Get(string manageId)
        {
            logger.LogInformation("Attempting to gather managing information for the id '{0}'", manageId);

            IActionResult          actionResult;
            ManageConversationLink manageLink = await manageConversationLinkService.GetByTextAsync(manageId);

            if (manageLink != null)
            {
                logger.LogInformation("Returning managing information for the id '{0}'", manageId);
                actionResult = Ok(GetConversationScheduledMessageModelsAsync(manageLink));
            }
            else
            {
                logger.LogInformation("No managing information has been found for the id '{0}'", manageId);
                actionResult = NotFound();
            }

            return(actionResult);
        }