Skip to main content
POST
/
api
/
audittrail
/
v1
/
search
curl --request POST \
  --url https://api.example.com/api/audittrail/v1/search \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "filter": {
    "operator": "AND",
    "rules": [
      {
        "field": "fileName",
        "operator": "contains",
        "type": "condition",
        "value": "screenshot"
      }
    ],
    "type": "group"
  },
  "limit": 10
}
'
{
  "events": [
    {
      "action": {
        "eventName": "<string>",
        "using": [
          {
            "entityType": "<string>",
            "tags": [
              "<string>"
            ],
            "id": "<string>",
            "name": "<string>"
          }
        ],
        "traceId": "<string>"
      },
      "actor": {
        "id": "<string>",
        "idpId": "<string>",
        "name": "<string>"
      },
      "affecting": [
        {
          "entityType": "<string>",
          "tags": [
            "<string>"
          ],
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "metadata": {},
      "targets": [
        {
          "entity": {
            "entityType": "<string>",
            "tags": [
              "<string>"
            ],
            "id": "<string>",
            "name": "<string>"
          },
          "fieldChanges": [
            {
              "fieldName": "<string>",
              "after": "<string>",
              "before": "<string>",
              "unit": "<string>"
            }
          ]
        }
      ],
      "timestamp": 123,
      "from": {
        "entityType": "<string>",
        "tags": [
          "<string>"
        ],
        "id": "<string>",
        "name": "<string>"
      },
      "in": {
        "entityType": "<string>",
        "tags": [
          "<string>"
        ],
        "id": "<string>",
        "name": "<string>"
      },
      "to": {
        "entityType": "<string>",
        "tags": [
          "<string>"
        ],
        "id": "<string>",
        "name": "<string>"
      }
    }
  ],
  "total": 123
}

Authorizations

X-Domino-Api-Key
string
header
required

Body

application/json
filter
object
required
limit
integer
default:50
Required range: 1 <= x <= 1000
offset
integer
default:0
Required range: x >= 0

Response

Audit events matching the JSON filter criteria

events
object[]
required
total
integer