items_insertChangeOrder

WRITE

Insert change order.

Parameters

namestringrequired
openDatestringrequired
changeOrderIdstringoptional
typestringoptional
prioritystringoptional
changeOrderTypeIdstringoptional
nonConformanceIdstringoptional
reasonForChangeanyoptional
descriptionanyoptional
dueDatestringoptional
assigneestringoptional
customFieldsanyoptional

Call it

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

call_tool
call_tool({
  "name": "items_insertChangeOrder",
  "arguments": {
    "name": "string",
    "openDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

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