delete-inbox-notification
Remove specific inbox notifications from the Liveblocks server by specifying the user ID and notification ID to manage notification clutter effectively.
Instructions
Delete a Liveblocks inbox notification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inboxNotificationId | Yes | ||
userId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inboxNotificationId": {
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"userId",
"inboxNotificationId"
],
"type": "object"
}