Query the Approval Action history in Approval Process #inSalesforce

SELECT Id, Status, (SELECT Id, StepStatus, Actor.Name, Comments 
FROM StepsAndWorkitems ORDER BY CreatedDate ASC) 
FROM ProcessInstance WHERE TargetObjectId = 'a250600000xxxxx'

where a250600000xxxxx is the event id

Comments