unpublish_items
Unpublish (remove from reviewer tier) one or more resources.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Unpublish (remove from reviewer tier) one or more resources. The creator-tier originals are untouched.
Input
| Property | Type | Required | Description |
|---|---|---|---|
projectId | string | yes | UUID of the project. |
resourceIds | string[] | yes | Asset / folder UUIDs to unpublish. min items 1 |
JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"description": "UUID of the project."
},
"resourceIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "Asset / folder UUIDs to unpublish."
}
},
"required": [
"projectId",
"resourceIds"
],
"additionalProperties": false
}