v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List activity log

Returns the activity log items

get/report/activityLog

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

max 50

Amount of items returned

endinteger

timestamp to filter the activity log with items that happened before this time

startinteger

timestamp to filter the activity log with items that happened after this time

repository_idinteger

ID of a repository to filter the activity log with items that are related to this repository

cloud_idinteger

ID of a cloud to filter the activity log with items that are related to this cloud

user_type_filterstring

all, user_only, aikido_only

enum to filter the activity log with items that were performed by this user type. The options can be: all, user_only, aikido_only

searchstring

string to filter the activity log with items that are related to this search term

action_filterstring

snoozed, ignored, re_open, closed, unsnoozed, auto_ignored, adjust_severity, drata_push, autofix_pr_created, sprinto_push, thoropass_push

enum to filter the activity log with items that were performed by this user type. The options can be: snoozed, ignored, re_open, closed, unsnoozed, auto_ignored, adjust_severity, drata_push, autofix_pr_created, sprinto_push, thoropass_push

Response

A list of teams in your account

idinteger
timestampinteger
commentstring
sourcestring
actionstring
user_idinteger
user_nameinteger
issue_idinteger
grouped_issue_idinteger
metadataobject

Example response

[
  {
    "id": 1,
    "timestamp": 1713586140,
    "comment": "Rick Astley manually opened a PR via AutoFix",
    "source": "manual",
    "action": "autofix_pr_created",
    "user_id": 1,
    "issue_id": 10,
    "grouped_issue_id": 3,
    "metadata": {
      "location": {
        "code_repo_id": 1,
        "code_repo_name": "demo-app",
        "container_repo_id": null,
        "container_repo_name": null,
        "cloud_id": null,
        "cloud_name": null,
        "domain_id": null,
        "domain_name": null
      }
    },
    "user_name": "Rick Astley"
  }
]