Get Audit Records

GET {{baseUrl}}/rest/api/3/auditing/record?offset=0&limit=1000&filter=<string>&from=<dateTime>&to=<dateTime>

Returns a list of audit records. The list can be filtered to include items:

  • containing a string in at least one field. For example, providing up will return all audit records where one or more fields contains words such as update.
  • created on or after a date and time.
  • created or or before a date and time.
  • created during a time period.

Permissions required: Administer Jira global permission.

Request Params

KeyDatatypeRequiredDescription
offsetnumberThe number of records to skip before returning the first result.
limitnumberThe maximum number of results to return.
filterstringThe query string.
fromstringThe date and time on or after which returned audit records must have been created. If to is provided from must be before to or no audit records are returned.
tostringThe date and time on or before which returned audit results must have been created. If from is provided to must be after from or no audit records are returned.

RESPONSES

status: OK

{&quot;offset&quot;:0,&quot;limit&quot;:1000,&quot;total&quot;:1,&quot;records&quot;:[{&quot;id&quot;:1,&quot;summary&quot;:&quot;User created&quot;,&quot;remoteAddress&quot;:&quot;192.168.1.1&quot;,&quot;authorKey&quot;:&quot;administrator&quot;,&quot;authorAccountId&quot;:&quot;5ab8f18d741e9c2c7e9d4538&quot;,&quot;created&quot;:&quot;2014-03-19T18:45:42.967+0000&quot;,&quot;category&quot;:&quot;user management&quot;,&quot;eventSource&quot;:&quot;Jira Connect Plugin&quot;,&quot;description&quot;:&quot;Optional description&quot;,&quot;objectItem&quot;:{&quot;id&quot;:&quot;user&quot;,&quot;name&quot;:&quot;user&quot;,&quot;typeName&quot;:&quot;USER&quot;,&quot;parentId&quot;:&quot;1&quot;,&quot;parentName&quot;:&quot;Jira Internal Directory&quot;},&quot;changedValues&quot;:[{&quot;fieldName&quot;:&quot;email&quot;,&quot;changedFrom&quot;:&quot;user@atlassian.com&quot;,&quot;changedTo&quot;:&quot;newuser@atlassian.com&quot;}],&quot;associatedItems&quot;:[{&quot;id&quot;:&quot;jira-software-users&quot;,&quot;name&quot;:&quot;jira-software-users&quot;,&quot;typeName&quot;:&quot;GROUP&quot;,&quot;parentId&quot;:&quot;1&quot;,&quot;parentName&quot;:&quot;Jira Internal Directory&quot;}]}]}