<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possible to open a BIM 360 model without using Forge? in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11550985#M47301</link>
    <description>&lt;P&gt;Please disregard my last response &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Nov 2022 14:12:10 GMT</pubDate>
    <dc:creator>dantartaglia8696</dc:creator>
    <dc:date>2022-11-14T14:12:10Z</dc:date>
    <item>
      <title>Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8297315#M47286</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Using 2019.1, is it possible to open a BIM 360 C4R models using only the Revit API? Below is from the 2019.1 SDK help file. It may not be possible but I'm trying to handing BIM 360 and non-BIM 360 opening of models using:&amp;nbsp;OpenDocumentFile(), I'm not ready yet to use Forge. Can this be done? My attempts so far have failed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Existing APIs now support open from cloud paths (Collaboration for Revit)&lt;/P&gt;&lt;P&gt;Document Open APIs support cloud paths&lt;/P&gt;&lt;P&gt;The existing methods:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Application.OpenDocumentFile(ModelPath modelPath, OpenOptions openOptions)&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;UIApplication.OpenAndActivateDocument(ModelPath modelPath, OpenOptions openOptions, bool detachAndPrompt)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;and the new methods:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Application.OpenDocumentFile(ModelPath modelPath,OpenOptions openOptions, IOpenFromCloudCallback openFromCloudCallback)&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #000000;"&gt;UIApplication.OpenAndActivateDocument(ModelPath modelPath, OpenOptions openOptions, bool detachAndPrompt, IOpenFromCloudCallback openFromCloudCallback)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;now offer the ability to open a C4R model from its location on the cloud. Obtain a relevant ModelPath representing the document from:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ModelPathUtils.ConvertCloudGUIDsToCloudPath(Guid, Guid)&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;by inputting the &lt;SPAN&gt;the project Guid and model Guid (which could be obtained from various Forge APIs).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Callback for conflict cases when opening from a cloud path&lt;/P&gt;&lt;P&gt;The callback method:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Autodesk.Revit.DB.&lt;SPAN style="color: #000000;"&gt;IOpenFromCloudCallback.OnOpenConflict()&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;can be passed to the document open methods to gain to handle conflict cases. The method is passed an OpenConflictScenario value identifying the reason for the conflict ( Rollback, Relinquished or OutOfDate) and should return an OpenConflictResult with the desired response (keep local changes, discard local changes and open the latest version or cancel).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The new class:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;DefaultOpenFromCloudCallback&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;provides a default way to handle conflicts: it always discards the local change and gets the latest version from the cloud.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 16:36:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8297315#M47286</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2018-09-27T16:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8298508#M47287</link>
      <description>&lt;P&gt;In general, I should say "No", it's not possible to open the BIM360 model without Forge API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you can see from 2019.1, some methods are improved to open&amp;nbsp;cloud models on BIM360, Revit developers can use&amp;nbsp; method ModelPathUtils.ConvertCloudGUIDsToCloudPath() to&amp;nbsp;get the&amp;nbsp;cloud model path from projectGuid &amp;amp; modelGuid, and then open it,&amp;nbsp; here is the sample code as follow:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String modelGuidString = "55a82cfc-680d-4a44-bcf7-2f11837062a5";
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String projectGuidString = "0e57bf28-a777-443c-9d10-aee9ef0d37f4";
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Guid modelGuid, projectGuid;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (Guid.TryParse(modelGuidString, out modelGuid)
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; Guid.TryParse(projectGuidString, out projectGuid))
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Autodesk.Revit.DB.OpenOptions oopts = new Autodesk.Revit.DB.OpenOptions();
&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ModelPath modelPath = ModelPathUtils.ConvertCloudGUIDsToCloudPath(projectGuid, modelGuid);
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; revitApp.OpenAndActivateDocument(modelPath, oopts, false);
&lt;/STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }

