无法触发 DWF 文件到 STEP 的转换

Failed to trigger translation for DWF files to STEP

我正在尝试使用 Model Derivative API:

将我的 .DWF 文件转换为 STEP
{
    "input": {
        "urn":"<<DWF URN HERE>>"
    },
    "output": {
        "destination": {
            "region": "us"
        },
        "formats": [
        {
            "type": "step"
        }]
    }
}

但是请求失败,回复如下:

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

我在这里遗漏了什么吗?

STEP 导出格式目前不适用于 DWF 文件:(

您可以在此处找到所有设计文件格式及其支持的导出文件格式的列表: https://developer.autodesk.com/en/docs/model-derivative/v2/overview/supported-translations/

您还可以从此处以编程方式访问此信息: https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/formats-GET/

干杯,

亚当