Get audit logs for an account
GET {{baseUrl}}/v1/changes?pageSize=1000&skip=10&sort=value&applicationId={{applicationId}}&entityPath=value&userId=10&createdBefore=2022-11-08T00:11:22.082Z&createdAfter=2022-11-08T00:11:22.082Z&withTotalResultSize=true&managementKeyId=10&includeOld=true
Retrieve the audit logs displayed in Accounts > Audit logs.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
pageSize | number | The number of items in this response. | |
skip | number | The number of items to skip when paging through large result sets. | |
sort | string | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with - . |
Note: This parameter works only with numeric fields.
|
| applicationId
| string | | Filter results by Application ID. |
| entityPath
| string | | Filter results on a case insensitive matching of the url path of the entity |
| userId
| number | | Filter results by user ID. |
| createdBefore
| string | | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp. You can use any timezone. Talon.One will convert to UTC internally. |
| createdAfter
| string | | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the change creation timestamp. You can use any timezone. Talon.One will convert to UTC internally. |
| withTotalResultSize
| boolean | | When this flag is set, the result includes the total size of the result, across all pages. This might decrease performance on large data sets.
- When
true
:hasMore
is true when there is a next page.totalResultSize
is always zero. - When
false
:hasMore
is always false.totalResultSize
contains the total number of results for this query. | |managementKeyId
| number | | Filter results that match the given management key ID. | |includeOld
| boolean | | When this flag is set to false, the state without the change will not be returned. The default value is true. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |