get-comment
Retrieve comments from Liveblocks by providing roomId, threadId, and commentId. Access specific feedback or discussions within collaborative spaces efficiently.
Instructions
Get 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"
}