mark-thread-as-unresolved
Mark a Liveblocks thread as unresolved to indicate it requires further attention. Provide roomId, threadId, and user data to update the thread status.
Instructions
Mark a Liveblocks thread as unresolved
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"
}