get-thread
Retrieve a specific thread from a Liveblocks room using the room ID and thread ID. Simplify collaborative workflows by accessing threaded conversations directly.
Instructions
Get a Liveblocks thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roomId | Yes | ||
threadId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"roomId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"roomId",
"threadId"
],
"type": "object"
}