quality_updateIssue

WRITE

Update issue.

Parameters

idstringrequired
nonConformanceIdstringoptional
namestringoptional
priorityenumoptional
sourceenumoptional
locationIdstringoptional
nonConformanceTypeIdstringoptional
nonConformanceWorkflowIdstringnulloptional
openDatestringoptional
dueDatestringnulloptional
closeDatestringnulloptional
descriptionstringnulloptional
quantitynumberoptional
requiredActionIdsstring[]optional
approvalRequirementsstring[]optional
customFieldsanyoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "quality_updateIssue",
  "arguments": {
    "id": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "nonConformanceId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Low",
        "Medium",
        "High",
        "Critical"
      ]
    },
    "source": {
      "type": "string",
      "enum": [
        "Internal",
        "External"
      ]
    },
    "locationId": {
      "type": "string"
    },
    "nonConformanceTypeId": {
      "type": "string"
    },
    "nonConformanceWorkflowId": {
      "type": [
        "string",
        "null"
      ]
    },
    "openDate": {
      "type": "string"
    },
    "dueDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "closeDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "quantity": {
      "type": "number"
    },
    "requiredActionIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "approvalRequirements": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "customFields": {}
  },
  "required": [
    "id"
  ]
}