Retrieve an Audit Log

Request#

API Key Authentication
Retrieve an Audit Log by Id
GET/api/system/audit-log/{logId}

Request Parameters#

logIdLongrequired

The unique Id of the Audit Log to retrieve.

Response#

Response Codes
CodeDescription
200The request was successful. The response will contain a JSON body.
400The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
404The object you requested doesn't exist. The response will be empty.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.
503The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body.

Response Body#

auditLog.dataObject

Additional details of an audit log.

auditLog.newValueString

The new value of a changed object.

auditLog.oldValueString

The previous value of a changed object.

auditLog.reasonString

The reason why the audit log was created.

auditLog.tenantIdUUIDAvailable since 1.65.0

The Id of the Tenant associated with this Audit Log. This field will be null for instance-scoped audit logs. The associated audit-log.create event will be delivered as a tenant-scoped event.

auditLog.idLong

The Audit Log unique Id.

auditLog.insertInstantLong

The instant when the Audit Log was created.

auditLog.insertUserString

The user that created the Audit Log.

auditLog.messageString

The message of the Audit Log.

Example JSON Response

{
  "auditLog": {
    "data": {
      "externalId": "_applicationA"
    },
    "newValue:": "{\"name\": \"bar\"}",
    "oldValue": "{\"name\": \"foo\"}",
    "reason": "Because I like to change things.",
    "id": 3,
    "insertInstant": 1471796483322,
    "insertUser": "user@fusionauth.io",
    "message": "Changed Application"
  }
}