update_submission
Rename / redescribe / re-version a submission.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Rename / redescribe / re-version a submission. Pass only the fields that change.
Input
| Property | Type | Required | Description |
|---|---|---|---|
projectId | string | yes | UUID of the project. |
submissionId | string | yes | UUID of the submission. |
subject | string | no | |
description | string | no | |
version | string | no |
JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"description": "UUID of the project."
},
"submissionId": {
"type": "string",
"description": "UUID of the submission."
},
"subject": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"projectId",
"submissionId"
],
"additionalProperties": false
}