I'm planning to develop an integration with an application I'm developing using the REST API. I need the information of how many hours an employee worked in a particular day. I know I can get the
inTime and
outTme from the
GetShift method. Now I need to know the following:
- Is the clock in and clock out time information real time? I mean, as soon as the employee register this information is it available from the API?
- Is the inTime value available before the outTime get registered?
- If it's not real time, is it available in the next day?
- Is there any information about the breaks the employee took (meal or rest breaks)?
Thanks in advance.