Nurama Developers

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

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
resourceIdsstring[]yesAsset / 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
}

On this page