get-thread-participants
Retrieve a list of participants from a specific thread in a Liveblocks room using room and thread IDs. Streamline collaboration and communication tracking.
Instructions
Get a Liveblocks thread's participants
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"
}