Skip to main content
GET
/
cms
/
v3
/
audit-logs
Query audit logs
curl --request GET \
  --url https://api.hubapi.com/cms/v3/audit-logs/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "objectId": "4065364319",
      "objectName": "My Landing Page",
      "fullName": "John Doe",
      "event": "UPDATED",
      "userId": "1011561",
      "timestamp": "1583792674672",
      "objectType": "LANDING_PAGE"
    }
  ],
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    },
    "prev": {
      "before": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

Requires one of the following products or higher.
Marketing HubMarketing Hub -Free
Sales HubSales Hub -Free
Service HubService Hub -Free
Content HubContent Hub -Enterprise
Data HubData Hub -Free

Authorizations

Authorization
string
header
required

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

Query Parameters

after
string

Timestamp after which audit logs will be returned

before
string

Timestamp before which audit logs will be returned

eventType
string[]

Comma separated list of event types to filter by (CREATED, UPDATED, PUBLISHED, DELETED, UNPUBLISHED).

limit
integer<int32>

The number of logs to return.

objectId
string[]

Comma separated list of object ids to filter by.

objectType
string[]

Comma separated list of object types to filter by (BLOG, LANDING_PAGE, DOMAIN, HUBDB_TABLE etc.)

sort
string[]

The sort direction for the audit logs. (Can only sort by timestamp).

userId
string[]

Comma separated list of user ids to filter by.

Response

successful operation

The collection of audit logs.

results
object[]
required
paging
object
Last modified on December 16, 2025