Questions tagged [autodesk-model-derivative]

The Model Derivative API enables users to represent and share their designs in different formats, as well as to extract valuable metadata. Offers translation of design into different formats (such as STL and OBJ), also prepares for web viewing, extract properties, geometry parts and thumbnails.

The Model Derivative API enables users to represent and share their designs in different formats, as well as to extract valuable metadata. (Its translation functionality was previously bundled as part of the “View and Data API”.)

The API offers the following features:

  • Quickly translate the design into different formats, such as STL and OBJ.
  • Translate designs into SVF format for extracting data and for rendering files in the Viewer.
  • Extract object heirarchy trees, properties, and geometries of selected parts of a design.
  • Create different-sized thumbnails from design files.

632 questions
0
votes
1 answer

Forge viewer crashes after loading specific model

I have been trying to use the forge viewer to load somewhat large model, but it seems like that the viewer crashes after few seconds (3 - 5) of usage. (with typical Aw snap! page). I've had no trouble with other models, but this happens on this…
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

Forge Viewer - model derivative API - Error file conversion to SVF

I am following the tutorial to upload a NWD file to view in a browser, and I'm using the following steps: Registered an APP Acquired Auth token I am then using the Postman to send the request through APIs Authenticate with scope data:read…
vivek shukla
  • 56
  • 1
  • 4
0
votes
1 answer

Monitoring progress of extraction job of file in a bucket?

I want to monitor the progress of an extraction job of a file stored in a bucket. I've gone through the Webhooks API documentation, and if I understood everything correctly, the events only work for files stored in a folder, so it can't be used with…
Ivan Aguilar
  • 565
  • 1
  • 7
  • 22
0
votes
1 answer

Why is webhook workflow not taken into consideration when creating modelderivative job?

When I create a job, with a webhook for completion on https://developer.api.autodesk.com/modelderivative/v2/designdata/job the misc.workflow part is not taken into consideration. This is the POST I use with postman (header only contains…
Fabien
  • 41
  • 7
0
votes
0 answers

Model Derivative API - get object properties with objectid returning 404 error

I followed the instructions outlined in https://forge.autodesk.com/blog/get-all-dbid-without-enumerating-model-hierarchy I am able to get the model object tree and see the object id's i want to get properties for. but when i take the object id and…
ahanif
  • 21
  • 1
0
votes
0 answers

Missing derivative formats which are available in A360

I've some Fusion360 models in my A360. Inside the A360 website, I can request to download a Fusion360 file in DXF, Inventor or SketchUp (any many other) formats. So my question is: Why is derivating a Fusion360 file to DXF, Invetor or SketchUp…
MHilgers
  • 63
  • 1
  • 7
0
votes
3 answers

show linked files in autodesk forge viewer

i am trying to make auto-desk forge viewer. using this link Forge & ASP.NET: from zero to hero in 30 minutes and it works fine with single revit file. now i want to view revit document that has linked document and i found this post How to Set…
0
votes
0 answers

How to get the MTL file associated with a OBJ created by Forge DerivativeApi?

I've created a OBJ derivative from a F3D file with Forge DerivativeApi. I also was able to download the OBJ derivative via getDerivativeManifest(). BUT: Where is, and how to get, the MTL file associated with and referenced in the OBJ file created by…
MHilgers
  • 63
  • 1
  • 7
0
votes
1 answer

How to form a "GET :urn/manifest/:derivativeurn" request?

I don't get how to download a created derivative from Forge. Here is what I get from the "GET :urn/manifest" request: { "type": "manifest", "hasThumbnail": "false", "status": "success", "progress": "complete", "region": "US", "urn":…
MHilgers
  • 63
  • 1
  • 7
0
votes
1 answer

Upload linked Revit models for Forge Viewer

How can I upload a Revit model that contains multiple Revit files, where one of them is a main file and the remaining are linked files into Forge Viewer? I've uploaded separately and they show as different files in the bucket and the viewer. Can we…
0
votes
0 answers

Model Derivative Api Viewer Generation Error code - 4

I have been trying to generate viewer through the autodesk-forge api.I've seen the nodejs demo and even tried with the sample code related to autodesk-forge nodejs.As I am following the documentation somehow i am getting bad request error while…
0
votes
2 answers

Unable to translate created object using autodesk forge derivativesApi

I am trying to translate an object after uploading it but I keep getting 400 Bad Request error. I am using the forge-api-nodejs-client here is how my code looks like var base64 = require('js-base64').Base64; …
Evan Lévesque
  • 3,115
  • 7
  • 40
  • 61
0
votes
2 answers

Uploading linked Revit models to Autodesk Forge

I've been trying to use the Post references (https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/urn-references-POST/) to set up the reference between two files in forge but although I get a message "success" as result when I…
0
votes
1 answer

Select objects or elements of auocad dwg file

I have a situation where i want to crop ,cut or select the objects of dwg file & save in new file. I have came up with drawing an polygon using markup feature of auto desk forge but now i want to select or crop the area within the polygon, is there…