items_updateChangeOrder

WRITE

Update change order.

Parameters

idstringrequired
changeOrderIdstringoptional
namestringoptional
typestringoptional
prioritystringnulloptional
changeOrderTypeIdstringnulloptional
nonConformanceIdstringnulloptional
openDatestringoptional
reasonForChangeanyoptional
descriptionanyoptional
dueDatestringnulloptional
assigneestringnulloptional
customFieldsanyoptional

Call it

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

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

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "changeOrderId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "changeOrderTypeId": {
      "type": [
        "string",
        "null"
      ]
    },
    "nonConformanceId": {
      "type": [
        "string",
        "null"
      ]
    },
    "openDate": {
      "type": "string"
    },
    "reasonForChange": {},
    "description": {},
    "dueDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "customFields": {}
  },
  "required": [
    "id"
  ]
}