v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List endpoint activity logs

Returns a paginated list of endpoint protection activity log items

get/endpoint-protection/activityLogs

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

Amount of items returned (max 50)

after_timestampinteger

Unix timestamp to filter the activity log with items that happened after this time. Default is 'null'

Response

A list of endpoint protection activity log items

actionstring
device_idinteger
device_namestring
timestampinteger
ecosystemstring
package_idstring
package_versionstring

Example response

[
  {
    "action": "blocked",
    "device_id": 7,
    "device_name": "dev-laptop-01",
    "timestamp": 1713586140,
    "ecosystem": "npm",
    "package_id": "axios",
    "package_version": "1.6.0"
  },
  {
    "action": "new_device_detected",
    "device_id": 7,
    "device_name": "dev-laptop-01",
    "timestamp": 1713586140
  }
]