I wanted to convert the Revit file sheet to DWG file, so I created a job using the Model Derivative API, When I check the Manifest, Progress will remain at 0% no matter how many hours have passed.
The following json was used to create the job
{
"input" : {
"urn" : "dXJuOmFk****************************QucnZ0"
},
"output" : {
"formats" : [
{
"type" : "dwg"
}
]
}
}
The result of getManifest is as follows.
Autodesk\Forge\Client\Model\Manifest Object (
[container:protected] => Array (
[urn] => dXJuOmFk****************************QucnZ0
[type] => manifest
[progress] => 0% complete
[status] => success
[has_thumbnail] => 1
[region] => US
[derivatives] => Array ( )
)
)
Uses PHP Forge-sdk
What can I do to make the translation progress?