Skip to main content
GET
/
api
/
v1
/
audit-log
List audit events for the current organization
curl --request GET \
  --url https://api.devhelm.io/api/v1/audit-log \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "actorId": 123,
      "actorEmail": "<string>",
      "action": "<string>",
      "resourceType": "<string>",
      "resourceId": "<string>",
      "resourceName": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "page": 123,
  "size": 123,
  "totalElements": 123,
  "totalPages": 123,
  "hasNext": true
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Query Parameters

action
string
actorId
integer<int32>
resourceType
string
from
string<date-time>
to
string<date-time>
page
integer<int32>
default:0
size
integer<int32>
default:50

Response

200 - */*

OK

data
object[]
page
integer<int32>
size
integer<int32>
totalElements
integer<int64>
totalPages
integer<int32>
hasNext
boolean