Nurama Developers

delete_submission_items

DESTRUCTIVE — confirm with the user before calling.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

DESTRUCTIVE — confirm with the user before calling. Restate the target (id + a human descriptor) and wait for explicit approval; do not invoke from inferred intent. No undo. Remove paths from a submission. The underlying source assets in the creator tier are NOT touched — this only unbinds them from the submission. Returns a count of removed items.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
submissionIdstringyesUUID of the submission.
itemPathsstring[]yesSubmission-relative item paths to remove. min items 1

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "submissionId": {
      "type": "string",
      "description": "UUID of the submission."
    },
    "itemPaths": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 1,
      "description": "Submission-relative item paths to remove."
    }
  },
  "required": [
    "projectId",
    "submissionId",
    "itemPaths"
  ],
  "additionalProperties": false
}

On this page