settings_updateDigitalQuoteSetting

WRITE

Update digital quote setting.

Parameters

digitalQuoteEnabledbooleanrequired
digitalQuoteNotificationGroupstring[]required
digitalQuoteIncludesPurchaseOrdersbooleanrequired

Call it

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

call_tool
call_tool({
  "name": "settings_updateDigitalQuoteSetting",
  "arguments": {
    "digitalQuoteEnabled": true,
    "digitalQuoteNotificationGroup": [],
    "digitalQuoteIncludesPurchaseOrders": true
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "digitalQuoteEnabled": {
      "type": "boolean"
    },
    "digitalQuoteNotificationGroup": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "digitalQuoteIncludesPurchaseOrders": {
      "type": "boolean"
    }
  },
  "required": [
    "digitalQuoteEnabled",
    "digitalQuoteNotificationGroup",
    "digitalQuoteIncludesPurchaseOrders"
  ]
}