Skip to main content
GET
/
analytics
/
v2
/
views
Get all analytics views
curl --request GET \
  --url https://api.hubapi.com/analytics/v2/views
[
  {
    "id": 123,
    "title": "<string>",
    "updaterId": 123,
    "updatedDate": "<string>",
    "creatorId": 123,
    "createdAt": 123,
    "deletedAt": 123,
    "containsLegacyReportProperties": true,
    "reportPropertyFilters": [
      {
        "op": "<string>",
        "args": [
          "<string>"
        ],
        "prop": "<string>"
      }
    ]
  }
]

Response

Analytics views retrieved successfully

id
integer
required

The view ID

title
string
required

The view title

updaterId
integer

The ID of the user who last updated the view

updatedDate
string

The date the view was last updated

creatorId
integer

The ID of the user who created the view

createdAt
integer<int64>

The timestamp when the view was created

deletedAt
integer<int64>

The timestamp when the view was deleted

containsLegacyReportProperties
boolean

Whether the view contains legacy report properties

reportPropertyFilters
object[]
Last modified on December 12, 2025