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

Error creating a webhook with a scope = project id but works with top folder

When creating a webhook for a BIM360 Team project, I get the error "Access denied for the scope a.123456789 that you are trying to create hook on" when creating with the project id with the below json body and…
0
votes
0 answers

displayName of file not available when getting contents of folder in BIM 360 Docs

I am trying to list the names of the files in a folder in BIM 360, but I'm having trouble retrieving the names of the files. When using the GET projects/:project_id/folders/:folder_id/contents endpoint of the Data Management API, I notice different…
dvanoni
  • 128
  • 1
  • 6
0
votes
1 answer

Can I get User Storage size/limit by Autodesk Forge Data Management API?

Is There any Data Management api to get storage limit or size per User ?
0
votes
0 answers

Extracting Revit files (Autodesk Forge Example):

I have completed the Autodesk Forge extracting Revit file example (https://github.com/Autodesk-Forge/model.derivative-csharp-context.menu) but still have an issue. To get the program to extract the file I have to run > click extract > stop >…
0
votes
2 answers

Delete object in bucket, C# ASP.NET

I'm trying to delete an object from a bucket. Reading the docs it all sounds super simple, but I just can't seem to get it working. On the server side I have the following in ASP.NET: [HttpDelete] [Route("api/forge/oss/objects/delete")] public async…
dabuchera
  • 79
  • 5
0
votes
1 answer

Download BIM360 Docs file using Javascript

I am trying to download BIM360 docs files using javascript. I am able to get file response from BIM360 but unable to save file with proper content. Here is my JS code - $(document).ready(function () { var anchor = $('.vcard-hyperlink'); …
sushilprj
  • 2,203
  • 1
  • 14
  • 19
0
votes
3 answers

Unable to create webhook for Autodesk BIM 360 docs project

I am trying to create a webhook for Autodesk BIM 360 project and ended with this error - "Access denied for the scope that you are trying to create hook on". I am using Postman to test the webhook creation - Here is the response which I am getting…
sushilprj
  • 2,203
  • 1
  • 14
  • 19
0
votes
1 answer

How to display 2d (.dwg) files offline in viewer using pure Javascript Autodesk

I am trying to display 2d file in viewer in Offline mode using pure Javascript. I have already uploaded and extracted dwg using https://extract.autodesk.io/ . Extracted file contains many json.gz files and one folder. In this folder, it has…
0
votes
1 answer

Marking The Area objects in Sheets of Revit

I have been tried to get Area objects from Sheets (3D Submission) of Revit file through Forge API. Using this link GET /modelderivative/v2/designdata/{urn}/metadata/{guid of sheet}/properties the Area Information isn't there, even though i have…
0
votes
1 answer

How to get real size of Autodesk Composite Design (from Autodesk data management Api)

From this Api Can I get real size of composite design resource ? For instance: from Api response in "include" entity is shown the "storageSize" of selected main file during the upload of composite design : { "type": "versions", …
0
votes
1 answer

AutoDesk Forge API uploading file fails

We are following the tutorial for uploading a file, but can't seem to get the last step to complete successfully (Step 5: Create the first version of the uploaded file). We are able to successfully resolve the target project and folder, create a…
Mike
  • 1,031
  • 14
  • 36
0
votes
0 answers

API not exposing items:autodesk.bim360:C4RModel

Reworded Question Are items:autodesk.bim360:* objects available through BIM 360 Team hubs, or only through BIM 360 Docs hubs? Original Description I am trying to work through the tutorial on…
Neil McGuire
  • 61
  • 1
  • 5
0
votes
2 answers

What Data Managment API calls can I have on client side?

I have a file hierarchy that gets files and folders from one of the users hub. All of these calls are on server side. Can these calls reside on the client side and still remain secure? None of these calls have my client secret from my Forge…
0
votes
1 answer

Can we access custom metadata attributes from BIM 360 docs using Forge API?

Using the forge API, we would like to query models by custom fields created in bim 360 docs (see screenshot). Could the API somehow provide us this possibility? We have investigated the data management api but can't find any request that handle…
user6527767
0
votes
0 answers

Search method doesn't work with Autodesk Navisworks file in Autodesk forge Viewer API

Search method always return empty objects with Navisworks file but it works with Revit file. Here is the sample code which works with revit file but doesn't work with navisworks file. viewer.search('Levels', function(dbIds){ console.log(dbIds); },…