subscribe-to-thread
Enable real-time updates for specific Liveblocks threads by subscribing with room and thread IDs. Stay informed on thread activity for collaborative workflows.
Instructions
Subscribe to a Liveblocks thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | ||
roomId | Yes | ||
threadId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"additionalProperties": false,
"properties": {
"userId": {
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
},
"roomId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"roomId",
"threadId",
"data"
],
"type": "object"
}