Questions tagged [autodesk-data-management]

Data Management API provides a unified and consistent way to access data across BIM 360 Team, Fusion Team (formerly known as A360 Team), BIM 360 Docs, A360 Personal, and the Object Storage Service.

With this API, you can accomplish a number of workflows, including accessing a Fusion model in Fusion Team and getting an ordered structure of items, IDs, and properties for generating a bill of materials in a 3rd-party process. Or, you might want to superimpose a Fusion model and a building model to use in the Viewer.

Data Management API

261 questions
0
votes
2 answers

Downloading Revit Models with Links

I am using Forge to download Revit models through this API: GET buckets/:bucketKey/objects/:objectName If I try to download a Revit model that contains link documents, I only get one single Revit model (the root file) and none of the linked…
0
votes
1 answer

Autodesk Forge - downloaded item has a different name

I'm using the https://developer.api.autodesk.com/oss/v2/buckets/:bucketKey/objects/:objectName endpoint to download an item (a Revit model) from BIM 360. Using this documentation. The file gets downloaded fine and the contents are correct however,…
HZamani
  • 105
  • 7
0
votes
1 answer

Data management API 403 Error: This user could not be authenticated

I am writing a python script that automates the process of getting drawing files from a project. Currently I am able to access but hub, list of projects and folders through the script. However, whenever I try to search the folder for all drawing…
0
votes
1 answer

VER_MISMATCH_MIMETYPE error when creating new item version in BIM360 with Forge DataManagement API

I'm using Forge DesignAutomation API to update Revit models on BIM360. All goes well, until I wish to create a new version on BIM360 for the Revit model that was returned by the DesignAutomation app. For many Revit files (but not all: seemingly the…
0
votes
1 answer

Autodesk Forge Data Management References API does not list Revit References

My goal is to compute a Revit model with the design automation API. The Revit model is hosted on BIM360 docs. The Revit model contains links/references to other models. Those references were created in Revit and all refer to models also hosted on…
0
votes
1 answer

Needed Download Speed

First of all, sorry for my English. I need some kind of assistance with Forge. I need to display the download speed of the BIM model on the Unity.UI, be it the .RVT or whatever is downloaded from BIM360. Is it possible to know where it is…
0
votes
1 answer

Any limitations on the number or size of items in a single OSS bucket

Is there any limit on the number and size of items in a single Forge OSS bucket? For example, can I stick a Navisworks or Inventor or Revit model PLUS several DWG/PDF/DOC/XLS files into ONE bucket? Will each one of those things get it's own URN if…
ShawnW.
  • 1,771
  • 1
  • 12
  • 12
0
votes
1 answer

How to upload files larger than 2 GB to OSS of Autodesk Forge

I am trying to upload some models (2.5 GB) to the Autodesk Forge Data Management API. I tried it buy postman and with resumable endpoint: https://developer.api.autodesk.com/oss/v2/buckets/:bucketKey/objects/:objectName/resumable I get 504 timeout…
0
votes
0 answers

Error "CUSTOM_ATTRIBUTE_DUPLICATE_NAME" when posting custom attribute definition

I'm trying to add a custom attribute to a BIM360 folder, using instructions here: https://forge.autodesk.com/en/docs/bim360/v1/reference/http/document-management-custom-attribute-definitions-POST/ public async Task
Afshin
  • 1,222
  • 11
  • 29
0
votes
1 answer

How to find Bucketkey for BIM360 Docs files?

i am attempting to find the true file size as suggested by response at previous inquiry. The response says to use GET projects/:project_id/folders/:folder_id/contents to find the hub_id and file_id of files on the BIM 360 docs hub. Whevener I use…
M Scott
  • 45
  • 4
0
votes
1 answer

DWG or other 2D File Versioning in OSS Buckets

How can we maintain multiple versions of the same DWG or other 2d file while uploading and translating the file. What are the preferred options. I need to maintain the versioning of the files in Private OSS Bucket with Autodesk Forge and not using…
vanc
  • 11
  • 3
0
votes
2 answers

Troble finding URN of Item from BIM 360 using Autodesk Forge

We have our files in BIM 360 container. We are trying to create the viewer app which consume the BIM360 file and display it in browser, the sample code which available in Forge site for Viewer is working fine in our local environment but we are…
0
votes
1 answer

How can I get more than 100 bucket objects? How can I list all the bucket objects?

using https://forge.autodesk.com/en/docs/data/v2/reference/http/buckets-GET/ , I can set the limit as 100 and withdraw bucket objects. But how can I get all the bucket objects in a bucket key? HttpWebRequest request =…
hamdi
  • 67
  • 2
  • 10
0
votes
1 answer

How to programmatically get a Shared Link for end-user access to Fusion Team items?

Using the Data Management API for use with Fusion Team, we have successfully done the following via .NET: Retrieved the necessary 3-legged authorization token. Created storage in Fusion Team. Uploaded files to the storage. Create corresponding…
0
votes
2 answers

Forge MArkups Font Size and Thickness of Freehand

I am trying to draw a Markups in forge Viewer but it's working when loading extension var extensionOptions = { hideIssuesButton: false, hideFieldIssuesButton: true, }; // Use the `viewer` reference to call `loadExtension` with the extension name…