Cloud Shared Revit Models

Hiii everyone,
Is there any way to use dynamo for automating the process of collaborate the Revit models via ACC or BIM360. , since I have more than 20 Revit models to perform this process on.
I’ve searched a lot of time for any automation to such repetitive task bit with no luck.

image

1 Like

@abdallahzakaria ,

try this you have to modify it… i don`t know your settings and enviroment, let me know if it works :wink:

thats the part of the centralmodel

# Template 
import clr
import sys 

clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *
from Autodesk.Revit.DB.Structure import *

clr.AddReference('RevitAPIUI')
from Autodesk.Revit.UI import *

clr.AddReference('System')
from System.Collections.Generic import List

clr.AddReference('RevitNodes')
import Revit
clr.ImportExtensions(Revit.GeometryConversion)
clr.ImportExtensions(Revit.Elements)

clr.AddReference('RevitServices')
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager

doc = DocumentManager.Instance.CurrentDBDocument
uidoc=DocumentManager.Instance.CurrentUIApplication.ActiveUIDocument

doc.EnableWorksharing("Grids","Workset")
#folder = "urn:adsk.wipprod:fs.folder:co.zRpZ2THTUm5gl29mngQ2"

saveOptions = SaveAsOptions()
saveOptions.MaximumBackups = 3
saveOptions.Compact = True
saveOptions.PreviewViewId = doc.ActiveView.Id
saveOptions.OverwriteExistingFile = True

worksharingOptions = WorksharingSaveAsOptions()
worksharingOptions.SaveAsCentral
worksharingOptions.OpenWorksetsDefault = SimpleWorksetConfiguration.AskUserToSpecify(worksharingOptions)

#if TransmissionData.IsDocumentTransmitted(modelpath)

rOptions = RelinquisOptions(False)
rOptions.StandardWorksets = True
rOptions.ViewWorksets = True
rOptions.FamilyWorksets = True
rOptions.UserWorksets = True
rOptions.CheckedOutElements = True

sOptions = SynchronizeWithCentralOptions()
sOptions.SetRelinquishOptions(rOptions)
sOptions.Comments = "central File create"
sOptions.Compact = True
sOptions.SaveLocalBefore = True
sOptions.SaveLocalAfter = True

tOptions = TransactionWithCentralOptions()
path = []
doc.SaveAs(doc.PathName, SaveOptions)
doc.SynchronizeWithCentral(tOptions, sOptions)















here the part for the cloudmodel


import clr
import sys 
import System

from System import *
from System import Guid

clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *
from Autodesk.Revit.DB.Structure import *

clr.AddReference('RevitAPIUI')
from Autodesk.Revit.UI import *

clr.AddReference('System')
from System.Collections.Generic import List

clr.AddReference('RevitNodes')
import Revit
clr.ImportExtensions(Revit.GeometryConversion)
clr.ImportExtensions(Revit.Elements)

clr.AddReference('RevitServices')
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager

doc = DocumentManager.Instance.CurrentDBDocument
uidoc=DocumentManager.Instance.CurrentUIApplication.ActiveUIDocument

#folder = "urn:adsk.wipprod:fs.folder:co.zThrthUhggf"
rOptions = RelinqhishOptions(True)


sOptions = SynchronizeWithCentralOptions()
sOptions.SetRelinquishOptions(rOptions)
sOptions.Comments = "central File create"
sOptions.Compact = True
sOptions.SaveLocalBefore = True
sOptions.SaveLocalAfter = True

account = Guid("the link fd87fd- anything)
project = Guid("the link fd87fd- anything)
#folder = "urn:adsk.wipprod:fs.folder:co.zThrthUhggf"
modelName = "Central file"

doc.SaverAsCloudModel(acount, project, folder, modelName)
doc.EnableWorksharing()
doc.SynchronizeWihtCentral(tOptions, sOptions)





1 Like

This may be relevant to your interests:
https://thebuildingcoder.typepad.com/blog/2021/04/revit-2022-migrates-bim360-team-to-docs.html

@Draxl_Andreas , thanks a lot for your quick reply, really appreciated, the part of the central model gives me a warning as shown below


I will try the code for the cloud model and let you my feedback

@abdallahzakaria ,

sadly i use Revit 2022 and also IronPython2, could be script will be changed in 2023/24

what should I write in those inputs?

1 Like

@abdallahzakaria

your cloud inviroment i think it is the URL

I got This Message