BIM360 Publishing Settings

Hi All,

Trying to put together a script to automate BIM publish settings which I can use.
Could some one give some pointers on how to proceed ?
Thanks.

ViewSheetSet is exposed in the Revit API. This is used to create sets for publish, export and print sets. I don’t think Dynamo has a standard node to create or work with ViewSheetSets. Maybe someone has a custom node.

But it easily enough done with a little python. The basic outline is:
Get views.
Add views to a ViewSet with ViewSet.Insert(View)
make and Name a ViewSheetSet.
Add ViewSet to ViewSheetSet via ViewSheetSet.Views = ViewSet