get-storage-document
Retrieve a storage document from a specific room in Liveblocks using the roomId. Access and manage shared data efficiently within collaborative environments.
Instructions
Get a Liveblocks storage document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roomId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"roomId": {
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}