Audit Logs
Overview
This page contains the APIs that are used to manage the Audit Log. Here are the APIs:
Add an Entry to the Audit Log
This API allows you to insert an Audit Log. Generally, Audit Logs are created automatically whenever an admin does something from the FusionAuth UI. However, you can use this API to insert Audit Logs directly if you need.
Request
Request Body
auditLog.data
ObjectAn object that can hold additional details of an audit log.
auditLog.newValue
StringIntended to be utilized during a change to record the new value.
auditLog.oldValue
StringIntended to be utilized during a change to record the old value prior to the change.
auditLog.reason
StringIntended to be utilized during a change to indicate the reason for the modification.
auditLog.insertUser
StringrequiredThe user that took the action that is being written to the Audit Logs. We suggest you use email addresses for this field.
auditLog.message
StringrequiredThe message of the Audit Log.
Example Request JSON
{
"auditLog": {
"data": {
"externalId": "_applicationA"
},
"newValue:": "{\"name\": \"bar\"}",
"oldValue": "{\"name\": \"foo\"}",
"reason": "Because I like to change things.",
"insertUser": "user@fusionauth.io",
"message": "Example audit log"
}
}
Response
The response for this API does not contain a body. It only contains a status code.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The 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. |
401 | You 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. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Retrieve an Audit Log
Request
Request Parameters
logId
LongrequiredThe unique Id of the Audit Log to retrieve.
Response
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The 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. |
401 | You 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. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The 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.data
ObjectAdditional details of an audit log.
auditLog.newValue
StringThe new value of a changed object.
auditLog.oldValue
StringThe previous value of a changed object.
auditLog.reason
StringThe reason why the audit log was created.
auditLog.id
LongThe Audit Log unique Id.
auditLog.insertInstant
LongThe instant when the Audit Log was created.
auditLog.insertUser
StringThe user that created the Audit Log.
auditLog.message
StringThe 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"
}
}
Search the Audit Log
This API allows you to search and paginate through the Audit Logs.
Request
When calling the API using a GET
request you will send the search criteria on the URL using request parameters. In order to simplify the example URL above, not every possible parameter is shown, however using the provided pattern you may add any of the documented request parameters to the URL.
Request Parameters
end
LongThe end instant of the date/time range to search within.
message
StringThe string to search in the Audit Log message for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
newValue
StringAvailable since 1.30.0The string to search for in the Audit Log field for newValue . Note, that not all audit log entries will contain this field, it is primarily used for Audit Logs for updates to existing objects.
numberOfResults
IntegerDefaults to 25The number of results to return from the search.
oldValue
StringAvailable since 1.30.0The string to search for in the Audit Log field for oldValue . Note, that not all audit log entries will contain this field, it is primarily used for Audit Logs for updates to existing objects.
orderBy
StringDefaults to insertInstant DESCThe database column to order the search results on plus the order direction.
The possible values are:
insertInstant
- the instant when the Audit Log was createdinsertUser
- the user that create the Audit Logmessage
- the message of the Audit Log
For example, to order the results by the insert instant in a descending order, the value would be provided as insertInstant DESC
. The final string is optional can be set to ASC
or DESC
.
reason
StringAvailable since 1.30.0The string to search for in the Audit Log field for reason . Note, that not all audit log entries will contain this field.
start
LongThe start instant of the date/time range to search within.
startRow
IntegerDefaults to 0The offset row to return results from. If the search has 200 records in it and this is 50, it starts with row 50.
user
StringThe string to search in the Audit Log user for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
When calling the API using a POST
request you will send the search criteria in a JSON request body.
Request Body
search.end
LongThe end instant of the date/time range to search within.
search.message
StringThe string to search in the Audit Log message for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
search.newValue
StringAvailable since 1.30.0The string to search for in the Audit Log field for newValue . Note, that not all audit log entries will contain this field, it is primarily used for Audit Logs for updates to existing objects.
In versions >= 1.49.0 sensitive values may be masked.
search.numberOfResults
IntegerDefaults to 25The number of results to return from the search.
search.oldValue
StringAvailable since 1.30.0The string to search for in the Audit Log field for oldValue . Note, that not all audit log entries will contain this field, it is primarily used for Audit Logs for updates to existing objects.
In versions >= 1.49.0 sensitive values may be masked.
search.orderBy
StringDefaults to insertInstant DESCThe database column to order the search results on plus the order direction.
The possible values are:
insertInstant
- the instant when the Audit Log was createdinsertUser
- the user that create the Audit Logmessage
- the message of the Audit Log
For example, to order the results by the insert instant in a descending order, the value would be provided as insertInstant DESC
. The final string is optional can be set to ASC
or DESC
.
search.reason
StringAvailable since 1.30.0The string to search for in the Audit Log field for reason . Note, that not all audit log entries will contain this field.
search.start
LongThe start instant of the date/time range to search within.
search.startRow
IntegerDefaults to 0The offset row to return results from. If the search has 200 records in it and this is 50, it starts with row 50.
search.user
StringThe string to search in the Audit Log user for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
Response
The response for this API contains the Audit Logs matching the search criteria in paginated format.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The 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. |
401 | You 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. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
auditLogs
ArrayThe list of Audit Logs returned by the search.
auditLogs[x].data
ObjectAdditional details of an audit log.
auditLogs[x].data.newValue
StringThe new value of a changed object.
In versions >= 1.49.0 sensitive values may be masked.
auditLogs[x].data.oldValue
StringThe previous value of a changed object.
In versions >= 1.49.0 sensitive values may be masked.
auditLogs[x].data.reason
StringThe reason why the audit log was created.
auditLogs[x].id
LongThe Audit Log unique Id.
auditLogs[x].insertInstant
LongThe instant when the Audit Log was created.
auditLogs[x].insertUser
StringThe user that created the Audit Log.
auditLogs[x].message
StringThe message of the Audit Log.
total
IntegerThe total number of Audit Logs matching the search criteria. Use this value along with the numberOfResults and startRow in the Search request to perform pagination.
Example JSON Response
{
"auditLogs": [
{
"id": 1,
"insertInstant": 1471786483322,
"insertUser": "user@fusionauth.io",
"message": "Audit Log 1"
},
{
"id": 2,
"insertInstant": 1471786489322,
"insertUser": "user@fusionauth.io",
"message": "Audit Log 2"
},
{
"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"
}
],
"total": 100
}
Export Audit Logs
Available Since Version 1.7.0
This API is used to export the Audit Logs, the response will be a compressed zip archive.
Request
When calling the API using a GET
request you will send the export criteria on the URL using request parameters. In order to simplify the example URL above, not every possible parameter is shown, however using the provided pattern you may add any of the documented request parameters to the URL.
Request Parameters
dateTimeSecondsFormat
StringThe format string used to format the date and time columns in the export result.
When this parameter is omitted a default format of M/d/yyyy hh:mm:ss a z
will be used. See the DateTimeFormatter patterns for additional examples.
end
LongThe end instant of the date/time range to search within.
message
StringThe string to search in the Audit Log message for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
start
LongThe start instant of the date/time range to search within.
user
StringThe string to search in the Audit Log user for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
zoneId
StringThe time zone used to adjust the stored UTC time in the export result.
For example:
America/Denver
orUS/Mountain
When this parameter is omitted the configured default report time zone will be used. See reportTimezone in the System Configuration API.
When calling the API using a POST
request you will send the export criteria in a JSON request body.
Request Body
criteria.end
LongThe end instant of the date/time range to include in the export.
criteria.message
StringThe string to search in the Audit Log message for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
criteria.start
LongThe start instant of the date/time range to include in the export.
criteria.user
StringThe string to search in the Audit Log user for. This can contain wildcards using the asterisk character (*
). If no wildcards are present, this parameter value will be interpreted as *value*
.
dateTimeSecondsFormat
StringThe format string used to format the date and time columns in the export result.
When this parameter is omitted a default format of M/d/yyyy hh:mm:ss a z
will be used. See the DateTimeFormatter patterns for additional examples.
zoneId
StringThe time zone used to adjust the stored UTC time in the export result.
For example:
America/Denver
orUS/Mountain
When this parameter is omitted the configured default report time zone will be used. See reportTimezone in the System Configuration API.
Response
The response for this API will contain a compressed zip of the audit logs.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will be a compressed archive byte stream with a |
400 | The 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. |
401 | You 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. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |