repair_assets
Re-trigger post-processing (thumbnails, transcoding, metadata extraction) for one or more assets.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Re-trigger post-processing (thumbnails, transcoding, metadata extraction) for one or more assets. Use when an asset is stuck in a pending state, has a missing thumbnail, or its post-processing previously failed. Does not re-upload — the original file is reused.
Input
| Property | Type | Required | Description |
|---|---|---|---|
assetIds | string[] | yes | One or more asset UUIDs to repair. min items 1 |
JSON Schema
{
"type": "object",
"properties": {
"assetIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "One or more asset UUIDs to repair."
}
},
"required": [
"assetIds"
],
"additionalProperties": false
}