fc_get_space_analytics
Retrieve analytics and statistics for community spaces to track engagement metrics and performance data within specified date ranges.
Instructions
Get analytics and statistics for a space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The space ID to get analytics for | |
| date_from | No | Start date (YYYY-MM-DD) | |
| date_to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"date_from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"date_to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"space_id": {
"description": "The space ID to get analytics for",
"type": "number"
}
},
"required": [
"space_id"
],
"type": "object"
}