delete-comment
Remove a specific comment from a thread in a Liveblocks room by specifying the roomId, threadId, and commentId.
Instructions
Delete a Liveblocks comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commentId | Yes | ||
roomId | Yes | ||
threadId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"commentId": {
"type": "string"
},
"roomId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"roomId",
"threadId",
"commentId"
],
"type": "object"
}