VXTrxLogV2 Data Type

Properties
name data type constraints description
id number  
createDate object  
createdBy string  
objectClassType number required
objectId number  
objectName string  
parentObjectClassType number required
parentObjectId number  
parentObjectName string  
action string  
changeInfo ObjectChangeInfo  
requestId string  
transactionId string  
sessionId string  
sessionType string  

Example

{
  "id" : 12345,
  "createDate" : { },
  "createdBy" : "...",
  "objectClassType" : 12345,
  "objectId" : 12345,
  "objectName" : "...",
  "parentObjectClassType" : 12345,
  "parentObjectId" : 12345,
  "parentObjectName" : "...",
  "action" : "...",
  "changeInfo" : {
    "attributes" : [ {
      "attributeName" : "...",
      "oldValue" : "...",
      "newValue" : "..."
    }, {
      "attributeName" : "...",
      "oldValue" : "...",
      "newValue" : "..."
    } ]
  },
  "requestId" : "...",
  "transactionId" : "...",
  "sessionId" : "...",
  "sessionType" : "..."
}