Document toolboxDocument toolbox

Time Entry Export API

3.0.0

The Time Entry API returns a collection of time entry transactions as they are created, updated, and deleted by technicians. 

  • A newly created time entry record may be uploaded without an end time. A followup transaction will eventually contain the recorded end time.
  • A time entry object can be modified, depending on the mobile configuration, even after an initial end time was entered.
  • A time entry object can be deleted by the technician.

On this page:

Related pages:

Resource URL Summary

Return a collection of updates made to Time Entry Objects

GET /seiapi/v3/export/TimeEntry?rowver=${rowverValue}&limit=${limitValue}

API Specific Parameters

ParameterDescription
${rowverValue}Specifies the starting point where objects should be returned from. The first object returned will be the next object after the specified rowver.
${limitValue}Specifies the maximum number of objects to be returned.

HTTP Headers

This API uses the default ServiceMobility HTTP Headers.



API Specifics

Return a collection of updates made to Time Entry Objects

This REST API will return a collection of updates made to Time Entry Objects.

URL

GET /seiapi/v3/export/TimeEntry?rowver=${rowverValue}&limit=${limitValue}

HTTP Request Body

This request does not require a request body. 

HTTP Response Body

On success, an HTTP response code of 200 will be returned, and the response body will contain a collection of zero of more Time Entry Objects.

JSON Format
{
    "rowver" : "",
    "rows" : [
        {
     		"rowver" : "",
			"TimeEntry" : {
               // Time Entry JSON object properties
           }
        }
    ]
}

Otherwise, on error, the API returns the standard response object.