publish_items
Publish (creator → reviewer tier) one or more resources by id.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Publish (creator → reviewer tier) one or more resources by id. Optionally trigger reviewer notification emails. Use to surface a batch of finished assets / folders to the reviewer tier in one go.
Input
| Property | Type | Required | Description |
|---|---|---|---|
projectId | string | yes | UUID of the project. |
resourceIds | string[] | yes | Asset / folder UUIDs to publish. min items 1 |
basePath | string | no | Optional reviewer-tier destination path. Defaults to mirroring the creator-tier path. |
sendEmailNotification | boolean | no | If true, reviewers receive an email notification. |
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 publish."
},
"basePath": {
"type": "string",
"description": "Optional reviewer-tier destination path. Defaults to mirroring the creator-tier path."
},
"sendEmailNotification": {
"type": "boolean",
"description": "If true, reviewers receive an email notification."
}
},
"required": [
"projectId",
"resourceIds"
],
"additionalProperties": false
}