Nurama Developers

untag_submission

Remove a tag from a submission.

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

Remove a tag from a submission. No-op if the tag is not currently applied.

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