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
}API Reference
Post apiaudittrailv1search
Search audit events using JSON filter conditions with support for complex queries including fileName searches
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
DominoApiKeyBearerAuthentication
Body
application/json
Was this page helpful?
⌘I