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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200
application/json

Analytics views retrieved successfully

The response is of type object[].