Nurama Developers

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

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
resourceIdsstring[]yesAsset / folder UUIDs to publish. min items 1
basePathstringnoOptional reviewer-tier destination path. Defaults to mirroring the creator-tier path.
sendEmailNotificationbooleannoIf 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
}

On this page