I've uploaded a Revit model to my OSS bucket and trying to translate the file to svf, but I'm getting the following:
400 Bad Request {"diagnostic":"Invalid 'design' parameter."}
I'm new to the Forge API and not sure where a design parameter is required or where it's referring to, so any guidance would be appreciated.
POST https://developer.api.autodesk.com/modelderivative/v2/designdata/job
Headers
Authorization: Bearer {AccessToken}
Content-Type: application/json
Body
{
"input": {
"urn": "{MyDesignBase64Urn}",
"compressedUrn": false,
"rootFilename": "test-project.rvt"
},
"output": {
"destination": {
"region": "us"
},
"formats": [
{
"type": "svf",
"views": [
"2d",
"3d"
]
}
]
}
}