update-room-id
Modify a room's ID in Liveblocks by specifying the current roomId and the newRoomId to update it accurately and maintain synchronization across the platform.
Instructions
Update a Liveblocks room's ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newRoomId | Yes | ||
roomId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newRoomId": {
"type": "string"
},
"roomId": {
"type": "string"
}
},
"required": [
"roomId",
"newRoomId"
],
"type": "object"
}