Change History object
This is an object representing a change in an setting or configuration. The change history object provides information for auditing the before and after state of the setting, as well as information on which user in the system made the change, and when it occurred.
The Change History schema
{
"previous": { },
"current": { },
"modifiedBy": {
"userId": "",
"username": "",
"firstName": "",
"lastName": ""
}
}
Fields
previous object
Polymorphic object which contains the setting or configuration values prior to the change that was made. The properties of previous
object are depending on the particular event-type
event that was triggered by the modification.
current object
Polymorphic object which contains the setting or configuration values after the change was made. The properties of current
object are depending on the particular event-type
event that was triggered by the modification.
modifiedBy list
Identifing information about the user who submitted the setting or configuration change.
child attributes
Attribute | Type | Description |
---|---|---|
userId | string | The Cirrus Insight identifier for the user record who made the change. |
username | string | The user 's username, typically email format. |
lastName | string | Last name of the meeting owner. |
firstName | string | First name of the meeting owner. |