I've written a script to bring entries from one cloud repository to another. When bringing documents in that reside in record series (or inside record folders inside record series,) it properly brings in the documents and folder structure.
When bringing in a record series using the same code, it brings in the series but with nothing inside of it. So I figured maybe we have to use a recursive approach, bringing in the documents at the bottom level inside the records series. But when doing that, the first document comes in fine (which generates the records series at the top, since the folder structure is being brought over), and then for any document it tries to bring into that same location after that, nothing happens. The BriefcaseImporter.Import method runs, but nothing shows up after the first document.
Is there any reason why we can't bring documents over into an existing records series?
For my BriefcaseExporter from the source Cloud repository, I set PreserveFolderStructure to true and ExcludeRecordsManagementData to false.
BriefcaseImporter has OnDocumentConflict set to DocumentConflictStrategy.Skip (though .Overwrite didn't work either)
Thanks,