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
| Property | Type | Required | Description |
|---|---|---|---|
projectId | string | yes | UUID of the project. |
submissionId | string | yes | UUID of the submission. |
tagId | string | yes | UUID 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
}