Empower Help

Search:

Display Legacy Contents

IndexBookmarkPrint

Home > Factory Productivity and Scheduling > Advanced Topics > Import Export Data > Empower API > Checklists

Checklists


Checklist data can be retrieved through the API using the function calls



 
1. GetChecklistDetails(StartDate As String, EndDate As String)

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistDetails>
          <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistDetails>
</soapenv:Body>


2. GetChecklistsForJob(jobOurReference As String)

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForJob>
         <web:jobOurReference>JOB OUR REFERENCE</web:jobOurReference>
      </web:GetChecklistsForJob>
</soapenv:Body>


3. GetChecklistsForEmployee(EmployeeLoginId As String, StartDate As String, EndDate As String)

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForEmployee>
         <web:EmployeeLoginId>LOGIN ID</web:EmployeeLoginId>
         <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistsForEmployee>
</soapenv:Body>


4. GetChecklistsForClockIn(ClockIn As String, StartDate As String, EndDate As String)

You need to have a Checklist called Clock In to retrieve Checklist details for this API call

For more information see The Clock In Checklist.

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForClockIn>
         <web:ClockIn>CLOCK IN</web:ClockIn>
         <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistsForClockIn>
</soapenv:Body>


5. GetChecklistsForClockInAndEmployee(ClockIn As String, EmployeeLoginId As String, StartDate As String, EndDate As String)

You need to have a Checklist called Back From Lunch to retrieve Checklist details for this API call

For more information see The Back Fom Lunch Checklist.

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForClockInAndEmployee>
         <web:ClockIn>CLOCK IN</web:ClockIn>
         <web:EmployeeLoginId>LOGIN ID</web:EmployeeLoginId>
         <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistsForClockInAndEmployee>
</soapenv:Body>


6. GetChecklistsForBackFromLunch(BackFromLunch As String, StartDate As String, EndDate As String)

You need to have a Checklist called Back from Lunch to retrieve Checklist details for this API call

For more information see The Back Fom Lunch Checklist.

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForBackFromLunch>
         <web:BackFromLunch>BACK FROM LUNCH</web:BackFromLunch>
         <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistsForBackFromLunch>
</soapenv:Body>


7. GetChecklistsForBackFromLunchAndEmployee(BackFromLunch As String, EmployeeLoginId As String, StartDate As String, EndDate As String)

You need to have a Checklist called Back From Lunch to retrieve Checklist details for this API call

For more information see The Back Fom Lunch Checklist.

As a result the request body should be based on the following:

 <soapenv:Body>
      <web:GetChecklistsForBackFromLunchAndEmployee>
         <web:ClockIn>BACK FROM LUNCH</web:ClockIn>
         <web:EmployeeLoginId>LOGIN ID</web:EmployeeLoginId>
         <web:StartDate>START DATE TIME(Format: YYYY-MM-DD hh:mm:ss)</web:StartDate>
         <web:EndDate>END DATE TIME (Format: YYYY-MM-DD hh:mm:ss)</web:EndDate>
      </web:GetChecklistsForBackFromLunchAndEmployee>
</soapenv:Body>

 



 



See also