items_setChangeNoticeActionTasks

WRITE

Set change notice action tasks.

Parameters

changeNoticeIdstringrequired
requiredActionIdsstring[]required

Call it

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

call_tool
call_tool({
  "name": "items_setChangeNoticeActionTasks",
  "arguments": {
    "changeNoticeId": "string",
    "requiredActionIds": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

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