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"
]
}
]
}
}
rac_basic_sample_project.rvt
. May I ask you a favor to translate a sample RVT file of the Revit 2017 from your end? – GauchocompressedUrn
you used istrue
, but it should be false for RVT. Besides, there is an invalid symbol at the end of yourURN
, i.e.=
, please checkURL-safe Base64 (no padding)
part in this tutorial – Gauchox-ads-force
totrue
in the HTTP POST Header. Or, call API DELETE :urn/manifest to remove the failed translation. – Gaucho[email protected]
? I saw a similar case as you asked, but the requester hasn't replied yet. – Gaucho