Nurama Developers

tag_submission

Apply a tag to a submission.

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

Apply a tag to a submission. The tag must already exist on the project.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
submissionIdstringyesUUID of the submission.
tagIdstringyesUUID of the tag.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "submissionId": {
      "type": "string",
      "description": "UUID of the submission."
    },
    "tagId": {
      "type": "string",
      "description": "UUID of the tag."
    }
  },
  "required": [
    "projectId",
    "submissionId",
    "tagId"
  ],
  "additionalProperties": false
}

On this page