3

I am working on Ektron 8.6.

How can i retrive the previous version of a Content by passing the Content Id using API? Previous version in the sense the content data before editing(there may be multiple edits for a content).Is it able to retrieve these different versions through API?

Whether any utility is there in ektron to directly convert Content to a doc?

Bisileesh
  • 1,982
  • 2
  • 19
  • 29

1 Answers1

3

Here's a sample:

var contentManager = new ContentManager();
var historyList = contentManager.GetHistoryList(contentId);
foreach(var historyData in historyList)
{
     var contentData = contentManager.GetContentByHistoryId(historyData.Id);
}

The relevant namespace you'll want to take can be found here: Ektron.Cms.Framework.Content.ContentManager.

Bill
  • 1,247
  • 8
  • 12