Nurama Developers

add_items_to_submission

Add creator-tier paths to an existing submission.

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

Add creator-tier paths to an existing submission. Optionally place them under a destination path within the submission so the receiving reviewers see a consistent folder structure.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
submissionIdstringyesUUID of the submission.
itemPathsstring[]yesCreator-tier project paths to include. min items 1
destinationPathstringnoOptional sub-path within the submission to nest the items under.

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": "Creator-tier project paths to include."
    },
    "destinationPath": {
      "type": "string",
      "description": "Optional sub-path within the submission to nest the items under."
    }
  },
  "required": [
    "projectId",
    "submissionId",
    "itemPaths"
  ],
  "additionalProperties": false
}

On this page