items_setChangeOrderActionTasks

WRITE

Set change order action tasks.

Parameters

changeOrderIdstringrequired
requiredActionIdsstring[]required

Call it

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

call_tool
call_tool({
  "name": "items_setChangeOrderActionTasks",
  "arguments": {
    "changeOrderId": "string",
    "requiredActionIds": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "changeOrderId": {
      "type": "string"
    },
    "requiredActionIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "changeOrderId",
    "requiredActionIds"
  ]
}