settings_updateMaintenanceDispatchNotificationSettings
WRITEUpdate maintenance dispatch notification settings.
Parameters
maintenanceDispatchNotificationGroupstring[]optionalqualityDispatchNotificationGroupstring[]optionaloperationsDispatchNotificationGroupstring[]optionalotherDispatchNotificationGroupstring[]optionalCall 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"
}
}
}
}