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
| 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
}