Skip to main content
GET
/
api
/
compliance
/
activity-timeline
Get Compliance Activity Timeline
curl --request GET \
  --url https://api.example.com/api/compliance/activity-timeline \
  --header 'Authorization: Bearer <token>'
{
  "generated_at": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "domain_start": "2023-11-07T05:31:56Z",
  "domain_end": "2023-11-07T05:31:56Z",
  "days": [
    {
      "date": "<string>",
      "highest_severity": "none",
      "critical_count": 0,
      "high_count": 0,
      "total_count": 0,
      "affected_dataset_count": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string | null

Query Parameters

dataset_ids
string[] | null

Optional dataset UUIDs to scope the timeline to a subset of datasets.

domain_start
string<date-time> | null

Optional ISO timestamp marking the beginning of the timeline domain.

domain_end
string<date-time> | null

Optional ISO timestamp marking the end of the timeline domain.

timezone
string | null
default:UTC

IANA timezone name used to bucket events by local day.

Cookies

antidote_session
string | null

Response

Successful Response

generated_at
string<date-time>
required
timezone
string
required
domain_start
string<date-time>
required
domain_end
string<date-time>
required
days
ComplianceActivityTimelineDay · object[]