# `api.dashboard.get_grid_view_state` > `GET /dashboard/gridviewstate/{id}` — ACPortal **Python** ```python api.dashboard.get_grid_view_state(view_id: str) -> GridViewState ``` **CLI** ```bash ab dashboard get_grid_view_state ``` Fetch the saved column / filter / sort state for a grid view. ## Response Returns `GridViewState`. | Field | Type | Required | Description | |---|---|---|---| | `id` | `Optional[str]` | no | View state ID | | `columns` | `Optional[list[dict]]` | no | Column configurations | | `filters` | `Optional[list[dict]]` | no | Active filters | | `sortOrder` | `Optional[list[dict]]` | no | Sort configuration | --- [← Back to api.dashboard](../dashboard.md)