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
0 answers

"No Write Access" error on buckets/:bucketKey/objects/:objectKey/resumable

I am trying to upload a file to my bucket through this API: https://forge.autodesk.com/en/docs/data/v2/reference/http/buckets-:bucketKey-objects-:objectKey-resumable-PUT/ I am getting a 403 error. Not quite sure why that is happening since I have…
0
votes
1 answer

How to Upload a worksharing Revit model in BIM360 Docs using Autodesk Forge Data Management API

I have been following those two links to Upload an RVT File: https://forge.autodesk.com/en/docs/data/v2/tutorials/upload-file/ https://forge.autodesk.com/blog/direct-s3-nodejs-samples And POST items works fine as long as the type of file is…
Duzmac
  • 421
  • 1
  • 5
  • 14
0
votes
1 answer

Get Object from Model Browser after click Visible/Invisible icon Autodesk Forge

How do I get the objects I've filtered from the model browse? I've used OBJECT_TREE_CREATED_EVENT, but it's only used the first time when the model is loaded. Image
0
votes
1 answer

Forge Data management returns zip file

When I get the download link for a Revit Model obtained in the cloud as shown here. I found that sometimes the link returns a Revit file and sometimes a zip file. I am passing this URL to Design Automation so it sometimes fails (in case the link…
0
votes
0 answers

Data Management API's - Issues tag not present

I'm using Data Management API's to get projects info API. In some cases hubs/:hub_id/projects API doesn't returns issues tag into relationships tag. If I go in BIM360's project issues are presents. Is there a particular reason for this…
0
votes
1 answer

Not able to get custom attribute data from Autodesk BIM360 for data management API

Not able to get custom attribute data from Autodesk BIM360 for data management API - https://forge.autodesk.com/en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-contents-GET/ When I was trying to get all data available in a…
user17080143
0
votes
1 answer

generateMasterViews in BIM360

I have a problem with revit files loaded into BIM360; Rooms and spaces in Forge viewer are not displayed as in the example reported at the link…
0
votes
1 answer

Autodesk Forge : Checksum for File Downloads at Endpoint GET buckets/:bucket_key/objects/:object_name

I am following the Tutorial Download File on Forge Api Support Page , my goal is to download the files , and verify their integrity. I thought I could get a checksum in response from the server at the "Download Endpoint" but I don't get any. Let me…
Newbee
  • 45
  • 1
  • 9
0
votes
2 answers

403 error when accessing users in a project

I am trying to get the list of users who have access to a project using this Forge API. I have given the scope as account:read. I tried it suing Postman and also from ASP.NET Core backend which I am developing. In both cases I get the same error: { …
0
votes
1 answer

Is there a way to copy an object from a bucket to the Revit Design Automation local path?

I have created a bucket like following (Python): payload = {'bucketKey' : bucketname,'policyKey' : 'transient'} resp = requests.post(Forge_BASE_URL+'/oss/v2/buckets', headers={'Authorization':…
0
votes
1 answer

Get a 3-Legged Token with Authorization Code Grant gives an Error AUTH-004

In our application we have a angular frontend app which has Autodesk login for BIM 360 document. After user is logged in frontend we are retrieving 3 legged authorization code from Autodesk and pass it to C# backend where we are using the code to…
0
votes
1 answer

'Search' endpoint seems unstable

When using Forge Data Management API endpoint projects/:project_id/folders/:folder_id/search we have two problems. It seems that we sometimes have to wait for several minutes (hours?) after a model is uploaded until it can be found by the…
0
votes
1 answer

BIM 360 viewer for all users without custom integration

How and can I build a forge (basic BIM 360 viewing app) for all BIM 360 users without enabling application provisioning for each of the users.
0
votes
2 answers

Some BIM360 RVT files show references, some don't - isCompositeDesign seems to distinguish both cases

We have several Revit projects hosted on BIM360 and need to extract link information from the files. The links where created in Revit following the proposed workflow described here. Querying the references endpoint of the data management API…
0
votes
1 answer

How to create a photo attachment for an issue with Autodesk Forge API?

I am trying to attach a photo via the Forge API to an issue like it does in BIM 360 when drag and drop files into the Attachments tab. I tried to create a bucket, upload a file there and attach the uploaded file with "urnType" = "oss" using a POST…