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
1
vote
1 answer

Autodesk Datamanagement API: Store Custom Objects

I am currently trying to integrate the Autodesk Datamanagement API in my application. Now I am wondering, if I can use it as a kind of a database to store objects. Is this possible or would it be a misue of this API? So basically I want to create…
Andreas
  • 309
  • 1
  • 8
1
vote
2 answers

Autodesk Data Management API 403-Error with permissions to access API

I am trying to receive data via Autodesk Data Management API. So far I've created an Forge-App and connected it with a BIM360 Integration. Then I wanted to get a list of all hubs, but when I do so, I receive an JSON-Object which contains a…
Andreas
  • 309
  • 1
  • 8
1
vote
2 answers

Updating the properties of an item

I'm attempting to use the Data Management API to update the display name of an item within BIM 360 Docs, it looks like this API call is the one I'm after, however the documentation for it is less than helpful. I can see the call should…
Dan Scott
  • 19
  • 6
1
vote
2 answers

Autodesk Forge: Model Compare (BIM 360 Feature)

Bim 360 has a great tool called "compare versions" which allows the viewing of changes between two Revit models. More info can be found on the feature here: Compare versions info Is this feature found within Autodesk Forge? I haven't been able to…
1
vote
2 answers

Content-type application/json causes 415 Unsupported Media Type

I am testing Forge API, and I have been able to complete requests smoothly for most endpoints, except the GET Hubs - I kept getting a 415 Unsupported Media Type. Strangely enough, after I remove the Content-Type header - which was the same header…
gtalarico
  • 4,409
  • 1
  • 20
  • 42
1
vote
2 answers

Cant get hubs from BIM 360 by using Forge Data Management API

I am trying to get all my hubs from a360 and BIM360. I already have access to my BIM 360 Account and “Apps & Integrations” is visible to me. Also added integration with Forge application. I have sent a request with my 3-Legged Token: curl -X GET -H…
1
vote
2 answers

Design Automation API: My file is being corrupted but everything points to success

I've been working with the Design Automation API to run some simple scripts on some drawing files, but my output file is always corrupted and I'm not sure why. I'm running the following script to add some data to a drawing in a MTEXT ; Some setup of…
1
vote
1 answer

Autodesk Forge API upload a file

I am new to FORGE API development and I'm trying to develop a console application to manage data with FORGE API,These are the steps I have followed so far 1.I have successfully registered an APP on FORGE 2.Then I have acquired a OAuth token using…
0
votes
1 answer

Autodesk ACC API Error 400: One or more input values in the request were bad - PATCH projects/:project_id/items/:item_id

I want to send a PATCH request using Autodesk Construction Cloud (ACC) API using Workato to update an attribute of a file/document (E.g.: displayName) but keep encounter a 400 error: One or more input values in the request were…
0
votes
1 answer

I am using Data Management API to upload a file to OSS and AWS S3 returns the error "The specified method is not allowed"

I am trying to reproduce the tutorial for Autodesk OSS, uploading a file to then convert it to an SVF. (https://aps.autodesk.com/en/docs/model-derivative/v2/tutorials/prep-file4viewer/task2-upload_source_file_to_oss/) At the step where I upload the…
Vitaly
  • 1
  • 1
0
votes
0 answers

What is a uploadable maximum file size?

I tries uploading 200MB Solid works format file, and it worked out. Don't consider request timeout issue. I will extend it to 30min How about 500MB or 1GB? If I can upload 500MB solid works file(or assmembly files), I'm happy. If I can upload 1GB…
0
votes
1 answer

How to create a modelsets by BIM 360 API

I encountered some problems when I use the POST :containers/:containerId/modelsets API endpoint . I use the topfolder of the my project as my modelset folder URN: But it still return 400 when I send the request: Is it right to use the topfolder…
0
votes
1 answer

I want to build Forge Hubs Browser of 2-legged OAuth with BIM 360 Docs

I've been working on my test project to create node.js 2-legged OAuth Forge Hubs Browser with BIM 360 Docs. I first developed the 3-legged OAuth app along with the tutorial document published by…
0
votes
0 answers

Bad input updating attributes with APS Data Management API

I am trying to update an attribute of an item as it is explained in the doccumentation but I get the BAD_INPUT response. https://aps.autodesk.com/en/docs/data/v2/reference/http/projects-project_id-items-item_id-PATCH/ I verified that the id´s of the…
0
votes
0 answers

Is there a delay between finalising a direct to S3 upload, and being able to request a signed s3 download?

I have an Azure function which requests a signed S3 upload URL, uploads a file to the URL, calls the URL to finalise the upload, and then finally tries to generate a signed S3 download URL for the file ive just uploaded. However, my function often…