update-notification-settings
Manage and customize notification preferences for Liveblocks users by updating user-specific settings to control alert types and frequencies.
Instructions
Update Liveblocks notification settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | ||
userId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"additionalProperties": {
"additionalProperties": {
"type": "boolean"
},
"type": "object"
},
"type": "object"
},
"userId": {
"type": "string"
}
},
"required": [
"userId",
"data"
],
"type": "object"
}