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

Autodesk API uploading file from PHP with CURL

Good people, please help, with this code I am trying to download a * .nwd file, the download happens, but when processing (Translate) it gives an error, I also noticed that SHA1 differs in output when downloading and the file I have. What am I…
LyaKich
  • 3
  • 1
0
votes
1 answer

Autodesk-Forge Publish multiple models to BIM 360 using the Data Management API

I am trying to create a postman set of collections that will be able to publish all the models in our companies directory everyday without having to publish each of them manually. So far I have been able to extract the project id and item id of each…
jash
  • 21
  • 2
0
votes
1 answer

Error uploading Autodesk design automation, dotnet Core..... 1 rfa and 1 big Json file to pass as input

The Revit Addin is working perfectly and I have also converted correctly for Design automation. I have debugged it with local debugger. It worked perfect. So I can say app bundle is perfectly doing well. Now coming to the web application code, it…
0
votes
0 answers

How can I download a entire folder and hisub-folder with forge API from BIM360

I am a beginner and try to use the Autodesk Forge DATA MANAGEMENT API to create a beginner thing. I want to create an archive of one bim360 folder with throught the forge API. When I want to download one file there is no problem. (Find the hub, find…
0
votes
1 answer

Bim360 Forge get a list of changed items

Our organization is using Bim360 Docs. I'm writing a service that should stay constantly updated with any changes to documents/folders in the project. I'm using WebHook API to achieve this. Everything works fine if service is always running, but if…
0
votes
1 answer

Is model.publish event occur only during Revit publish action?

Description of this event says: "When a Revit Cloud Worksharing model is queued or when processing starts." Does it mean that this event occurs only after a model was published from Revit? Or it includes other cases (e.g. when we transfer the Revit…
0
votes
1 answer

Data Management API get the full folder path of the document

when using https://developer.api.autodesk.com/data/v1/projects/:project_id/folders/:folder_id/search end point, I am receiving both deleted and non deleted documents. I know there are post stating using included.attributes.hidden would resolve the…
0
votes
1 answer

Autodesk design automation Revit , text file as input

The Revit API I developed, take a text file as input. the text file looks like as below...... 1.002, 20,502, 21.706 12.502, 5,502, 7.706 21.002, 15,502, 14.706 ..................... ..................... (The values are not correct.just imaginary. I…
0
votes
1 answer

Texture resolution translate to SVF

My problem is: I've uploaded a File (a big Area with an orthophoto) in Forge. By translating to SVF, my orthophoto loses her quality (the resolution changes). I've seen that it's impossible to change that. I found a solution to create an SVF without…
0
votes
1 answer

Can I use the same SSO session in a Revit add-in for my own Forge API usage?

I am currently working on an extension to a Revit add-in, which pulls BIM360 cloud models to use in some processing. With the Forge API Client for C# I'm now retrieving the hubs, projects and files which the user is allowed to access. My gripe is…
0
votes
0 answers

Getting Item Description using Forge Data Management API

I am using the Forge Data Management API to search for documents within a BIM 360 Docs folder/subfolder. The used endpoint is https://developer.api.autodesk.com/data/v1/projects/:project_id/folders/:folder_id/search the received results does not…
0
votes
0 answers

Is there a Work Around to Get Markups, Issues and RFI Events (Add, Delete, Update) Through Autodesk Webhooks API?

Is there a Work Around to Get Markups, Issues and RFI Events (Add, Delete, Update) Through Autodesk Webhooks API? I'm basically trying to capture the events for Issues, RFIs and Markups when there're linked to a spefic file using Webhooks API.…
0
votes
1 answer

Autodesk Forge uploadObject API fails to upload a file 30MB to 100MB files

I am uploading files locally using the ForgeSample project, but I can't upload files that are larger than 20MB. The largest files I've tried were a 84MB and a 52MB file, which is less than the recommended size before you should use resumable upload…
0
votes
1 answer

Forge API: Cannot get all projects from my BIM360 Team

I'm trying to get the list of all projects in my BIM360 Team Hub. However, I found that the API call doesn't give me the entire projects. I tried to find where the discrepancy came from, and I suspect the creation date of a project could be…
Yongjoon Kim
  • 107
  • 1
  • 8
0
votes
1 answer

Some items not returned by FoldersApi.GetFolderContents

In one of our projects, not all items shown in the BIM360 UI of a folder are returned via the corresponding API-call. We use the Forge .Net SDK: var foldersApi = FoldersApi(); var contents = foldersApi.GetFolderContents(projectId, folderId); This…