settings_updateMaintenanceDispatchNotificationSettings

WRITE

Update maintenance dispatch notification settings.

Parameters

maintenanceDispatchNotificationGroupstring[]optional
qualityDispatchNotificationGroupstring[]optional
operationsDispatchNotificationGroupstring[]optional
otherDispatchNotificationGroupstring[]optional

Call it

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

call_tool
call_tool({
  "name": "settings_updateMaintenanceDispatchNotificationSettings",
  "arguments": {
    "maintenanceDispatchNotificationGroup": [],
    "qualityDispatchNotificationGroup": [],
    "operationsDispatchNotificationGroup": [],
    "otherDispatchNotificationGroup": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "maintenanceDispatchNotificationGroup": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "qualityDispatchNotificationGroup": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "operationsDispatchNotificationGroup": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "otherDispatchNotificationGroup": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}