0

Either using TCC or by API, I would like to get the below details of a Candidate and Job Combination :

  • What is the list of Hiring Statuses a Candidate has gone through so far (Step, Status)
  • Also the update datetime of each such Step, Status

This will give me the trail of Step,Status and their updated Datetimes. My motive is that I want to know how much each step took as we hire candidates.

Can someone help please ?

1 Answers1

0

Try adding this to the query:

    <projection>
        <field path="ProfileInformation, HistoryItems, ApplicationTrackingCSWItem.Step, Name"/>  
    </projection>
    <projection>
        <field path="ProfileInformation, HistoryItems, ApplicationTrackingCSWItem.Status, Name"/>  
    </projection>
elstevenson
  • 101
  • 4