read_matrix_snapshot
Retrieve revenue tracking data from Google Sheets for specific topics and date ranges to analyze business performance metrics and pipeline status.
Instructions
Read Matrix entries for a date range. Returns all entries for specified topics and dates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date YYYY-MM-DD (optional, defaults to today) | |
startDate | No | Start date YYYY-MM-DD (optional, defaults to beginning) | |
topics | No | Array of topics to include (optional, defaults to all) |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date YYYY-MM-DD (optional, defaults to today)",
"type": "string"
},
"startDate": {
"description": "Start date YYYY-MM-DD (optional, defaults to beginning)",
"type": "string"
},
"topics": {
"description": "Array of topics to include (optional, defaults to all)",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}