I am doing the following steps to convert an .rvt file into .svf
- Authenticate
- upload .rvt file
- translate it to .svf (with modelderivative/v2/designdata/job)
- with the response check the job complete by checking the manifest (/modelderivative/v2/designdata/{urn}/manifest)
- once the job is complete (from manifest status), the response I get does not contain derivatives urns Link to the complete manifest response : https://drive.google.com/file/d/0ByrHSB-f7jP3TXhHYVQtOEUyM2c/view?usp=sharing
Sample response: the derivative urn is missing
class ManifestDerivative {
name: autodesk.rvt
hasThumbnail: true
outputType: svf
progress: complete
status: success
children: [class ManifestChildren {
type: geometry
role: 2d
name: 03.51 - Detail V.01
hasThumbnail: true
mime: null
urn: null
progress: complete
status: success
resolution: []
modelGUID: null
objectIds: []
messages: null
}, class ManifestChildren {
type: geometry
role: 2
....
I want to know whether the urn returned by this response manifest is enough for downloading the bubble or there is something that I am doing wrong