{
"opencollection": "1.0.0",
"info": {
"name": "Atlassian Admin Account Audit Records API",
"version": "1.0.0"
},
"request": {
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"items": [
{
"info": {
"name": "Audit Records",
"type": "folder"
},
"items": [
{
"info": {
"name": "Atlassian Get Audit Records",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/auditing/record",
"params": [
{
"name": "offset",
"value": "",
"type": "query",
"description": "The number of records to skip before returning the first result."
},
{
"name": "limit",
"value": "",
"type": "query",
"description": "The maximum number of results to return."
},
{
"name": "filter",
"value": "",
"type": "query",
"description": "The strings to match with audit field content, space separated."
},
{
"name": "from",
"value": "",
"type": "query",
"description": "The 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."
},
{
"name": "to",
"value": "",
"type": "query",
"description": "The 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."
}
]
},
"docs": "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`