capacities_get_space_info
Retrieve detailed information about a specific Capacities space, including its structures and collections, by providing the space's UUID. Ideal for integrating with knowledge management systems.
Instructions
Get detailed information about a specific Capacities space including structures and collections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceId | Yes | The UUID of the space to get information for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"spaceId": {
"description": "The UUID of the space to get information for",
"format": "uuid",
"type": "string"
}
},
"required": [
"spaceId"
],
"type": "object"
}