List warehouse views
list_viewsList Autotask Data Warehouse reporting views (wh_*) with column counts to find the right table. Filters by name substring; falls back to schema snapshot if database unavailable.
Instructions
List the Autotask Data Warehouse views (read-only reporting views, all named wh_*) with their column counts. Use this FIRST to discover which view holds the data you need, then describe_view for its columns and query to read rows. Source is the live INFORMATION_SCHEMA; if the DB is unreachable it falls back to the bundled schema snapshot (the 'source' field says which). Trap: there is NO wh_ticket view - tickets live in wh_task with project_id IS NULL. Optional case-insensitive substring filter on the view name. See warehouse://guide for the data model and how to resolve *_id columns to names.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Case-insensitive substring to match view names, e.g. "time" matches wh_time_item and wh_time_subitem. Omit to list all views. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| views | Yes | ||
| source | Yes |