&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the method requires the &lt;STRONG&gt;projectGuid&lt;/STRONG&gt; and &lt;STRONG&gt;modelGuid&lt;/STRONG&gt;&amp;nbsp;which you can only get by Forge API, you need to access BIM360 Docs with Forge API, from hub-&amp;gt;project-&amp;gt;folder-&amp;gt;item-&amp;gt;version,&amp;nbsp; if you are not clear about this part, please check the &lt;A href="https://forge.autodesk.com/en/docs/data/v2/developers_guide/overview/" target="_blank"&gt;Forge Data Management API&lt;/A&gt; for more details,&amp;nbsp;and with that API, you can get the&amp;nbsp;&lt;STRONG&gt;projectGuid&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;modelGuid&lt;/STRONG&gt; and then use it in Revit API.&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Picture2.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/551415iC3F18A33A99E63C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture2.png" alt="Picture2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2018-09-28 at 12.32.35 PM.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/551410iE4A6952B33F0AD00/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2018-09-28 at 12.32.35 PM.png" alt="Screen Shot 2018-09-28 at 12.32.35 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 04:55:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8298508#M47287</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2018-09-28T04:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8299456#M47288</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1240775"&gt;@zhong_wu&lt;/a&gt;!, I'm sure what you sent will help a lot. I haven't been coding as much as I used to but I need to get more familiar with Forge. I'll be at ForgeDevCon at AU which will help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8299456#M47288</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2018-09-28T13:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8383851#M47289</link>
      <description>&lt;P&gt;but isn't this still accessing Published Models? Currently there is no automation to publish a model or access the Working Models?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 18:18:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8383851#M47289</guid>
      <dc:creator>AdamHamilton</dc:creator>
      <dc:date>2018-11-06T18:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8383962#M47290</link>
      <description>&lt;P&gt;OpenAndActivateDocument() seems to access the cloud model not the published model in my tests. I will use Forge to get the GUIDs for the project and models, you can get them from the&amp;nbsp;C:\Users\USERNAME\AppData\Local\Autodesk\Revit\Autodesk Revit 2019\CollaborationCache folder. I've been doing a little testing with these but would rather get the values dynamically.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 18:56:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8383962#M47290</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2018-11-06T18:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8793439#M47291</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I've been using the code provided to open BIM 360 models.&amp;nbsp; This works most of the time, but in a project I'm testing for some reason models in a subfolder won't open.&amp;nbsp; (The path obtained from the model does not contain subfolders)&amp;nbsp; I have the model/project guids but I get an Autodesk.Revit.Exceptions.CentralModelMissingException: "The central model is missing." at the OpenAndActivateDocument method, but I can open this same model thru Revit.&amp;nbsp; This exception doesn't appear in the list of exceptions in the 2019.2 API guide.&amp;nbsp; Any ideas?&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2019 18:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8793439#M47291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-15T18:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8794338#M47292</link>
      <description>&lt;P&gt;Interesting, what's your file structure? can you share that to me and we can try to to see if this can be reproduced my side?&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 05:22:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8794338#M47292</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2019-05-16T05:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8795305#M47293</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out.&amp;nbsp; You can disregard, I discovered what happened.&amp;nbsp; I believe we obtained the model ids and then someone moved the models into the subfolder which caused the model id to change.&amp;nbsp; Getting the new model id fixed the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 12:46:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/8795305#M47293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-16T12:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262181#M47294</link>
      <description>&lt;P&gt;Very useful answers! Thanks a lot for that. I have a&amp;nbsp; very basic question. How do you convert the number of the project that you pointed out before,&amp;nbsp; in Collaboration Cache folder,&amp;nbsp; to a valid Guid to pass as an argument of the OpenandActivateDocument method? How can I&amp;nbsp; make the casting? : /&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 22:11:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262181#M47294</guid>
      <dc:creator>pedro_getz</dc:creator>
      <dc:date>2022-06-27T22:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262227#M47295</link>
      <description>I guess you can try &lt;A href="https://forge.autodesk.com/en/docs/data/v2/tutorials/publish-model/" target="_blank"&gt;https://forge.autodesk.com/en/docs/data/v2/tutorials/publish-model/&lt;/A&gt; to publish cloud model  automatically.</description>
      <pubDate>Mon, 27 Jun 2022 22:57:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262227#M47295</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2022-06-27T22:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262228#M47296</link>
      <description>Normally, we should use Forge API to get the Ids of a cloud model, but I am not sure how to get these ids from the cache file....</description>
      <pubDate>Mon, 27 Jun 2022 22:58:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11262228#M47296</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2022-06-27T22:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11263874#M47297</link>
      <description>&lt;P&gt;1. Open the model in Revit.&lt;/P&gt;&lt;P&gt;2. I usually do a sync.&lt;/P&gt;&lt;P&gt;3. Go to this folder:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;C:\Users\USERNAME\AppData\Local\Autodesk\Revit\Autodesk Revit 2022\CollaborationCache&lt;/P&gt;&lt;P&gt;4. Open the user folder (i.e. sim to: 200806230453619).&lt;/P&gt;&lt;P&gt;5. Sort by Date Modified. The newest GUID is the project GUID.&lt;/P&gt;&lt;P&gt;6. Open the GUID folder.&lt;/P&gt;&lt;P&gt;7.&amp;nbsp;Sort by Date Modified. The newest GUID is the model GUID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ModelPath oModelPath = null;&lt;BR /&gt;Guid modelGuid, projectGuid;&lt;/P&gt;&lt;P&gt;if (Guid.TryParse(strModelGuid, out modelGuid)&lt;BR /&gt;&amp;amp;&amp;amp; Guid.TryParse(strProjectGuid, out projectGuid))&lt;BR /&gt;{&lt;BR /&gt;oModelPath = ModelPathUtils.ConvertCloudGUIDsToCloudPath(&lt;BR /&gt;ModelPathUtils.CloudRegionUS, projectGuid, modelGuid);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 13:31:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11263874#M47297</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2022-06-28T13:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11546748#M47298</link>
      <description>&lt;P&gt;So, this seems possible for sure, my question now is, can this be achieved without purchasing and using tokens?&lt;/P&gt;&lt;P&gt;I see where some things may be free, but not totally clear if this would be or not.&amp;nbsp; Anybody know?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 18:26:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11546748#M47298</guid>
      <dc:creator>bcampbell11</dc:creator>
      <dc:date>2022-11-11T18:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11549920#M47299</link>
      <description>From what I can see, there should be no APS(Forge) token required because this is all about using Data Management API and Revit API. Forge what should be charged, please refer &lt;A href="https://forge.autodesk.com/pricing" target="_blank"&gt;https://forge.autodesk.com/pricing&lt;/A&gt; for details.</description>
      <pubDate>Mon, 14 Nov 2022 02:06:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11549920#M47299</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2022-11-14T02:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11550979#M47300</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I open models all the time via the API to print and perform other tasks however when I attemped to open the model to work in, the model would not completely open (gray screen but model was open). Are you seeing different results?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 14:09:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11550979#M47300</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2022-11-14T14:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11550985#M47301</link>
      <description>&lt;P&gt;Please disregard my last response &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 14:12:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11550985#M47301</guid>
      <dc:creator>dantartaglia8696</dc:creator>
      <dc:date>2022-11-14T14:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11551267#M47302</link>
      <description>&lt;P&gt;ok, thank you!&amp;nbsp; I need to get my head into the data management API, I have not used it before.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 15:59:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11551267#M47302</guid>
      <dc:creator>bcampbell11</dc:creator>
      <dc:date>2022-11-14T15:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11702060#M47303</link>
      <description>thanks for the detailed instruction, were you able to open or sync to a central file placed in a cloud-sharing file storage other than BIM 360? (ie: dropbox)&lt;BR /&gt;&lt;BR /&gt;I didn't find the collaboration cache folder in my disk.&lt;BR /&gt;else there was a cefcache folder, it contained blob-Storage folder that contained another folder with title looks like GUID is it it?</description>
      <pubDate>Tue, 24 Jan 2023 15:34:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11702060#M47303</guid>
      <dc:creator>iref3at</dc:creator>
      <dc:date>2023-01-24T15:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11703331#M47304</link>
      <description>&lt;P&gt;No, I don't think you can open or sync the cloud worksharing model to other cloud storage, only BIM 360 Docs and Autodesk Docs are allowed currently.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 01:37:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11703331#M47304</guid>
      <dc:creator>zhong_wu</dc:creator>
      <dc:date>2023-01-25T01:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a BIM 360 model without using Forge?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11772118#M47305</link>
      <description>&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;Thx to this dicussion, I'm now able to open a document wich is in collaboration cache folder.&lt;/P&gt;&lt;P&gt;But, how to open a document wich is not yet into the collaboration cache folder because it was not previously opened?&lt;/P&gt;&lt;P&gt;Like I 'll do with an OpenFileDialog?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 08:07:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/is-it-possible-to-open-a-bim-360-model-without-using-forge/m-p/11772118#M47305</guid>
      <dc:creator>SONA-ARCHITECTURE</dc:creator>
      <dc:date>2023-02-22T08:07:59Z</dc:date>
    </item>
  </channel>
</rss>

