Get format conversion jobs
GET/api/v2/rawmodel/:id/processedFormats
Returns an array of objects, each object represents a format conversion job with its status, progress, and target formats.
Request
Path Parameters
id integerrequired
The id of the base asset
Example: 281
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
object
[
{
"progress": 0,
"status": "queued",
"formats": [
"gltf",
"usdc"
]
},
{
"progress": 100,
"status": "finished",
"formats": [
"fbx"
]
},
{
"progress": 50,
"status": "failed",
"formats": [
"usdz",
"usda"
]
},
{
"progress": 50,
"status": "executing",
"formats": [
"usdz",
"stl"
]
}
]
Loading...