Document toolboxDocument toolbox

User Audit Export API

3.0.0

The User Audit export API returns the user/technician audit objects that have been uploaded from the mobile device. This API will maintain the order (time sequence) in which the they were created at an individual user level. However, because of the offline capability of the mobile application, the system can not guarantee the order (time sequence) across multiple different users/devices. The order in which the objects are exported are the order in which they were received from the mobile device.

On this page:

Related pages:

Resource URL Summary

Return a collection of updates made to User Audit Objects

GET /seiapi/v3/export/UserAudit?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 User Audit Objects

This REST API will return a collection of updates made to User Audit Objects.

URL

GET /seiapi/v3/export/UserAudit?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 User Audit Objects.

JSON Format
{
    "rowver" : "",
    "rows" : [
        {
     		"rowver" : "",
			"UserAudit" : {
               // User Audit JSON object properties
           }
        }
    ]
}

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