Skip to content

Retrieve real-time node operational and security audit logs
deprecated

Request

This is deprecated; use /v2/audit/node instead.

List node (appliance or agent) audits


Requires audits::read:node permission.

Security
JWTAuthorizer
Query
timestampstring

Start time (unix timestamp) to query from

FQDNstring

Node FQDN

curl -i -X GET \
  'https://apidocs.trustgrid.io/_mock/audit/tail/node?timestamp=string&FQDN=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

OK

Bodyapplication/json
Array [
uidstring

Unique identifier

fqdnstring

FQDN of the node that performed the action

categorystring

Action category (e.g. "Node Action")

valuestring

Human-readable description of the action taken

timestampinteger

Unix epoch timestamp (seconds) when the action occurred

expiresinteger

Unix epoch timestamp (seconds) when this audit record expires

orgstring

Organization ID

]
Response
[ { "uid": "string", "fqdn": "string", "category": "string", "value": "string", "timestamp": 0, "expires": 0, "org": "string" } ]