forge-api-dotnet-client
forge-api-dotnet-client copied to clipboard
Forge .Net SDK: Provides .Net SDK to help you easily integrate Forge REST APIs into the application
Following the documentation for [GetItem](https://github.com/Autodesk-Forge/forge-api-dotnet-client/blob/master/docs/ItemsApi.md#getitem:~:text=Item%20result%20%3D%20apiInstance.GetItem(projectId%2C%20itemId)%3B) results in Exceptions: `Exception when calling ItemsApi.GetItems: Cannot implicitly convert type 'Autodesk.Forge.Model.DynamicJsonResponse' to 'Autodesk.Forge.Model.Item'` Similar to #32. No working way of getting the typed object...
I tried getting the Thumbnail from DerivedApi and didn't get that data thumbnail. I also tried using HttpClient and RestSharp call to api [HERE](https://forge.autodesk.com/en/docs/model-derivative/v2/reference/http/thumbnails/urn-thumbnail-GET/) but I got the code 202...
When using GetModelviewProperties its not clearing the memory after collection of data. I need to add GC.Collect() and GC.WaitForPendingFinalizers() to get it to clean the memory. (Pay attention to line...
ObjectApis.UploadObject and ObjectApis.UploadObjectAsync fail for certain types of streams. We are using the following WebApi code (some parts omitted) and it crashes: ```C# MultipartMemoryStreamProvider provider = await Request.Content.ReadAsMultipartAsync(new MultipartMemoryStreamProvider()); foreach...
Would be nice if your API had retry logic baked in. There are some scenarios (i.e., network timeouts) where a retry would eliminate false failures. Perhaps wrap the RestSharp.Execute() in...
Hi, I am trying to create a new version for the existing file. The document states a PostVersion function under the projectAPI for this purpose but it seems missing in...
Is there some actual swagger file for Forge API so we can avoid using dynamic variables? Found one at swaggerhub https://app.swaggerhub.com/apis/autodesk/forge-dm/1.1.2 but there is no methods for authentication
The PostVersion is missing in the source code. This method creates a new version of an item in the 'data' domain service. It is essential for using BIM 360 API...
Hi, I'm trying to use FoldersAPI search method agains BIM360 Docs project but while I can use other FoldersAPI methods and functions, the SearchFolderContentsAsync method returns '403' error. Documentation of...
As you can see in the picture GetModelviewPropertiesAsync() returns empty result, while GetModelviewPropertiesAsyncWithHttpInfo() returns the properties. I tested it with a Revit file in a BIM 360 Docs EU region....