---
title: "Get the list view of a saved report"
method: GET
path: "/bookmarks/custom_pivots/{report_id}"
tags: ["Custom reports"]
---

# Get the list view of a saved report

`GET /bookmarks/custom_pivots/{report_id}`

The list view responds with a JSON object with three attributes: pagination, columns, and rows.

The columns attribute is an array of objects that give detailed information
about the columns of the list. The objects include the name of the table, the field, and
a human readable title attribute.

The rows attribute is an of array of arrays. Each object within the inner array contains the value
of that for a specific column. Each object contains attributes for various representations of the
data. The fields are:

  - `id`: The unique id of the object
  - `plain_value`: A string representation of the object
  - `html_value`: An HTML representation of the object. This is the same HTML that
  is used in Aha! to represent the value in our reports.
  - `rich_value`: If the object is a reference to another object (such as a tag),
  the, this will be the object representation. For instance, a tag would be
  representated as:
  ```
  {
    id: "6013053275679792248",
    name: "API"
  }
  ```

The third attribute is pagination. This works like everywhere else in the Aha! API and is documented [here](/api#pagination).

## Path parameters

- `report_id` string, required

## Query parameters

- `page` string
- `per_page` string
- `view` string

## Response `200`

Successful operation

---

[API](https://skmtc.net/aha/apis/aha-api.md) · [All operations](https://skmtc.net/aha/apis/aha-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aha/aha-api/revisions/6274be5aa6c5/schema)
