Nurama Developers

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

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
submissionIdstringyesUUID of the submission.
subjectstringno
descriptionstringno
versionstringno

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
}

On this page