Skip to main content
GET
/
account-info
/
v3
/
activity
/
audit-logs
Retrieve audit logs
curl --request GET \
  --url https://api.hubapi.com/account-info/v3/activity/audit-logs \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "actingUser": {
        "userId": 123,
        "userEmail": "<string>"
      },
      "action": "<string>",
      "category": "<string>",
      "id": "<string>",
      "occurredAt": "2023-11-07T05:31:56Z",
      "subCategory": "<string>",
      "targetObjectId": "<string>"
    }
  ],
  "paging": {
    "next": {
      "after": "<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 -Free
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

actingUserId
integer<int32>[]

The ID of a user, for retrieving user-specific logs.

after
string

The paging cursor token of the last successfully read resource will be returned as the paging.next.after JSON property of a paged response containing more results.

limit
integer<int32>

The maximum number of results to display per page.

occurredAfter
string<date-time>

A timestamp, as a starting point for retrieving activity logs.

occurredBefore
string<date-time>

A timestamp, as an end point for retrieving activity logs.

sort
string[]

Set to occurredAt to order results by the time of the event. By default, events are ordered from oldest to newest.

Response

successful operation

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