We've had good luck importing, converting, and extracting meta data from .rvt files using the following steps:
- Uploading files in chunks to an OSS bucket using resumable endpoint
- PUT buckets/:bucketKey/objects/:objectName/resumable
- Kicking off a new job to convert the file to SVF
- POST https://developer.api.autodesk.com/modelderivative/v2/designdata/job
- { "input": { "urn": ":urn" }, "output": {"formats": [ { "type": "svf", "views": ["2d", "3d"] } ] } }
- Validating the job completed successfully completed
- Get the GUID for the 3D view
- Check that the metadata call doesn't returns 200 not 202
When running a .dgn (Bentley) file through this process, it gets through steps 1-4 OK, and even loads and displays metadata in the viewer. But, the call in step 5 will never return 200OK or and metadata.
Anyone had any luck working with non Autodesk file types?