get_enterprise_app_store_app_usage_report
Retrieve daily app usage data for your enterprise app store. Filter by date range and organization to monitor adoption.
Instructions
Get app usage report for enterprise app store.
Retrieves paginated daily app usage data for the enterprise app store. start_date and end_date are required. Supports optional filter by organization.
IMPORTANT: Results are paginated by default to prevent token limit issues. Default page size is 50 items. Use page parameter to retrieve additional results.
Args: start_date: Start date (format: "YYYY-MM-DD", e.g., "2024-01-01") end_date: End date (format: "YYYY-MM-DD", e.g., "2024-12-31") page: Page number (starts from 1, default: 1) size: Items per page (1-100, default: 50) organization_id: Optional filter by organization UUID
Returns: Standard envelope (see docs/tool_contract.md): - Success: success (true), data (list of app usage records), meta (count, page, page_size, total_count, total_pages, has_more, next_page, filters). - Error: success (false), error (tool, type, message, details).
Examples: Get app usage for last month: get_enterprise_app_store_app_usage_report( start_date="2024-11-01", end_date="2024-11-30" )
Filter by organization:
get_enterprise_app_store_app_usage_report(
start_date="2024-01-01",
end_date="2024-12-31",
organization_id="49ddc35d-85e8-4898-a4f7-496b63660db4"
)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| size | No | ||
| end_date | Yes | ||
| start_date | Yes | ||
| organization_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |