GET /rest/api/2/auditing/record
Returns a list of audit records. The list can be filtered to include items:
-
where each item in
filter
has at least one match in any of these fields:summary
category
eventSource
objectItem.name
If the object is a user, account ID is available to filter.objectItem.parentName
objectItem.typeName
changedValues.changedFrom
changedValues.changedTo
remoteAddress
For example, if
filter
contains man ed, an audit record containingsummary": "User added to group"
and"category": "group management"
is returned. -
created on or after a date and time.
-
created or or before a date and time.
Permissions required: Administer Jira global permission.
Servers
- https://your-domain.atlassian.net
Query parameters
Name | Type | Required | Description |
---|---|---|---|
to |
String | No |
The date and time on or before which returned audit results must have been created. If |
limit |
Integer | No |
The maximum number of results to return. Default value: 1000 |
filter |
String | No |
The strings to match with audit field content, space separated. |
offset |
Integer | No |
The number of records to skip before returning the first result. Default value: 0 |
from |
String | No |
The date and time on or after which returned audit records must have been created. If |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.