account_upsertNotificationPreference

WRITE

Upsert notification preference.

Parameters

topicstringrequired
channelenumrequired
enabledbooleanrequired

Call it

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

call_tool
call_tool({
  "name": "account_upsertNotificationPreference",
  "arguments": {
    "topic": "string",
    "channel": "string",
    "enabled": true
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "topic": {
      "type": "string"
    },
    "channel": {
      "type": "string",
      "enum": [
        "email",
        "slack"
      ]
    },
    "enabled": {
      "type": "boolean"
    }
  },
  "required": [
    "topic",
    "channel",
    "enabled"
  ]
}