Retrieve Workflow changes
Learn how to retrieve auditing records of changes to the Workflow definition object hierarchy using a data query.
The following use case retrieves the auditing records of changes to Workflow definition object hierarchy.
Zuora Platform
list_alt
Learn how to retrieve auditing records of changes to the Workflow definition object hierarchy using a data query.
The following use case retrieves the auditing records of changes to Workflow definition object hierarchy.
SELECT username AS Username,
action AS Action,
Objectid AS ObjectID,
objecttype AS ObjectType,
objectname AS ObjectName,
attributeid AS Attribute,
oldvalue AS OldValue,
newvalue AS NewValue,
timestamp AS Timestamp
FROM auditobjectchangeevent
WHERE namespace = 'Workflow'
AND objecttype = 'WorkflowVersion'
AND year = 2022
AND month = 11
ORDER BY timestamp DESC
LIMIT 100000
Username,Action,ObjectID,ObjectType,ObjectName,Attribute,OldValue,NewValue,Timestamp
audit-trail@zuora.com,CREATED,233,WorkflowVersion,Workflow Name,name,,Sample Workflow,2022-11-10 16:54:14Z
audit-trail@zuora.com,CREATED,233,WorkflowVersion,Workflow Name,priority,,Medium,2022-11-10 16:54:14Z
audit-trail@zuora.com,CREATED,233,WorkflowVersion,Workflow Name,call_type,,ASYNC,2022-11-10 16:54:14Z
audit-trail@zuora.com,CREATED,233,WorkflowVersion,Workflow Name,callout_trigger,,true,2022-11-10 16:54:14Z
audit-trail@zuora.com,UPDATED,233,WorkflowVersion,Workflow Name,callout_trigger,true,false,2022-11-10 17:11:30Z