Request URL

GET https://api.dotcom-monitor.com/config_api_v1/audit/object/{sample_id}

Get contents for an exact audit event by it’s id.

Path Parameters

Field Type Required Description
sample_id

string

true

The event unique id.
Example request URL

https://api.dotcom-monitor.com/config_api_v1/audit/object/23564

Success Response

Example Response
{
"Id":11111111,
"ActionTime":"12/31/1915 11:59 AM",
"ActionType":"Edit",
"UserLogin":"SampleUserLogin",
"ObjectName":"Task:SampleTaskName"
"Changes":
[
{
"FieldName":"Task Name:",
"IsChanged":false,
"FieldValue":[
"SampleTaskName",
"SampleTaskName"
]
},
{
"FieldName":"Collector ID:",
"IsChanged":false,
"FieldValue":[
"SampleCollectorID",
"SampleCollectorID"
]
},
{
"FieldName":"Max threshold:",
"IsChanged":true,
"FieldValue":[
"0",
"12"
]
},
{
"FieldName":"Min threshold:",
"IsChanged":true,
"FieldValue":[
"0",
"423"
]
},
{
"FieldName":"Aggregate:",
"IsChanged":false,
"FieldValue":[
"Average",
"Average"
]
},
{
"FieldName":"Counter Path:",
"IsChanged":false,
"FieldValue":[
"SampleCounterPath",
"SampleCounterPath"
]
},
{
"FieldName":"Task UID:",
"IsChanged":false,
"FieldValue":[
"SampleTaskUID",
"SampleTaskUID"
]
}
]
}

Fields Description

Field Type Description

Id

Int32

Unique identifier for an audit event
Example:
"Id": 54687
ActionTime String Timestamp reflecting moment when changes occur

Example:
"ActionTime""12/31/1915 11:59 AM"
 ActionType  String Type of system events:

  • Add
  • Edit
  • Remove
  • Login
  • Logoff
  • Deactivate
  • RunNow
  • ExportCSV
  • ImportCSV
Example:
"ActionType":"RunNow"
UserLogin String Reflects user logon name within Dotcom-Monitor account.
ObjectName String The object to which the action was applied.
Changes Array Structured array, containing details on each audit event.
FieldName String Reflects field name inside objects to which changes were applied
IsChanged Boolean Tells if a particular field was changed in comparison with the last state
FieldValue Array First value reflects state of a field before modification.
Second value reflects state of a field after modification.