Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Short Description

Short Description:

Table of Contents
maxLevel4
minLevel4

Long Description

Supported methods

GET /AuditLog

Get a list of AuditLog objects. Should be filtered Filter to avoid fetching huge amounts of data (see Filtering for search parameters).

Search parameters: See Filtering 

GET /AuditLog/{key}

Get a single AuditLog object

Example response body

GET /AuditLog/1000921
Note
This example has been updated for API version

Updated for API version 2.0.0

using date format

using the new required date format yyyy-dd-MMThh:mi:ss

, versions prior to 2.0.0 has the following date format:

to conform ISO 8601, (prior versions has date format: yyyy-dd-MM

hh:mi:ss)

Code Block
languagejs
{
    "key": 1000921,
    "self": "http://localhost:8080/ws/rest/AuditLog/1000921",
    "createdDate": "2005-05-09T15:51:08",
    "modifiedDate": "2005-05-09T15:54:43",
    "user": {
        "key": 1000656,
        "self": "http://localhost:8080/ws/rest/User/1000656",
        "userCode": "TEST",
        "userName": "Test User"
    },
    "actionTime": "2005-05-09T15:51:08",
    "entryText": "Field update: portCostCurrency",
    "newValue": "300000",
    "oldValue": "0.0",
    "action": {
        "key": 1000009,
        "self": "http://localhost:8080/ws/rest/Action/1000009"
    },
    "field": {
        "key": 902955,
        "self": "http://localhost:8080/ws/rest/Field/902955"
    },
    "source": 1000886,
    "remarks": []
}

...