Augusto Goncalves
Augusto Goncalves

Reputation: 8604

Failed to trigger translation for DWF files to STEP

I’m trying to translate my .DWF file to STEP using the Model Derivative API:

{
    "input": {
        "urn":"<<DWF URN HERE>>"
    },
    "output": {
        "destination": {
            "region": "us"
        },
        "formats": [
        {
            "type": "step"
        }]
    }
}

But the request fails with this reply:

{
  "diagnostic": "Failed to trigger translation for this file."
}

Am I missing anything here?

Upvotes: 0

Views: 413

Answers (1)

Adam Nagy
Adam Nagy

Reputation: 2175

STEP export format is currently not available for DWF files :(

Here you can find a list of all the design file formats and the export file format supported for them: https://developer.autodesk.com/en/docs/model-derivative/v2/overview/supported-translations/

You can also access this information programmatically from here: https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/formats-GET/

Cheers,

Adam

Upvotes: 1

Related Questions