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

Uploading a file to the plans folder in BIM360Docs

I'm new to using the data management API to gain access to BIM360Docs, I've successfully downloaded a file from any folder and I can upload to the project files folder, however the issue lies with uploading to the plans folder, all the API calls…
0
votes
1 answer

Uploading a file to storage location

I'm getting stuck on uploading a file via the data management API to a BIM 360 storage location, specifically the last step I've been following the step by step guide on the forge site here and saw an answer here however using postman copying and…
Dan Scott
  • 19
  • 6
0
votes
1 answer

Why is 3-legged on OSS not possible?

I'm having trouble understanding why only 2-legged authentication is allowed on certain OSS requests (for example GET bucket details, GET all buckets, POST a bucket). Why creating buckets or viewing buckets contents are considered to be application…
0
votes
1 answer

Autodesk Forge and 416 (Requested Range Not Satisfiable)

I'm trying to send a Revit file to my Bucket chunk by chunk. My Revit file is almost 13 MB. Here is my code: function handleFileSelect(evt) { var files = evt.target.files; var file = files[0]; var segmentSize = 1024 * 1024 * 5;…
0
votes
1 answer

UploadChunk Autodesk API

What am i doing wrong? I have the autorization, I have the bucket, I have the file but i can't upload it, and it's too large to use UploadObject. here's the part of the upload of my code using (StreamReader streamReader = new…
0
votes
1 answer

SVF file and SFV file URN using PHP code - Forge

We are trying to convert Revit(.rvt) file to SVF so that we can view this file in viewer, for this we are using forge API and PHP. But when we execute cURL command to get SVF, getting NULL result. We are using following steps…
0
votes
1 answer

Autodesk Forge Data Management API Download Item

I am trying to download a file from A360 via the Autodesk Forge Data Management API. The documentation states that the JSON returned for an 'Items' or 'Versions' should have a section called 'included.relationships.storage.meta.link.href'. Step 5:…
BassetMan
  • 461
  • 6
  • 13
0
votes
1 answer

Deleting an Autodesk A360 Project File

I'm currently trying to delete a file that I uploaded to one of my A360 Projects. I found this Deleting a file from bucket. Autodesk-forge while searching for a solution. As far a I unterstood you can't directly delete a file, instead you have to…
Timo
  • 3
  • 3
0
votes
1 answer

How to upload file to storage location in Autodesk Forge using 3-legged Token?

I have genereted accessToken by 3-legged Token, bucketKey and objectName by Create a Storage Location API as shown in this tutorial(step 4). I want to upload file to storage location.My request returns 'OK 200' status, but it not upload file to…
Tony V.
  • 350
  • 1
  • 4
  • 21
0
votes
1 answer

Transfer BIM360 folders from one Hub to another

is it possible to transfer files/folders "Hub A" to "Hub B"? Let's say we use Hub A (and C4R) for prototyping purposes, and every month we have to download this prototypes, which is problematic because either the download does not have a directory…
0
votes
1 answer

Forge viewer,not responding from server

Since 2016.12.7 afternoon the forge servers are not responding to my API calls related to forge viewer,It only responding to the authentication API.I tried to load viewer with error handling functions it returns a error "onDocumentLoadFailure() -…
0
votes
1 answer

Is it possible to insert multiple blocks into a drawing using the Forge Design Automation API?

As the title says I am looking to use the Design Automation API to upload an archive of blocks, then insert them all into a drawing with a border. The positioning of the blocks does not matter they just need to be inserted into the drawing ready to…
0
votes
1 answer

Get Data from Autodesk Foge Viewer (View & Data Api)

I want to do some calculations on the DWG files uploaded into Forge Viewer. I am trying to let the user select favorite objects on the shape and get for example the area of that object (e. g. wall or door). But the problem is that CAD files are not…
0
votes
1 answer

Persist custom metadata categories and properties

Will the data management API be updated to allow saving your own metadata to objects and files? If I run a batch process on a set of models, I'd rather not have to run it again on un modified objects
0
votes
1 answer

What is the size limit for upload and download from the Autodesk Forge Object Storage Service

I am using Authentication V1 and I am wanting to use the OSS to store a .rvt or a .rfa file. What are the size limits, transfer rate limits for uploading and downloading. These could be approximate values. I am just weighing my options between Drop…