GET /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
The TrafficLIVE API is a RESTful interface, providing programmatic access to much of the data in the system. The API allows developers with the appropriate skill to interface other applications to TrafficLIVE. The API contains a suite of more than hundred services allowing CRUD operations against TrafficLIVE system.
Using these services you can complete a system setup over the API (integration with an EPR system), you can integrate TrafficLIVE with an HR system, integrate with Microsoft Project or with data warehouses, and even more.
If you find the existing set of services does not provide what you need please put a request to TrafficLIVE Product Management and we will seek to publish the required API call on our next release.
Please, bear in mind the following:
Deltek recommends that you set up one user solely for the purpose of making API calls. This means that all updates to the system are done under this user name, for example "Accounts Integration" rather than under the name of a real user, which could cause confusion. Remember that API accounts are billable.
In order to generate an API token you need to open TrafficLIVE and navigate to Menu > admin > company management, click on OpenTree and search for your user, then click on Generate API token.
After this, you will see the Open API Token dialog:
The API token is for one time, please copy the token and keep it secure. This will allow you access to the TrafficLIVE database so it is essential to regenerate it as a regular basics.
IMPORTANT: As per the screenshot hint below - when first creating an account to be used by the API, the user is required to first login to TrafficLIVE and change their password before API calls will succeed.
The REST API is secured via HTTP Basic Authentication. This means that the user credentials, TrafficLIVE username and TrafficLIVE API token, are Base64 encoded into the header of every HTTP Request. In order to keep these credentials secure in the transit, then https is used as the transport protocol.
This can be demonstrated by opening a read endpoint in a simple web browser, where a http basic login dialog will be presented to the user.
After typing your username and API token you will see the default content type XML response rendered to the browser window.
Sometimes requests to the API are not successful. Errors can occur for a wide range of reasons. In all cases, the API should return an HTTP status code that indicates the nature of the failure with a response body containing additional information.
These are the possible errors you can get when service calls are made:
| code | meaning | description |
|---|---|---|
| 400 | bad request | This usually occurs because of a missing or malformed parameter. Check the documentation and the syntax of your request and try again. |
| 401 | no authorization | A valid API key was not provided with the request, so the API could not associate a user with the request. |
| 403 | forbidden | This can happen when you try to read or write to objects that the user does not have access to. The API key and request syntax were valid but the server is refusing to complete the request. |
| 404 | not found | Either the object specified by the request does not exist, or the request method and path supplied do not specify a known action in the API. |
| 500 | internal server error | There was a problem on TrafficLIVE's end. |
| 503 | service unavailable | TrafficLIVE API imposes a limit on the rate at which users can make requests. The limit is currently 120 request per minute. |
The man page for cURL is here or you can view options by typing curl --help on the command line. Some of the most useful ones are:
Below are some examples to call TrafficLIVE REST API using cURL (an invalid api token is included).
Get a json output of a job with ID 1 from user testinguser@deltek.com:
[testinguser@pdtl2app1 ~]$ curl -X GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA -H "Accept: application/json" https://api.sohnar.com/TrafficLiteServer/openapi/job/1 -o job1.json
Now, modify the job by editing the job1.json file in your current directory, change the first occurrence of jobNumber from "J1" to "J1-UPDATE-SS" (or whatever is desired). Also edit the response jobNumber from "J1" to "J1-UPDATE-SS" as we can rename that property. Here is the cURL command:
[testinguser@pdtl2app1 ~]$ curl -v -X POST --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA -d ./job1.json -H "Content-type: application/json" -H "Accept: application/json" https://api.sohnar.com/TrafficLiteServer/openapi/job
Note that every successful update increments the version counter, so if you want to execute the POST more than once, you need to keep incrementing the version (or saving the response output of the POST command for further use)
Criteria filtering enables you to apply filters to your API requests in order to limit your results to more relevant data. The format for applying a criteria filter is:
Property|Comparator|Value
Property refers to the property of the object in the list such as the jobNumber or dateModified for example. Value refers to the value you want to compare to. And comparator refers to one of the following types (some of them have two forms):
| comparator | examples | description |
|---|---|---|
| EQUAL / EQ | jobNumber|EQ|"J55" | Equality comparator |
| NOT_EQUAL / NE | jobNumber|NOT_EQUAL|"J55" | Not equality comparator |
| LIKE | jobStateType|LIKE|"progress" | Like case insensitive comparator |
| LIKE_CASE_SENSITIVE | jobStateType|LIKE_CASE_SENSITIVE|"PROGRESS" | Like case sensitive comparator |
| NOT_LIKE | jobStateType|NOT_LIKE|"progress" | Not like case insensitive comparator |
| NOT_LIKE_CASE_SENSITIVE | jobStateType|NOT_LIKE_CASE_SENSITIVE|"PROGRESS" | Not like case sensitive comparator |
| LESS_THAN / LT | id|LESS_THAN|50 | Less than comparator |
| GREATER_THAN / GT | id|GT|50 | Greater than comparator |
| LESS_OR_EQUAL / LE | id|LE|50 | Less or equal comparator |
| GREATER_OR_EQUAL / GE | id|GREATER_OR_EQUAL|50 | Greater or equal comparator |
| IN | id|IN|[1,2,3,4,10] | In comparator. |
| IN_ALL | id|IN_ALL|[1,2,3,4,10] | In all comparator. |
Please note that currently it is not possible to filter using sub level properties, i.e., you cannot apply the jobTask id filter to a GET/job request.
Below are some examples of the usage of these filters, please use your credentials (username and API token).
[testinguser@pdtl2app1 ~]$ curl -X GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA 'https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee?filter=emailAddress|EQ|"testinguser@deltek.com"'
[testinguser@pdtl2app1 ~]$ curl -X GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA 'https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee?filter=jobTitle|NOT_LIKE|"Senior Developer"'
[testinguser@pdtl2app1 ~]$ curl -gX GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA 'https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee?filter=id|IN|[1,2,3,4,10]'
[testinguser@pdtl2app1 ~]$ curl -GX GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA 'https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks' --data-urlencode 'filter=dateCreated|GT|"2014-01-01T00:00:00.000+0000"'
[testinguser@pdtl2app1 ~]$ curl -GX GET --user testinguser@deltek.com:turK0QojkghftdrefsfadwerMEIaI0nUNLZQQSA 'https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks' --data-urlencode 'filter=dateCreated|GT|"2015-01-01T00:00:00.000+0000"' --data-urlencode 'filter=dateCreated|LT|"2015-12-31T00:00:00.000+0000"'
Returns page of Employee objects.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:40 GMT
<pagedResult maxResults="33" windowSize="5" currentPage="1">
<trafficEmployee id="35" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>33</userId>
<userName>test.1simonstewart@deltek.com</userName>
<externalCode>EXTERNAL_CODE</externalCode>
<employeeDetails id="35" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="62" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>test.1simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="33" version="0" dateCreated="2016-10-05T12:26:25.275+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="33" version="0" dateCreated="2016-10-05T12:26:25.277+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
<trafficEmployee id="34" version="0" dateCreated="2016-10-05T12:26:22.392+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>32</userId>
<userName>test.0simonstewart@deltek.com</userName>
<externalCode>EXTERNAL_CODE</externalCode>
<employeeDetails id="34" version="0" dateCreated="2016-10-05T12:26:22.392+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="61" version="0" dateCreated="2016-10-05T12:26:22.392+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>test.0simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="32" version="0" dateCreated="2016-10-05T12:26:22.403+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="32" version="0" dateCreated="2016-10-05T12:26:22.406+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
<trafficEmployee id="33" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>false</active>
<externalCode>NEW Employee Code 0.32307790192156305</externalCode>
<employeeDetails id="33" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="60" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>t.simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="31" version="0" dateCreated="2016-10-05T12:26:21.109+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="31" version="0" dateCreated="2016-10-05T12:26:21.112+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
<trafficEmployee id="32" version="0" dateCreated="2016-10-05T12:26:20.635+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>false</active>
<externalCode>NEW Employee Code 0.40021468329969667</externalCode>
<employeeDetails id="32" version="0" dateCreated="2016-10-05T12:26:20.635+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="59" version="0" dateCreated="2016-10-05T12:26:20.635+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>t.simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="30" version="0" dateCreated="2016-10-05T12:26:20.640+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="30" version="0" dateCreated="2016-10-05T12:26:20.642+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
<trafficEmployee id="29" version="0" dateCreated="2016-10-05T12:18:14.742+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>19</userId>
<userName>gillballesca@deltek.com</userName>
<externalCode>externalCode:c5-1909-</externalCode>
<employeeDetails id="29" version="0" dateCreated="2016-10-05T12:18:14.742+02:00">
<jobTitle>Software Developer</jobTitle>
<costPerHour>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="29" version="0" dateCreated="2016-10-05T12:18:14.742+02:00">
<firstName>Gill</firstName>
<lastName>Ballesca</lastName>
<emailAddress>gillballesca@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="29" version="0" dateCreated="2016-10-05T12:18:14.746+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="29" version="0" dateCreated="2016-10-05T12:18:14.747+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:40 GMT
{
"maxResults":33,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficEmployeeTO",
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:26:25.266+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":33,
"userName":"test.1simonstewart@deltek.com",
"externalCode":"EXTERNAL_CODE",
"employeeDetails":{
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:26:25.266+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":62,
"version":0,
"dateCreated":"2016-10-05T10:26:25.266+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"test.1simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:26:25.275+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:26:25.277+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficEmployeeTO",
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":32,
"userName":"test.0simonstewart@deltek.com",
"externalCode":"EXTERNAL_CODE",
"employeeDetails":{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"test.0simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:22.403+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:22.406+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficEmployeeTO",
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:26:21.102+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":false,
"userId":null,
"userName":null,
"externalCode":"NEW Employee Code 0.32307790192156305",
"employeeDetails":{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:26:21.102+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":60,
"version":0,
"dateCreated":"2016-10-05T10:26:21.102+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"t.simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:26:21.109+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:26:21.112+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficEmployeeTO",
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":false,
"userId":null,
"userName":null,
"externalCode":"NEW Employee Code 0.40021468329969667",
"employeeDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"t.simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:26:20.640+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:26:20.642+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficEmployeeTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:14.742+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":19,
"userName":"gillballesca@deltek.com",
"externalCode":"externalCode:c5-1909-",
"employeeDetails":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:14.742+0000",
"dateModified":null,
"jobTitle":"Software Developer",
"costPerHour":{
"amountString":40.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:14.742+0000",
"dateModified":null,
"titleType":null,
"firstName":"Gill",
"middleName":null,
"lastName":"Ballesca",
"emailAddress":"gillballesca@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:14.746+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:14.747+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
],
"windowSize":5,
"currentPage":1
}
Returns single Employee object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}
| name | description | default |
|---|---|---|
| id | Employee's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:34 GMT
<trafficEmployee id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
<externalCode>externalCode:93328fca</externalCode>
<employeeDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="1" version="0" dateCreated="2016-10-05T12:18:13.905+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="1" version="0" dateCreated="2016-10-05T12:18:13.906+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:34 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":7,
"userName":"simonstewart@deltek.com",
"externalCode":"externalCode:93328fca",
"employeeDetails":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.905+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.906+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
Returns the details of the logged in user.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/loggedIn
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/loggedIn HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/loggedIn HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:35 GMT
<trafficEmployee id="6" version="0" dateCreated="2016-10-05T12:18:14.083+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
<externalCode>externalCode:-5910266</externalCode>
<employeeDetails id="6" version="0" dateCreated="2016-10-05T12:18:14.083+02:00">
<jobTitle>Flex Developer</jobTitle>
<costPerHour>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="6" version="0" dateCreated="2016-10-05T12:18:14.083+02:00">
<firstName>Ales</firstName>
<lastName>Havlik</lastName>
<emailAddress>aleshavlik@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="6" version="0" dateCreated="2016-10-05T12:18:14.087+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="6" version="0" dateCreated="2016-10-05T12:18:14.088+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:34 GMT
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.083+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":21,
"userName":"aleshavlik@deltek.com",
"externalCode":"externalCode:-5910266",
"employeeDetails":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.083+0000",
"dateModified":null,
"jobTitle":"Flex Developer",
"costPerHour":{
"amountString":40.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.083+0000",
"dateModified":null,
"titleType":null,
"firstName":"Ales",
"middleName":null,
"lastName":"Havlik",
"emailAddress":"aleshavlik@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.087+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.088+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
Updates employee with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficEmployee id="1" version="1" dateCreated="2016-10-05T12:18:13.894+02:00" dateModified="2016-10-05T12:26:40.950+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
<employeeDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="1" version="0" dateCreated="2016-10-05T12:18:13.905+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="1" version="1" dateCreated="2016-10-05T12:18:13.906+02:00" dateModified="2016-10-05T12:26:40.950+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals />
</employeeDetails>
<chargeBandAllocationsIds />
<employeeGroupIds />
<isResource>false</isResource>
<externalCode>UPDATED Code 0.3673335157054175</externalCode>
</trafficEmployee>
POST /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"externalCode":"UPDATED Code 0.8924779314243372",
"departmentId":1,
"chargeBandAllocationsIds":[
],
"active":true,
"dateModified":null,
"personalRateChargeBandId":null,
"userName":"simonstewart@deltek.com",
"version":0,
"userId":7,
"employeeGroupIds":[
],
"dateCreated":"2016-10-05T10:18:13.894+0000",
"locationId":1,
"ownerCompanyId":1,
"employeeDetails":{
"trafficEmployeeWorkingTime":{
"percentageOfHoursLoggedPerDay":100,
"dateCreated":"2016-10-05T10:18:13.906+0000",
"workWeekId":null,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
],
"resourcingTimeZoneId":null,
"dateModified":null,
"id":1,
"percentageOfBillableHoursLoggedPerDay":75,
"version":0
},
"employmentIntervals":[
],
"jobTitle":"Senior Developer",
"defaultGroupModeOn":true,
"dateModified":null,
"version":0,
"emailSignature":null,
"hoursWorkedPerDayBillableMinutes":null,
"costPerHour":{
"currencyType":"GBP",
"amountString":45
},
"dateCreated":"2016-10-05T10:18:13.894+0000",
"trafficEmployeeCalendar":{
"googleCalendarSyncEnabled":false,
"lastSyncErrorMessage":null,
"externalSyncAllocations":null,
"externalCalendarPropertyUid":null,
"timeZoneId":null,
"dateModified":null,
"externalCalendarType":null,
"externalCalendarUsername":null,
"overrideLastSyncEntry":false,
"version":0,
"externalCalendarPassword":null,
"dateCreated":"2016-10-05T10:18:13.905+0000",
"lastSyncEntry":null,
"id":1,
"nextScheduledTime":null,
"externalCalendarURL":null,
"externalSyncBookedTime":null
},
"personalDetails":{
"titleType":null,
"lastName":"Stewart",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Simon",
"emailAddress":"simonstewart@deltek.com",
"dateCreated":"2016-10-05T10:18:13.894+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":1
},
"id":1,
"hoursWorkedPerDayMinutes":450
},
"id":1,
"isResource":false
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:41 GMT
<trafficEmployee id="1" version="2" dateCreated="2016-10-05T12:18:13.894+02:00" dateModified="2016-10-05T12:26:41.416+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
<externalCode>UPDATED Code 0.3673335157054175</externalCode>
<employeeDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="1" version="0" dateCreated="2016-10-05T12:18:13.894+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="1" version="0" dateCreated="2016-10-05T12:18:13.905+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="1" version="2" dateCreated="2016-10-05T12:18:13.906+02:00" dateModified="2016-10-05T12:26:41.416+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:40 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":"2016-10-05T10:26:40.950+0000",
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":7,
"userName":"simonstewart@deltek.com",
"externalCode":"UPDATED Code 0.8924779314243372",
"employeeDetails":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.905+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.906+0000",
"dateModified":"2016-10-05T10:26:40.950+0000",
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100,
"percentageOfBillableHoursLoggedPerDay":75,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
Adds submitted employee and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficEmployee id="-1" version="-1" dateCreated="2016-10-05T12:18:13.894+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
<employeeDetails id="-1" version="-1" dateCreated="2016-10-05T12:18:13.894+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="-1" version="-1" dateCreated="2016-10-05T12:18:13.894+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>t.simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="-1" version="-1" dateCreated="2016-10-05T12:18:13.905+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="-1" version="-1" dateCreated="2016-10-05T12:18:13.906+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals />
</employeeDetails>
<chargeBandAllocationsIds />
<employeeGroupIds />
<isResource>false</isResource>
<externalCode>NEW Employee Code 0.32307790192156305</externalCode>
</trafficEmployee>
PUT /TrafficLiteServer/openapi/staff/employee HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"externalCode":"NEW Employee Code 0.40021468329969667",
"departmentId":1,
"chargeBandAllocationsIds":[
],
"active":true,
"personalRateChargeBandId":null,
"userName":"simonstewart@deltek.com",
"version":"-1",
"userId":7,
"employeeGroupIds":[
],
"dateCreated":"2016-10-05T10:18:13.894+0000",
"locationId":1,
"ownerCompanyId":1,
"employeeDetails":{
"trafficEmployeeWorkingTime":{
"percentageOfHoursLoggedPerDay":100,
"dateCreated":"2016-10-05T10:18:13.906+0000",
"workWeekId":null,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
],
"resourcingTimeZoneId":null,
"id":"-1",
"percentageOfBillableHoursLoggedPerDay":75,
"version":"-1"
},
"employmentIntervals":[
],
"jobTitle":"Senior Developer",
"defaultGroupModeOn":true,
"version":"-1",
"emailSignature":null,
"hoursWorkedPerDayBillableMinutes":null,
"costPerHour":{
"currencyType":"GBP",
"amountString":45
},
"dateCreated":"2016-10-05T10:18:13.894+0000",
"trafficEmployeeCalendar":{
"googleCalendarSyncEnabled":false,
"lastSyncErrorMessage":null,
"externalSyncAllocations":null,
"externalCalendarPropertyUid":null,
"timeZoneId":null,
"externalCalendarType":null,
"externalCalendarUsername":null,
"overrideLastSyncEntry":false,
"version":"-1",
"externalCalendarPassword":null,
"dateCreated":"2016-10-05T10:18:13.905+0000",
"lastSyncEntry":null,
"id":"-1",
"nextScheduledTime":null,
"externalCalendarURL":null,
"externalSyncBookedTime":null
},
"personalDetails":{
"titleType":null,
"lastName":"Stewart",
"firstName":"Simon",
"emailAddress":"t.simonstewart@deltek.com",
"faxPhone":null,
"dateCreated":"2016-10-05T10:18:13.894+0000",
"mobilePhone":null,
"homePhone":null,
"middleName":null,
"workPhone":null,
"id":"-1",
"version":"-1"
},
"id":"-1",
"hoursWorkedPerDayMinutes":450
},
"id":"-1",
"isResource":false
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:20 GMT
<trafficEmployee id="33" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>false</active>
<externalCode>NEW Employee Code 0.32307790192156305</externalCode>
<employeeDetails id="33" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="60" version="0" dateCreated="2016-10-05T12:26:21.102+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>t.simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="31" version="0" dateCreated="2016-10-05T12:26:21.109+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="31" version="0" dateCreated="2016-10-05T12:26:21.112+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:20 GMT
{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":false,
"userId":null,
"userName":null,
"externalCode":"NEW Employee Code 0.40021468329969667",
"employeeDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:26:20.635+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"t.simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:26:20.640+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:26:20.642+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100,
"percentageOfBillableHoursLoggedPerDay":75,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
Returns single User Account object by the employee id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/useraccount
| name | description | default |
|---|---|---|
| id | Employee's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/35/useraccount HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/34/useraccount HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:26 GMT
<user id="33" version="0" dateCreated="2016-10-05T12:26:25.760+02:00">
<userName>test.1simonstewart@deltek.com</userName>
<enabled>true</enabled>
<userRoles>ROLE_CHANGE_PASSWORD</userRoles>
<loginFailures>0</loginFailures>
<accountLocked>false</accountLocked>
<archivedUserRoles>ROLE_USER ROLE_TRAFFIC_USER</archivedUserRoles>
<singleSignOn>false</singleSignOn>
<oauthEnabled>false</oauthEnabled>
</user>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:24 GMT
{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:23.050+0000",
"dateModified":null,
"userName":"test.0simonstewart@deltek.com",
"enabled":true,
"enabledStatusChanged":null,
"userRoles":"ROLE_CHANGE_PASSWORD",
"lastLogin":null,
"loginFailures":0,
"accountLocked":false,
"archivedUserRoles":"ROLE_USER ROLE_TRAFFIC_USER",
"apiTokenFingerprint":null,
"lastPasswordChanged":null,
"singleSignOn":false,
"oauthEnabled":false
}
Creates a TrafficLIVE login user account for the employee id. A TrafficEmployeeTO is returned
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/useraccount
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/staff/employee/35/useraccount HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
PUT /TrafficLiteServer/openapi/staff/employee/34/useraccount HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:26 GMT
<trafficEmployee id="35" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<locationId>1</locationId>
<departmentId>1</departmentId>
<ownerCompanyId>1</ownerCompanyId>
<active>true</active>
<userId>33</userId>
<userName>test.1simonstewart@deltek.com</userName>
<externalCode>EXTERNAL_CODE</externalCode>
<employeeDetails id="35" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<jobTitle>Senior Developer</jobTitle>
<costPerHour>
<amountString>45.00</amountString>
<currencyType>GBP</currencyType>
</costPerHour>
<hoursWorkedPerDayMinutes>450</hoursWorkedPerDayMinutes>
<personalDetails id="62" version="0" dateCreated="2016-10-05T12:26:25.266+02:00">
<firstName>Simon</firstName>
<lastName>Stewart</lastName>
<emailAddress>test.1simonstewart@deltek.com</emailAddress>
</personalDetails>
<defaultGroupModeOn>true</defaultGroupModeOn>
<trafficEmployeeCalendar id="33" version="0" dateCreated="2016-10-05T12:26:25.275+02:00">
<googleCalendarSyncEnabled>false</googleCalendarSyncEnabled>
<overrideLastSyncEntry>false</overrideLastSyncEntry>
</trafficEmployeeCalendar>
<trafficEmployeeWorkingTime id="33" version="0" dateCreated="2016-10-05T12:26:25.277+02:00">
<percentageOfHoursLoggedPerDay>100.00</percentageOfHoursLoggedPerDay>
<percentageOfBillableHoursLoggedPerDay>75.00</percentageOfBillableHoursLoggedPerDay>
<nonWorkingPlanIds>
<com.sohnar.trafficlite.transfer.Identifier>
<id>1</id>
</com.sohnar.trafficlite.transfer.Identifier>
<com.sohnar.trafficlite.transfer.Identifier>
<id>2</id>
</com.sohnar.trafficlite.transfer.Identifier>
</nonWorkingPlanIds>
</trafficEmployeeWorkingTime>
<employmentIntervals/>
</employeeDetails>
<chargeBandAllocationsIds/>
<employeeGroupIds/>
<isResource>false</isResource>
</trafficEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:24 GMT
{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"locationId":1,
"departmentId":1,
"ownerCompanyId":1,
"active":true,
"userId":32,
"userName":"test.0simonstewart@deltek.com",
"externalCode":"EXTERNAL_CODE",
"employeeDetails":{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"jobTitle":"Senior Developer",
"costPerHour":{
"amountString":45.00,
"currencyType":"GBP"
},
"hoursWorkedPerDayMinutes":450,
"hoursWorkedPerDayBillableMinutes":null,
"personalDetails":{
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:26:22.392+0000",
"dateModified":null,
"titleType":null,
"firstName":"Simon",
"middleName":null,
"lastName":"Stewart",
"emailAddress":"test.0simonstewart@deltek.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"emailSignature":null,
"defaultGroupModeOn":true,
"trafficEmployeeCalendar":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:22.403+0000",
"dateModified":null,
"googleCalendarSyncEnabled":false,
"externalCalendarType":null,
"timeZoneId":null,
"lastSyncEntry":null,
"overrideLastSyncEntry":false,
"externalSyncBookedTime":null,
"externalSyncAllocations":null,
"externalCalendarUsername":null,
"externalCalendarPassword":null,
"externalCalendarURL":null,
"externalCalendarPropertyUid":null,
"nextScheduledTime":null,
"lastSyncErrorMessage":null
},
"trafficEmployeeWorkingTime":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:22.406+0000",
"dateModified":null,
"resourcingTimeZoneId":null,
"workWeekId":null,
"percentageOfHoursLoggedPerDay":100.00,
"percentageOfBillableHoursLoggedPerDay":75.00,
"nonWorkingPlanIds":[
{
"id":1
},
{
"id":2
}
]
},
"employmentIntervals":[
]
},
"chargeBandAllocationsIds":[
],
"personalRateChargeBandId":null,
"employeeGroupIds":[
],
"isResource":false
}
Locks/Unlocks the User Account for the Employee Id, based on the provided UserTO enabled value.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/useraccount/lock
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/employee/1/useraccount/lock HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<user id="7" version="5" dateCreated="2016-10-05T12:18:20.620+02:00" dateModified="2016-10-05T12:26:36.671+02:00">
<userName>simonstewart@deltek.com</userName>
<enabled>true</enabled>
<userRoles>ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER</userRoles>
<loginFailures>0</loginFailures>
<apiTokenFingerprint>qyuD</apiTokenFingerprint>
<singleSignOn>false</singleSignOn>
<oauthEnabled>false</oauthEnabled>
<accountLocked>false</accountLocked>
</user>
POST /TrafficLiteServer/openapi/staff/employee/1/useraccount/lock HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"accountLocked":"false",
"lastLogin":null,
"singleSignOn":false,
"oauthEnabled":false,
"dateModified":"2016-10-05T10:26:36.300+0000",
"apiTokenFingerprint":"qyuD",
"userName":"simonstewart@deltek.com",
"version":3,
"enabled":true,
"loginFailures":0,
"lastPasswordChanged":null,
"userRoles":"ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER",
"dateCreated":"2016-10-05T10:18:20.620+0000",
"enabledStatusChanged":null,
"archivedUserRoles":null,
"id":7
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:36 GMT
<user id="7" version="6" dateCreated="2016-10-05T12:18:20.620+02:00" dateModified="2016-10-05T12:26:36.801+02:00">
<userName>simonstewart@deltek.com</userName>
<enabled>true</enabled>
<userRoles>ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER</userRoles>
<loginFailures>0</loginFailures>
<accountLocked>false</accountLocked>
<apiTokenFingerprint>qyuD</apiTokenFingerprint>
<singleSignOn>false</singleSignOn>
<oauthEnabled>false</oauthEnabled>
</user>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:35 GMT
{
"id":7,
"version":4,
"dateCreated":"2016-10-05T10:18:20.620+0000",
"dateModified":"2016-10-05T10:26:36.422+0000",
"userName":"simonstewart@deltek.com",
"enabled":true,
"enabledStatusChanged":null,
"userRoles":"ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER",
"lastLogin":null,
"loginFailures":0,
"accountLocked":false,
"archivedUserRoles":null,
"apiTokenFingerprint":"qyuD",
"lastPasswordChanged":null,
"singleSignOn":false,
"oauthEnabled":false
}
Enables/Disables the User Account for the Employee Id, based on the provided UserTO enabled value.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/useraccount/enable
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/employee/1/useraccount/enable HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<user id="7" version="9" dateCreated="2016-10-05T12:18:20.620+02:00" dateModified="2016-10-05T12:26:38.531+02:00">
<userName>simonstewart@deltek.com</userName>
<enabledStatusChanged>2016-10-05T12:26:38.523+02:00</enabledStatusChanged>
<userRoles>ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER</userRoles>
<loginFailures>0</loginFailures>
<accountLocked>false</accountLocked>
<apiTokenFingerprint>qyuD</apiTokenFingerprint>
<singleSignOn>false</singleSignOn>
<oauthEnabled>false</oauthEnabled>
<enabled>true</enabled>
</user>
POST /TrafficLiteServer/openapi/staff/employee/1/useraccount/enable HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"accountLocked":false,
"lastLogin":null,
"singleSignOn":false,
"oauthEnabled":false,
"dateModified":"2016-10-05T10:26:37.264+0000",
"apiTokenFingerprint":"qyuD",
"userName":"simonstewart@deltek.com",
"version":7,
"enabled":"true",
"loginFailures":0,
"lastPasswordChanged":null,
"userRoles":"ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER",
"dateCreated":"2016-10-05T10:18:20.620+0000",
"enabledStatusChanged":"2016-10-05T10:26:37.244+0000",
"archivedUserRoles":null,
"id":7
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:38 GMT
<user id="7" version="10" dateCreated="2016-10-05T12:18:20.620+02:00" dateModified="2016-10-05T12:26:38.921+02:00">
<userName>simonstewart@deltek.com</userName>
<enabled>true</enabled>
<enabledStatusChanged>2016-10-05T12:26:38.914+02:00</enabledStatusChanged>
<userRoles>ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER</userRoles>
<loginFailures>0</loginFailures>
<accountLocked>false</accountLocked>
<apiTokenFingerprint>qyuD</apiTokenFingerprint>
<singleSignOn>false</singleSignOn>
<oauthEnabled>false</oauthEnabled>
</user>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:37 GMT
{
"id":7,
"version":8,
"dateCreated":"2016-10-05T10:18:20.620+0000",
"dateModified":"2016-10-05T10:26:37.602+0000",
"userName":"simonstewart@deltek.com",
"enabled":true,
"enabledStatusChanged":"2016-10-05T10:26:37.596+0000",
"userRoles":"ROLE_USER ROLE_TRAFFIC_USER ROLE_TRAFFIC_ADMIN ROLE_SYSTEM_USER",
"lastLogin":null,
"loginFailures":0,
"accountLocked":false,
"archivedUserRoles":null,
"apiTokenFingerprint":"qyuD",
"lastPasswordChanged":null,
"singleSignOn":false,
"oauthEnabled":false
}
Returns the set of Application Permissions for the the employee id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/permissions
| name | description | default |
|---|---|---|
| id | Employee's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/1/permissions HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/1/permissions HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:29 GMT
<com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
<trafficEmployeeId>1</trafficEmployeeId>
<applicationPermissionsTO id="4" version="0" dateCreated="2016-10-05T12:18:13.898+02:00">
<groupedPermissions>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>13</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>54</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>40</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>90</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>9</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>132</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>78</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>73</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>121</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>52</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>120</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>66</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>98</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>30</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>168</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>17</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>88</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>48</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>76</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>104</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>155</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>12</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>44</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>143</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>16</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>146</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>125</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>105</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>107</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>62</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>106</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>75</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>43</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>28</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>115</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>116</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>26</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>157</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>39</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>65</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>7</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>83</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>71</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>114</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>95</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>165</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>35</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>15</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>33</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>133</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>38</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>93</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>141</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>55</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>53</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>25</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>159</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>19</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>46</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>164</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>167</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>31</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>142</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>86</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>14</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>2</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>128</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>137</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>20</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>145</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>149</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>67</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>153</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>42</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>169</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>5</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>134</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>47</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>3</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>36</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>92</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>87</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>64</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>74</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>58</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>29</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>138</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>80</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>18</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>34</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>22</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>85</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>163</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>49</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>147</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>82</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>51</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>140</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>126</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>50</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>162</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>127</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>21</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>77</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>111</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>59</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>57</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>117</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>102</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>81</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>37</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>123</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>118</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>61</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>103</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>72</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>100</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>69</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>122</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>144</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>110</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>23</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>139</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>4</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>130</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>135</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>24</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>124</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>6</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>148</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>160</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>8</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>84</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>79</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>1</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>27</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>150</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>119</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>60</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>158</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>156</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>113</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>94</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>131</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>91</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>108</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>70</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>151</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>112</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>97</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>11</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>166</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>96</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>10</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>41</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>136</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>161</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>109</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>68</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>152</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>56</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>99</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>63</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>101</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>32</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>89</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>45</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>129</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>154</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
</groupedPermissions>
<globalPermissions id="10" version="2" dateCreated="2016-10-05T12:18:20.878+02:00" dateModified="2016-10-05T12:26:30.227+02:00">
<viewStaffSalaries>false</viewStaffSalaries>
<viewProfitNumbers>false</viewProfitNumbers>
<storesTime>true</storesTime>
<unlimitedIssueInvoiceValue>true</unlimitedIssueInvoiceValue>
<unlimitedIssuePurchaseOrderValue>true</unlimitedIssuePurchaseOrderValue>
<unlimitedIssueQuoteValue>true</unlimitedIssueQuoteValue>
<canChangeAllocationIntervalStatus>false</canChangeAllocationIntervalStatus>
<configurableNotificationRecords>
<configurableNotificationRecord id="38" version="0" dateCreated="2016-10-05T12:26:30.218+02:00">
<notificationType>CREATE_OR_MODIFY_PENDING_ALLOCATION</notificationType>
<value>false</value>
</configurableNotificationRecord>
</configurableNotificationRecords>
<restrictedClientTags/>
</globalPermissions>
</applicationPermissionsTO>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:29 GMT
{
"trafficEmployeeId":1,
"applicationPermissionsTO":{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.898+0000",
"dateModified":null,
"lastUpdatedUserId":null,
"groupedPermissions":[
{
"groupedPermissionId":41,
"value":true
},
{
"groupedPermissionId":37,
"value":true
},
{
"groupedPermissionId":151,
"value":true
},
{
"groupedPermissionId":134,
"value":true
},
{
"groupedPermissionId":28,
"value":true
},
{
"groupedPermissionId":68,
"value":true
},
{
"groupedPermissionId":167,
"value":true
},
{
"groupedPermissionId":58,
"value":true
},
{
"groupedPermissionId":109,
"value":true
},
{
"groupedPermissionId":77,
"value":true
},
{
"groupedPermissionId":26,
"value":true
},
{
"groupedPermissionId":137,
"value":true
},
{
"groupedPermissionId":129,
"value":true
},
{
"groupedPermissionId":14,
"value":true
},
{
"groupedPermissionId":62,
"value":true
},
{
"groupedPermissionId":42,
"value":true
},
{
"groupedPermissionId":108,
"value":true
},
{
"groupedPermissionId":114,
"value":true
},
{
"groupedPermissionId":98,
"value":true
},
{
"groupedPermissionId":47,
"value":true
},
{
"groupedPermissionId":122,
"value":true
},
{
"groupedPermissionId":106,
"value":true
},
{
"groupedPermissionId":94,
"value":true
},
{
"groupedPermissionId":125,
"value":true
},
{
"groupedPermissionId":10,
"value":true
},
{
"groupedPermissionId":15,
"value":true
},
{
"groupedPermissionId":60,
"value":true
},
{
"groupedPermissionId":132,
"value":true
},
{
"groupedPermissionId":144,
"value":true
},
{
"groupedPermissionId":107,
"value":true
},
{
"groupedPermissionId":49,
"value":true
},
{
"groupedPermissionId":155,
"value":true
},
{
"groupedPermissionId":17,
"value":true
},
{
"groupedPermissionId":95,
"value":true
},
{
"groupedPermissionId":113,
"value":true
},
{
"groupedPermissionId":19,
"value":true
},
{
"groupedPermissionId":159,
"value":true
},
{
"groupedPermissionId":6,
"value":true
},
{
"groupedPermissionId":45,
"value":true
},
{
"groupedPermissionId":13,
"value":true
},
{
"groupedPermissionId":67,
"value":true
},
{
"groupedPermissionId":90,
"value":true
},
{
"groupedPermissionId":75,
"value":true
},
{
"groupedPermissionId":149,
"value":true
},
{
"groupedPermissionId":72,
"value":true
},
{
"groupedPermissionId":21,
"value":true
},
{
"groupedPermissionId":91,
"value":true
},
{
"groupedPermissionId":153,
"value":true
},
{
"groupedPermissionId":61,
"value":true
},
{
"groupedPermissionId":163,
"value":true
},
{
"groupedPermissionId":73,
"value":true
},
{
"groupedPermissionId":50,
"value":true
},
{
"groupedPermissionId":7,
"value":true
},
{
"groupedPermissionId":29,
"value":true
},
{
"groupedPermissionId":34,
"value":true
},
{
"groupedPermissionId":140,
"value":true
},
{
"groupedPermissionId":143,
"value":true
},
{
"groupedPermissionId":53,
"value":true
},
{
"groupedPermissionId":162,
"value":true
},
{
"groupedPermissionId":148,
"value":true
},
{
"groupedPermissionId":83,
"value":true
},
{
"groupedPermissionId":96,
"value":true
},
{
"groupedPermissionId":64,
"value":true
},
{
"groupedPermissionId":158,
"value":true
},
{
"groupedPermissionId":1,
"value":true
},
{
"groupedPermissionId":104,
"value":true
},
{
"groupedPermissionId":27,
"value":true
},
{
"groupedPermissionId":100,
"value":true
},
{
"groupedPermissionId":93,
"value":true
},
{
"groupedPermissionId":139,
"value":true
},
{
"groupedPermissionId":71,
"value":true
},
{
"groupedPermissionId":135,
"value":true
},
{
"groupedPermissionId":24,
"value":true
},
{
"groupedPermissionId":131,
"value":true
},
{
"groupedPermissionId":70,
"value":true
},
{
"groupedPermissionId":3,
"value":true
},
{
"groupedPermissionId":101,
"value":true
},
{
"groupedPermissionId":2,
"value":true
},
{
"groupedPermissionId":99,
"value":true
},
{
"groupedPermissionId":84,
"value":true
},
{
"groupedPermissionId":78,
"value":true
},
{
"groupedPermissionId":86,
"value":true
},
{
"groupedPermissionId":124,
"value":true
},
{
"groupedPermissionId":138,
"value":true
},
{
"groupedPermissionId":121,
"value":true
},
{
"groupedPermissionId":46,
"value":true
},
{
"groupedPermissionId":169,
"value":true
},
{
"groupedPermissionId":8,
"value":true
},
{
"groupedPermissionId":38,
"value":true
},
{
"groupedPermissionId":119,
"value":true
},
{
"groupedPermissionId":142,
"value":true
},
{
"groupedPermissionId":160,
"value":true
},
{
"groupedPermissionId":80,
"value":true
},
{
"groupedPermissionId":32,
"value":true
},
{
"groupedPermissionId":165,
"value":true
},
{
"groupedPermissionId":118,
"value":true
},
{
"groupedPermissionId":152,
"value":true
},
{
"groupedPermissionId":76,
"value":true
},
{
"groupedPermissionId":168,
"value":true
},
{
"groupedPermissionId":92,
"value":true
},
{
"groupedPermissionId":89,
"value":true
},
{
"groupedPermissionId":23,
"value":true
},
{
"groupedPermissionId":111,
"value":true
},
{
"groupedPermissionId":102,
"value":true
},
{
"groupedPermissionId":141,
"value":true
},
{
"groupedPermissionId":48,
"value":true
},
{
"groupedPermissionId":66,
"value":true
},
{
"groupedPermissionId":126,
"value":true
},
{
"groupedPermissionId":74,
"value":true
},
{
"groupedPermissionId":166,
"value":true
},
{
"groupedPermissionId":97,
"value":true
},
{
"groupedPermissionId":147,
"value":true
},
{
"groupedPermissionId":12,
"value":true
},
{
"groupedPermissionId":9,
"value":true
},
{
"groupedPermissionId":36,
"value":true
},
{
"groupedPermissionId":105,
"value":true
},
{
"groupedPermissionId":4,
"value":true
},
{
"groupedPermissionId":20,
"value":true
},
{
"groupedPermissionId":110,
"value":true
},
{
"groupedPermissionId":136,
"value":true
},
{
"groupedPermissionId":127,
"value":true
},
{
"groupedPermissionId":69,
"value":true
},
{
"groupedPermissionId":79,
"value":true
},
{
"groupedPermissionId":112,
"value":true
},
{
"groupedPermissionId":88,
"value":true
},
{
"groupedPermissionId":33,
"value":true
},
{
"groupedPermissionId":123,
"value":true
},
{
"groupedPermissionId":128,
"value":true
},
{
"groupedPermissionId":157,
"value":true
},
{
"groupedPermissionId":54,
"value":true
},
{
"groupedPermissionId":146,
"value":true
},
{
"groupedPermissionId":35,
"value":true
},
{
"groupedPermissionId":57,
"value":true
},
{
"groupedPermissionId":40,
"value":true
},
{
"groupedPermissionId":55,
"value":true
},
{
"groupedPermissionId":5,
"value":true
},
{
"groupedPermissionId":156,
"value":true
},
{
"groupedPermissionId":63,
"value":true
},
{
"groupedPermissionId":52,
"value":true
},
{
"groupedPermissionId":164,
"value":true
},
{
"groupedPermissionId":145,
"value":true
},
{
"groupedPermissionId":59,
"value":true
},
{
"groupedPermissionId":43,
"value":true
},
{
"groupedPermissionId":31,
"value":true
},
{
"groupedPermissionId":56,
"value":true
},
{
"groupedPermissionId":133,
"value":true
},
{
"groupedPermissionId":25,
"value":true
},
{
"groupedPermissionId":65,
"value":true
},
{
"groupedPermissionId":82,
"value":true
},
{
"groupedPermissionId":18,
"value":true
},
{
"groupedPermissionId":87,
"value":true
},
{
"groupedPermissionId":16,
"value":true
},
{
"groupedPermissionId":85,
"value":true
},
{
"groupedPermissionId":116,
"value":true
},
{
"groupedPermissionId":117,
"value":true
},
{
"groupedPermissionId":30,
"value":true
},
{
"groupedPermissionId":154,
"value":true
},
{
"groupedPermissionId":51,
"value":true
},
{
"groupedPermissionId":22,
"value":true
},
{
"groupedPermissionId":161,
"value":true
},
{
"groupedPermissionId":103,
"value":true
},
{
"groupedPermissionId":44,
"value":true
},
{
"groupedPermissionId":115,
"value":true
},
{
"groupedPermissionId":130,
"value":true
},
{
"groupedPermissionId":81,
"value":true
},
{
"groupedPermissionId":150,
"value":true
},
{
"groupedPermissionId":120,
"value":true
},
{
"groupedPermissionId":11,
"value":true
},
{
"groupedPermissionId":39,
"value":true
}
],
"globalPermissions":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:20.878+0000",
"dateModified":null,
"viewStaffSalaries":false,
"viewProfitNumbers":false,
"storesTime":true,
"unlimitedIssueInvoiceValue":true,
"maxIssueInvoiceValue":null,
"unlimitedIssuePurchaseOrderValue":true,
"maxIssuePurchaseOrderValue":null,
"unlimitedIssueQuoteValue":true,
"maxIssueQuoteValue":null,
"canChangeAllocationIntervalStatus":false,
"configurableNotificationRecords":[
{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:20.880+0000",
"dateModified":null,
"notificationType":"CREATE_OR_MODIFY_PENDING_ALLOCATION",
"value":false
}
],
"restrictedClientTags":[
]
}
}
}
Updates the permission set for the Employee. See the /application/permissiongroup endpoint for available permissions.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{id}/permissions
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/employee/1/permissions HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
<trafficEmployeeId>1</trafficEmployeeId>
<applicationPermissionsTO id="4" version="0" dateCreated="2016-10-05T12:18:13.898+02:00">
<groupedPermissions>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>118</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>46</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>131</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>5</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>82</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>69</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>79</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>154</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>138</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>110</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>123</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>23</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>136</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>48</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>153</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>148</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>132</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>91</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>24</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>163</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>101</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>47</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>109</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>60</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>86</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>28</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>27</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>44</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>81</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>7</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>10</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>30</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>119</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>156</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>127</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>68</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>78</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>145</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>144</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>139</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>63</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>111</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>99</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>87</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>55</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>56</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>164</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>116</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>21</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>51</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>98</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>115</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>33</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>62</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>95</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>169</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>140</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>130</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>54</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>121</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>73</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>128</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>29</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>150</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>143</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>16</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>58</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>74</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>65</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>147</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>45</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>124</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>52</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>66</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>39</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>104</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>31</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>19</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>84</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>18</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>49</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>129</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>102</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>126</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>117</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>40</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>20</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>85</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>67</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>38</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>61</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>42</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>34</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>149</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>57</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>53</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>59</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>135</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>37</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>120</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>12</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>106</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>94</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>93</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>83</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>161</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>141</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>158</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>3</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>71</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>157</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>64</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>1</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>146</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>133</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>167</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>113</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>151</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>35</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>125</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>72</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>122</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>14</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>22</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>41</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>80</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>8</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>26</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>162</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>89</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>76</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>105</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>32</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>168</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>107</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>108</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>25</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>15</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>97</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>4</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>13</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>50</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>70</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>159</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>114</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>155</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>6</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>103</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>11</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>112</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>152</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>88</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>160</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>77</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>96</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>9</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>92</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>43</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>134</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>36</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>142</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>166</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>2</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>17</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>165</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>137</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>90</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>75</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>100</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
</groupedPermissions>
<globalPermissions id="10" version="3" dateCreated="2016-10-05T12:18:20.878+02:00" dateModified="2016-10-05T12:26:31.386+02:00">
<viewProfitNumbers>false</viewProfitNumbers>
<storesTime>true</storesTime>
<unlimitedIssueInvoiceValue>true</unlimitedIssueInvoiceValue>
<unlimitedIssuePurchaseOrderValue>true</unlimitedIssuePurchaseOrderValue>
<unlimitedIssueQuoteValue>true</unlimitedIssueQuoteValue>
<canChangeAllocationIntervalStatus>false</canChangeAllocationIntervalStatus>
<configurableNotificationRecords>
<configurableNotificationRecord id="39" version="0" dateCreated="2016-10-05T12:26:31.380+02:00">
<notificationType>CREATE_OR_MODIFY_PENDING_ALLOCATION</notificationType>
<value>false</value>
</configurableNotificationRecord>
</configurableNotificationRecords>
<restrictedClientTags />
<viewStaffSalaries>false</viewStaffSalaries>
</globalPermissions>
</applicationPermissionsTO>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
POST /TrafficLiteServer/openapi/staff/employee/1/permissions HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"trafficEmployeeId":1,
"applicationPermissionsTO":{
"lastUpdatedUserId":null,
"globalPermissions":{
"unlimitedIssueInvoiceValue":true,
"storesTime":true,
"canChangeAllocationIntervalStatus":false,
"maxIssuePurchaseOrderValue":null,
"configurableNotificationRecords":[
{
"dateCreated":"2016-10-05T10:26:29.961+0000",
"dateModified":null,
"id":37,
"notificationType":"CREATE_OR_MODIFY_PENDING_ALLOCATION",
"version":0,
"value":false
}
],
"restrictedClientTags":[
],
"dateModified":"2016-10-05T10:26:29.972+0000",
"unlimitedIssueQuoteValue":true,
"viewStaffSalaries":"false",
"version":1,
"dateCreated":"2016-10-05T10:18:20.878+0000",
"maxIssueInvoiceValue":null,
"viewProfitNumbers":false,
"maxIssueQuoteValue":null,
"id":10,
"unlimitedIssuePurchaseOrderValue":true
},
"dateCreated":"2016-10-05T10:18:13.898+0000",
"dateModified":null,
"id":4,
"version":0,
"groupedPermissions":[
{
"groupedPermissionId":148,
"value":true
},
{
"groupedPermissionId":77,
"value":true
},
{
"groupedPermissionId":140,
"value":true
},
{
"groupedPermissionId":161,
"value":true
},
{
"groupedPermissionId":168,
"value":true
},
{
"groupedPermissionId":70,
"value":true
},
{
"groupedPermissionId":87,
"value":true
},
{
"groupedPermissionId":165,
"value":true
},
{
"groupedPermissionId":47,
"value":true
},
{
"groupedPermissionId":141,
"value":true
},
{
"groupedPermissionId":125,
"value":true
},
{
"groupedPermissionId":155,
"value":true
},
{
"groupedPermissionId":43,
"value":true
},
{
"groupedPermissionId":126,
"value":true
},
{
"groupedPermissionId":32,
"value":true
},
{
"groupedPermissionId":121,
"value":true
},
{
"groupedPermissionId":85,
"value":true
},
{
"groupedPermissionId":10,
"value":true
},
{
"groupedPermissionId":90,
"value":true
},
{
"groupedPermissionId":153,
"value":true
},
{
"groupedPermissionId":9,
"value":true
},
{
"groupedPermissionId":29,
"value":true
},
{
"groupedPermissionId":143,
"value":true
},
{
"groupedPermissionId":19,
"value":true
},
{
"groupedPermissionId":14,
"value":true
},
{
"groupedPermissionId":137,
"value":true
},
{
"groupedPermissionId":51,
"value":true
},
{
"groupedPermissionId":108,
"value":true
},
{
"groupedPermissionId":147,
"value":true
},
{
"groupedPermissionId":39,
"value":true
},
{
"groupedPermissionId":98,
"value":true
},
{
"groupedPermissionId":56,
"value":true
},
{
"groupedPermissionId":12,
"value":true
},
{
"groupedPermissionId":63,
"value":true
},
{
"groupedPermissionId":169,
"value":true
},
{
"groupedPermissionId":105,
"value":true
},
{
"groupedPermissionId":42,
"value":true
},
{
"groupedPermissionId":115,
"value":true
},
{
"groupedPermissionId":89,
"value":true
},
{
"groupedPermissionId":60,
"value":true
},
{
"groupedPermissionId":114,
"value":true
},
{
"groupedPermissionId":20,
"value":true
},
{
"groupedPermissionId":124,
"value":true
},
{
"groupedPermissionId":11,
"value":true
},
{
"groupedPermissionId":104,
"value":true
},
{
"groupedPermissionId":36,
"value":true
},
{
"groupedPermissionId":50,
"value":true
},
{
"groupedPermissionId":128,
"value":true
},
{
"groupedPermissionId":64,
"value":true
},
{
"groupedPermissionId":127,
"value":true
},
{
"groupedPermissionId":91,
"value":true
},
{
"groupedPermissionId":106,
"value":true
},
{
"groupedPermissionId":26,
"value":true
},
{
"groupedPermissionId":158,
"value":true
},
{
"groupedPermissionId":5,
"value":true
},
{
"groupedPermissionId":22,
"value":true
},
{
"groupedPermissionId":99,
"value":true
},
{
"groupedPermissionId":48,
"value":true
},
{
"groupedPermissionId":1,
"value":true
},
{
"groupedPermissionId":135,
"value":true
},
{
"groupedPermissionId":67,
"value":true
},
{
"groupedPermissionId":88,
"value":true
},
{
"groupedPermissionId":30,
"value":true
},
{
"groupedPermissionId":132,
"value":true
},
{
"groupedPermissionId":52,
"value":true
},
{
"groupedPermissionId":59,
"value":true
},
{
"groupedPermissionId":84,
"value":true
},
{
"groupedPermissionId":37,
"value":true
},
{
"groupedPermissionId":120,
"value":true
},
{
"groupedPermissionId":166,
"value":true
},
{
"groupedPermissionId":65,
"value":true
},
{
"groupedPermissionId":21,
"value":true
},
{
"groupedPermissionId":74,
"value":true
},
{
"groupedPermissionId":162,
"value":true
},
{
"groupedPermissionId":97,
"value":true
},
{
"groupedPermissionId":17,
"value":true
},
{
"groupedPermissionId":160,
"value":true
},
{
"groupedPermissionId":96,
"value":true
},
{
"groupedPermissionId":116,
"value":true
},
{
"groupedPermissionId":167,
"value":true
},
{
"groupedPermissionId":34,
"value":true
},
{
"groupedPermissionId":55,
"value":true
},
{
"groupedPermissionId":35,
"value":true
},
{
"groupedPermissionId":123,
"value":true
},
{
"groupedPermissionId":131,
"value":true
},
{
"groupedPermissionId":58,
"value":true
},
{
"groupedPermissionId":130,
"value":true
},
{
"groupedPermissionId":86,
"value":true
},
{
"groupedPermissionId":68,
"value":true
},
{
"groupedPermissionId":146,
"value":true
},
{
"groupedPermissionId":156,
"value":true
},
{
"groupedPermissionId":31,
"value":true
},
{
"groupedPermissionId":71,
"value":true
},
{
"groupedPermissionId":54,
"value":true
},
{
"groupedPermissionId":16,
"value":true
},
{
"groupedPermissionId":144,
"value":true
},
{
"groupedPermissionId":45,
"value":true
},
{
"groupedPermissionId":15,
"value":true
},
{
"groupedPermissionId":163,
"value":true
},
{
"groupedPermissionId":111,
"value":true
},
{
"groupedPermissionId":152,
"value":true
},
{
"groupedPermissionId":159,
"value":true
},
{
"groupedPermissionId":107,
"value":true
},
{
"groupedPermissionId":102,
"value":true
},
{
"groupedPermissionId":133,
"value":true
},
{
"groupedPermissionId":100,
"value":true
},
{
"groupedPermissionId":6,
"value":true
},
{
"groupedPermissionId":23,
"value":true
},
{
"groupedPermissionId":13,
"value":true
},
{
"groupedPermissionId":38,
"value":true
},
{
"groupedPermissionId":92,
"value":true
},
{
"groupedPermissionId":129,
"value":true
},
{
"groupedPermissionId":62,
"value":true
},
{
"groupedPermissionId":2,
"value":true
},
{
"groupedPermissionId":7,
"value":true
},
{
"groupedPermissionId":75,
"value":true
},
{
"groupedPermissionId":73,
"value":true
},
{
"groupedPermissionId":25,
"value":true
},
{
"groupedPermissionId":139,
"value":true
},
{
"groupedPermissionId":82,
"value":true
},
{
"groupedPermissionId":117,
"value":true
},
{
"groupedPermissionId":44,
"value":true
},
{
"groupedPermissionId":157,
"value":true
},
{
"groupedPermissionId":46,
"value":true
},
{
"groupedPermissionId":118,
"value":true
},
{
"groupedPermissionId":142,
"value":true
},
{
"groupedPermissionId":72,
"value":true
},
{
"groupedPermissionId":138,
"value":true
},
{
"groupedPermissionId":122,
"value":true
},
{
"groupedPermissionId":136,
"value":true
},
{
"groupedPermissionId":95,
"value":true
},
{
"groupedPermissionId":79,
"value":true
},
{
"groupedPermissionId":8,
"value":true
},
{
"groupedPermissionId":145,
"value":true
},
{
"groupedPermissionId":61,
"value":true
},
{
"groupedPermissionId":49,
"value":true
},
{
"groupedPermissionId":66,
"value":true
},
{
"groupedPermissionId":110,
"value":true
},
{
"groupedPermissionId":101,
"value":true
},
{
"groupedPermissionId":81,
"value":true
},
{
"groupedPermissionId":154,
"value":true
},
{
"groupedPermissionId":94,
"value":true
},
{
"groupedPermissionId":41,
"value":true
},
{
"groupedPermissionId":113,
"value":true
},
{
"groupedPermissionId":134,
"value":true
},
{
"groupedPermissionId":103,
"value":true
},
{
"groupedPermissionId":18,
"value":true
},
{
"groupedPermissionId":83,
"value":true
},
{
"groupedPermissionId":28,
"value":true
},
{
"groupedPermissionId":3,
"value":true
},
{
"groupedPermissionId":53,
"value":true
},
{
"groupedPermissionId":40,
"value":true
},
{
"groupedPermissionId":27,
"value":true
},
{
"groupedPermissionId":150,
"value":true
},
{
"groupedPermissionId":69,
"value":true
},
{
"groupedPermissionId":119,
"value":true
},
{
"groupedPermissionId":78,
"value":true
},
{
"groupedPermissionId":109,
"value":true
},
{
"groupedPermissionId":57,
"value":true
},
{
"groupedPermissionId":151,
"value":true
},
{
"groupedPermissionId":80,
"value":true
},
{
"groupedPermissionId":76,
"value":true
},
{
"groupedPermissionId":93,
"value":true
},
{
"groupedPermissionId":112,
"value":true
},
{
"groupedPermissionId":4,
"value":true
},
{
"groupedPermissionId":164,
"value":true
},
{
"groupedPermissionId":24,
"value":true
},
{
"groupedPermissionId":149,
"value":true
},
{
"groupedPermissionId":33,
"value":true
}
]
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:31 GMT
<com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
<trafficEmployeeId>1</trafficEmployeeId>
<applicationPermissionsTO id="4" version="0" dateCreated="2016-10-05T12:18:13.898+02:00">
<groupedPermissions>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>159</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>40</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>108</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>138</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>130</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>145</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>139</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>136</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>103</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>29</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>97</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>115</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>46</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>51</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>36</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>22</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>7</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>27</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>47</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>95</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>144</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>43</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>107</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>134</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>121</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>167</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>148</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>164</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>76</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>96</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>44</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>12</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>73</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>154</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>19</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>120</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>168</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>166</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>160</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>162</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>5</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>91</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>105</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>66</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>113</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>10</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>142</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>15</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>89</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>61</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>75</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>141</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>17</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>70</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>140</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>35</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>23</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>118</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>59</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>26</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>56</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>137</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>63</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>102</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>81</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>86</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>4</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>50</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>153</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>58</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>13</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>20</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>65</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>68</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>3</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>52</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>98</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>85</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>156</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>150</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>77</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>163</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>123</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>119</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>133</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>84</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>132</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>62</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>117</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>124</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>54</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>60</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>92</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>71</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>90</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>33</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>32</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>28</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>158</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>82</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>42</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>109</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>114</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>41</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>11</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>2</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>72</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>112</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>161</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>21</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>110</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>94</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>87</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>55</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>99</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>131</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>122</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>128</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>106</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>146</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>69</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>49</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>157</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>6</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>80</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>93</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>64</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>53</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>16</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>45</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>24</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>129</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>34</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>79</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>30</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>111</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>104</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>1</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>18</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>9</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>126</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>101</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>39</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>127</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>48</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>169</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>135</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>155</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>8</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>116</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>67</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>25</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>74</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>83</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>147</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>88</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>78</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>143</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>125</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>149</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>165</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>151</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>14</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>37</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>100</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>38</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>152</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>57</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
<groupedPermissionId>31</groupedPermissionId>
<value>true</value>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.ApplicationGroupedPermissionRecordTO>
</groupedPermissions>
<globalPermissions id="10" version="4" dateCreated="2016-10-05T12:18:20.878+02:00" dateModified="2016-10-05T12:26:31.622+02:00">
<viewStaffSalaries>false</viewStaffSalaries>
<viewProfitNumbers>false</viewProfitNumbers>
<storesTime>true</storesTime>
<unlimitedIssueInvoiceValue>true</unlimitedIssueInvoiceValue>
<unlimitedIssuePurchaseOrderValue>true</unlimitedIssuePurchaseOrderValue>
<unlimitedIssueQuoteValue>true</unlimitedIssueQuoteValue>
<canChangeAllocationIntervalStatus>false</canChangeAllocationIntervalStatus>
<configurableNotificationRecords>
<configurableNotificationRecord id="40" version="0" dateCreated="2016-10-05T12:26:31.617+02:00">
<notificationType>CREATE_OR_MODIFY_PENDING_ALLOCATION</notificationType>
<value>false</value>
</configurableNotificationRecord>
</configurableNotificationRecords>
<restrictedClientTags/>
</globalPermissions>
</applicationPermissionsTO>
</com.sohnar.trafficlite.transfer.trafficcompany.admin.EmployeeApplicationPermissionsTO>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:29 GMT
{
"trafficEmployeeId":1,
"applicationPermissionsTO":{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.898+0000",
"dateModified":null,
"lastUpdatedUserId":null,
"groupedPermissions":[
{
"groupedPermissionId":41,
"value":true
},
{
"groupedPermissionId":25,
"value":true
},
{
"groupedPermissionId":153,
"value":true
},
{
"groupedPermissionId":55,
"value":true
},
{
"groupedPermissionId":51,
"value":true
},
{
"groupedPermissionId":16,
"value":true
},
{
"groupedPermissionId":22,
"value":true
},
{
"groupedPermissionId":116,
"value":true
},
{
"groupedPermissionId":169,
"value":true
},
{
"groupedPermissionId":65,
"value":true
},
{
"groupedPermissionId":78,
"value":true
},
{
"groupedPermissionId":90,
"value":true
},
{
"groupedPermissionId":98,
"value":true
},
{
"groupedPermissionId":23,
"value":true
},
{
"groupedPermissionId":69,
"value":true
},
{
"groupedPermissionId":9,
"value":true
},
{
"groupedPermissionId":28,
"value":true
},
{
"groupedPermissionId":43,
"value":true
},
{
"groupedPermissionId":113,
"value":true
},
{
"groupedPermissionId":33,
"value":true
},
{
"groupedPermissionId":146,
"value":true
},
{
"groupedPermissionId":105,
"value":true
},
{
"groupedPermissionId":99,
"value":true
},
{
"groupedPermissionId":13,
"value":true
},
{
"groupedPermissionId":31,
"value":true
},
{
"groupedPermissionId":7,
"value":true
},
{
"groupedPermissionId":86,
"value":true
},
{
"groupedPermissionId":4,
"value":true
},
{
"groupedPermissionId":155,
"value":true
},
{
"groupedPermissionId":140,
"value":true
},
{
"groupedPermissionId":144,
"value":true
},
{
"groupedPermissionId":123,
"value":true
},
{
"groupedPermissionId":30,
"value":true
},
{
"groupedPermissionId":57,
"value":true
},
{
"groupedPermissionId":76,
"value":true
},
{
"groupedPermissionId":15,
"value":true
},
{
"groupedPermissionId":38,
"value":true
},
{
"groupedPermissionId":79,
"value":true
},
{
"groupedPermissionId":75,
"value":true
},
{
"groupedPermissionId":117,
"value":true
},
{
"groupedPermissionId":128,
"value":true
},
{
"groupedPermissionId":154,
"value":true
},
{
"groupedPermissionId":49,
"value":true
},
{
"groupedPermissionId":167,
"value":true
},
{
"groupedPermissionId":52,
"value":true
},
{
"groupedPermissionId":118,
"value":true
},
{
"groupedPermissionId":66,
"value":true
},
{
"groupedPermissionId":63,
"value":true
},
{
"groupedPermissionId":72,
"value":true
},
{
"groupedPermissionId":74,
"value":true
},
{
"groupedPermissionId":101,
"value":true
},
{
"groupedPermissionId":95,
"value":true
},
{
"groupedPermissionId":160,
"value":true
},
{
"groupedPermissionId":32,
"value":true
},
{
"groupedPermissionId":130,
"value":true
},
{
"groupedPermissionId":149,
"value":true
},
{
"groupedPermissionId":54,
"value":true
},
{
"groupedPermissionId":132,
"value":true
},
{
"groupedPermissionId":82,
"value":true
},
{
"groupedPermissionId":80,
"value":true
},
{
"groupedPermissionId":37,
"value":true
},
{
"groupedPermissionId":20,
"value":true
},
{
"groupedPermissionId":18,
"value":true
},
{
"groupedPermissionId":48,
"value":true
},
{
"groupedPermissionId":89,
"value":true
},
{
"groupedPermissionId":42,
"value":true
},
{
"groupedPermissionId":157,
"value":true
},
{
"groupedPermissionId":151,
"value":true
},
{
"groupedPermissionId":24,
"value":true
},
{
"groupedPermissionId":133,
"value":true
},
{
"groupedPermissionId":124,
"value":true
},
{
"groupedPermissionId":97,
"value":true
},
{
"groupedPermissionId":93,
"value":true
},
{
"groupedPermissionId":36,
"value":true
},
{
"groupedPermissionId":107,
"value":true
},
{
"groupedPermissionId":162,
"value":true
},
{
"groupedPermissionId":3,
"value":true
},
{
"groupedPermissionId":115,
"value":true
},
{
"groupedPermissionId":96,
"value":true
},
{
"groupedPermissionId":68,
"value":true
},
{
"groupedPermissionId":35,
"value":true
},
{
"groupedPermissionId":145,
"value":true
},
{
"groupedPermissionId":60,
"value":true
},
{
"groupedPermissionId":142,
"value":true
},
{
"groupedPermissionId":121,
"value":true
},
{
"groupedPermissionId":112,
"value":true
},
{
"groupedPermissionId":67,
"value":true
},
{
"groupedPermissionId":159,
"value":true
},
{
"groupedPermissionId":71,
"value":true
},
{
"groupedPermissionId":8,
"value":true
},
{
"groupedPermissionId":64,
"value":true
},
{
"groupedPermissionId":50,
"value":true
},
{
"groupedPermissionId":138,
"value":true
},
{
"groupedPermissionId":114,
"value":true
},
{
"groupedPermissionId":45,
"value":true
},
{
"groupedPermissionId":158,
"value":true
},
{
"groupedPermissionId":12,
"value":true
},
{
"groupedPermissionId":81,
"value":true
},
{
"groupedPermissionId":92,
"value":true
},
{
"groupedPermissionId":150,
"value":true
},
{
"groupedPermissionId":11,
"value":true
},
{
"groupedPermissionId":122,
"value":true
},
{
"groupedPermissionId":61,
"value":true
},
{
"groupedPermissionId":164,
"value":true
},
{
"groupedPermissionId":108,
"value":true
},
{
"groupedPermissionId":161,
"value":true
},
{
"groupedPermissionId":27,
"value":true
},
{
"groupedPermissionId":137,
"value":true
},
{
"groupedPermissionId":135,
"value":true
},
{
"groupedPermissionId":87,
"value":true
},
{
"groupedPermissionId":131,
"value":true
},
{
"groupedPermissionId":129,
"value":true
},
{
"groupedPermissionId":156,
"value":true
},
{
"groupedPermissionId":134,
"value":true
},
{
"groupedPermissionId":10,
"value":true
},
{
"groupedPermissionId":141,
"value":true
},
{
"groupedPermissionId":110,
"value":true
},
{
"groupedPermissionId":5,
"value":true
},
{
"groupedPermissionId":70,
"value":true
},
{
"groupedPermissionId":73,
"value":true
},
{
"groupedPermissionId":44,
"value":true
},
{
"groupedPermissionId":127,
"value":true
},
{
"groupedPermissionId":139,
"value":true
},
{
"groupedPermissionId":163,
"value":true
},
{
"groupedPermissionId":136,
"value":true
},
{
"groupedPermissionId":40,
"value":true
},
{
"groupedPermissionId":56,
"value":true
},
{
"groupedPermissionId":85,
"value":true
},
{
"groupedPermissionId":2,
"value":true
},
{
"groupedPermissionId":106,
"value":true
},
{
"groupedPermissionId":94,
"value":true
},
{
"groupedPermissionId":21,
"value":true
},
{
"groupedPermissionId":6,
"value":true
},
{
"groupedPermissionId":100,
"value":true
},
{
"groupedPermissionId":119,
"value":true
},
{
"groupedPermissionId":109,
"value":true
},
{
"groupedPermissionId":34,
"value":true
},
{
"groupedPermissionId":103,
"value":true
},
{
"groupedPermissionId":88,
"value":true
},
{
"groupedPermissionId":46,
"value":true
},
{
"groupedPermissionId":120,
"value":true
},
{
"groupedPermissionId":91,
"value":true
},
{
"groupedPermissionId":168,
"value":true
},
{
"groupedPermissionId":84,
"value":true
},
{
"groupedPermissionId":152,
"value":true
},
{
"groupedPermissionId":53,
"value":true
},
{
"groupedPermissionId":59,
"value":true
},
{
"groupedPermissionId":143,
"value":true
},
{
"groupedPermissionId":126,
"value":true
},
{
"groupedPermissionId":83,
"value":true
},
{
"groupedPermissionId":14,
"value":true
},
{
"groupedPermissionId":47,
"value":true
},
{
"groupedPermissionId":17,
"value":true
},
{
"groupedPermissionId":102,
"value":true
},
{
"groupedPermissionId":77,
"value":true
},
{
"groupedPermissionId":165,
"value":true
},
{
"groupedPermissionId":29,
"value":true
},
{
"groupedPermissionId":125,
"value":true
},
{
"groupedPermissionId":104,
"value":true
},
{
"groupedPermissionId":111,
"value":true
},
{
"groupedPermissionId":19,
"value":true
},
{
"groupedPermissionId":39,
"value":true
},
{
"groupedPermissionId":62,
"value":true
},
{
"groupedPermissionId":58,
"value":true
},
{
"groupedPermissionId":166,
"value":true
},
{
"groupedPermissionId":1,
"value":true
},
{
"groupedPermissionId":26,
"value":true
},
{
"groupedPermissionId":147,
"value":true
},
{
"groupedPermissionId":148,
"value":true
}
],
"globalPermissions":{
"id":10,
"version":2,
"dateCreated":"2016-10-05T10:18:20.878+0000",
"dateModified":"2016-10-05T10:26:30.227+0000",
"viewStaffSalaries":false,
"viewProfitNumbers":false,
"storesTime":true,
"unlimitedIssueInvoiceValue":true,
"maxIssueInvoiceValue":null,
"unlimitedIssuePurchaseOrderValue":true,
"maxIssuePurchaseOrderValue":null,
"unlimitedIssueQuoteValue":true,
"maxIssueQuoteValue":null,
"canChangeAllocationIntervalStatus":false,
"configurableNotificationRecords":[
{
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:26:30.218+0000",
"dateModified":null,
"notificationType":"CREATE_OR_MODIFY_PENDING_ALLOCATION",
"value":false
}
],
"restrictedClientTags":[
]
}
}
}
Returns page of Department objects.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/department
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:26 GMT
<pagedResult maxResults="3" windowSize="5" currentPage="1">
<trafficDepartment id="3" version="0" dateCreated="2016-10-05T12:18:13.785+02:00">
<name>Translations</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:9-b3b5-3</externalCode>
</trafficDepartment>
<trafficDepartment id="2" version="0" dateCreated="2016-10-05T12:18:13.778+02:00">
<name>Sales/Marketing</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:b5-9d40-</externalCode>
</trafficDepartment>
<trafficDepartment id="1" version="0" dateCreated="2016-10-05T12:18:13.765+02:00">
<name>Development</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
</trafficDepartment>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:26 GMT
{
"maxResults":3,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficDepartmentTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:13.785+0000",
"dateModified":null,
"name":"Translations",
"ownerCompanyId":1,
"externalCode":"externalCode:9-b3b5-3"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficDepartmentTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:13.778+0000",
"dateModified":null,
"name":"Sales/Marketing",
"ownerCompanyId":1,
"externalCode":"externalCode:b5-9d40-"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficDepartmentTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.765+0000",
"dateModified":null,
"name":"Development",
"ownerCompanyId":1,
"externalCode":"externalCode:4b4f-842"
}
],
"windowSize":5,
"currentPage":1
}
Returns single Department object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/department/{id}
| name | description | default |
|---|---|---|
| id | Department's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/department/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/department/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:32 GMT
<trafficDepartment id="1" version="0" dateCreated="2016-10-05T12:18:13.765+02:00">
<name>Development</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
</trafficDepartment>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:32 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.765+0000",
"dateModified":null,
"name":"Development",
"ownerCompanyId":1,
"externalCode":"externalCode:4b4f-842"
}
Deletes Department object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/department/{id}
| name | description | default |
|---|---|---|
| id | TrafficDepartment's id. |
DELETE /TrafficLiteServer/openapi/staff/department/9 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:26:32 GMT
Updates department with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/department
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficDepartment id="1" version="1" dateCreated="2016-10-05T12:18:13.765+02:00" dateModified="2016-10-05T12:26:33.374+02:00">
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
<name>UPDATED Name 0.5537237104864949</name>
</trafficDepartment>
POST /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:13.765+0000",
"externalCode":"externalCode:4b4f-842",
"ownerCompanyId":1,
"name":"UPDATED Name 0.39022251084205706",
"dateModified":null,
"id":1,
"version":0
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:33 GMT
<trafficDepartment id="1" version="2" dateCreated="2016-10-05T12:18:13.765+02:00" dateModified="2016-10-05T12:26:33.735+02:00">
<name>UPDATED Name 0.5537237104864949</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
</trafficDepartment>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:32 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.765+0000",
"dateModified":"2016-10-05T10:26:33.374+0000",
"name":"UPDATED Name 0.39022251084205706",
"ownerCompanyId":1,
"externalCode":"externalCode:4b4f-842"
}
Adds submitted department and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/department
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficDepartment id="-1" version="-1" dateCreated="2016-10-05T12:18:13.765+02:00">
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
<name>NEW Department 0.9514186742798078</name>
</trafficDepartment>
PUT /TrafficLiteServer/openapi/staff/department HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:13.765+0000",
"externalCode":"externalCode:4b4f-842",
"ownerCompanyId":1,
"name":"NEW Department 0.08438665745329266",
"id":"-1",
"version":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:27 GMT
<trafficDepartment id="7" version="0" dateCreated="2016-10-05T12:26:27.636+02:00">
<name>NEW Department 0.9514186742798078</name>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:4b4f-842</externalCode>
</trafficDepartment>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:26 GMT
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:26:27.352+0000",
"dateModified":null,
"name":"NEW Department 0.08438665745329266",
"ownerCompanyId":1,
"externalCode":"externalCode:4b4f-842"
}
Returns page of Location objects.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/location
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:21 GMT
<pagedResult maxResults="7" windowSize="5" currentPage="1">
<trafficCompanyLocation id="7" version="0" dateCreated="2016-10-05T12:18:13.757+02:00">
<name>Berlin</name>
<phone1>phone1:ae-a7c7-</phone1>
<phone2>phone2:dd-9a07-</phone2>
<phoneFax>phoneFax:cd-9ba6-</phoneFax>
<email>email:dd-aa90-</email>
<website>website:b0-94e8-</website>
<address id="7" version="0" dateCreated="2016-10-05T12:18:13.756+02:00">
<addressName>addressName:32b08197</addressName>
<lineOne>
</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Berlin</lineThree>
<city>city:90f5b29e</city>
<postCode>
</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:fe-acaa-</externalCode>
</trafficCompanyLocation>
<trafficCompanyLocation id="6" version="0" dateCreated="2016-10-05T12:18:13.749+02:00">
<name>Rome</name>
<phone1>phone1:c505-b2f</phone1>
<phone2>phone2:b8f3-2a3</phone2>
<phoneFax>phoneFax:b4d3-b0b</phoneFax>
<email>email:0a7e-f9a</email>
<website>website:5044-636</website>
<address id="6" version="0" dateCreated="2016-10-05T12:18:13.748+02:00">
<addressName>addressName:1134-472</addressName>
<lineOne>
</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Rome</lineThree>
<city>city:4c79-9c3</city>
<postCode>
</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:7e6f-35a</externalCode>
</trafficCompanyLocation>
<trafficCompanyLocation id="5" version="0" dateCreated="2016-10-05T12:18:13.742+02:00">
<name>Paris</name>
<phone1>phone1:d-867cdd</phone1>
<phone2>phone2:0-a9fc5b</phone2>
<phoneFax>phoneFax:b-cf2c0f</phoneFax>
<email>email:fd-045db</email>
<website>website:8-b0975c</website>
<address id="5" version="0" dateCreated="2016-10-05T12:18:13.741+02:00">
<addressName>addressName:e-bf5df0</addressName>
<lineOne>
</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Paris</lineThree>
<city>city:e-d18ff1</city>
<postCode>
</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:de-c4a20</externalCode>
</trafficCompanyLocation>
<trafficCompanyLocation id="4" version="0" dateCreated="2016-10-05T12:18:13.733+02:00">
<name>Madrid</name>
<phone1>phone1:1e482eb2</phone1>
<phone2>phone2:2ea6d2cd</phone2>
<phoneFax>phoneFax:709fef8b</phoneFax>
<email>email:99380065</email>
<website>website:2935110b</website>
<address id="4" version="0" dateCreated="2016-10-05T12:18:13.731+02:00">
<addressName>addressName:dcd2280d</addressName>
<lineOne>
</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Madrid</lineThree>
<city>city:6b861ec1</city>
<postCode>
</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:ab6add84</externalCode>
</trafficCompanyLocation>
<trafficCompanyLocation id="3" version="0" dateCreated="2016-10-05T12:18:13.723+02:00">
<name>Washington</name>
<phone1>phone1:78fb02-6</phone1>
<phone2>phone2:530ea2-8</phone2>
<phoneFax>phoneFax:4b1f21-b</phoneFax>
<email>email:f7b346-4</email>
<website>website:23e0ee-d</website>
<address id="3" version="0" dateCreated="2016-10-05T12:18:13.721+02:00">
<addressName>addressName:9be8a6-e</addressName>
<lineOne>
</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Washington</lineThree>
<city>city:af2c93-3</city>
<postCode>
</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:1a7605-2</externalCode>
</trafficCompanyLocation>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:21 GMT
{
"maxResults":7,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficCompanyLocationTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:13.757+0000",
"dateModified":null,
"name":"Berlin",
"phone1":"phone1:ae-a7c7-",
"phone2":"phone2:dd-9a07-",
"phoneFax":"phoneFax:cd-9ba6-",
"email":"email:dd-aa90-",
"website":"website:b0-94e8-",
"address":{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:13.756+0000",
"dateModified":null,
"addressName":"addressName:32b08197",
"lineOne":"",
"lineTwo":"",
"lineThree":"Berlin",
"city":"city:90f5b29e",
"postCode":"",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:fe-acaa-"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficCompanyLocationTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.749+0000",
"dateModified":null,
"name":"Rome",
"phone1":"phone1:c505-b2f",
"phone2":"phone2:b8f3-2a3",
"phoneFax":"phoneFax:b4d3-b0b",
"email":"email:0a7e-f9a",
"website":"website:5044-636",
"address":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.748+0000",
"dateModified":null,
"addressName":"addressName:1134-472",
"lineOne":"",
"lineTwo":"",
"lineThree":"Rome",
"city":"city:4c79-9c3",
"postCode":"",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:7e6f-35a"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficCompanyLocationTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:13.742+0000",
"dateModified":null,
"name":"Paris",
"phone1":"phone1:d-867cdd",
"phone2":"phone2:0-a9fc5b",
"phoneFax":"phoneFax:b-cf2c0f",
"email":"email:fd-045db",
"website":"website:8-b0975c",
"address":{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:13.741+0000",
"dateModified":null,
"addressName":"addressName:e-bf5df0",
"lineOne":"",
"lineTwo":"",
"lineThree":"Paris",
"city":"city:e-d18ff1",
"postCode":"",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:de-c4a20"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficCompanyLocationTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.733+0000",
"dateModified":null,
"name":"Madrid",
"phone1":"phone1:1e482eb2",
"phone2":"phone2:2ea6d2cd",
"phoneFax":"phoneFax:709fef8b",
"email":"email:99380065",
"website":"website:2935110b",
"address":{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.731+0000",
"dateModified":null,
"addressName":"addressName:dcd2280d",
"lineOne":"",
"lineTwo":"",
"lineThree":"Madrid",
"city":"city:6b861ec1",
"postCode":"",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:ab6add84"
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.TrafficCompanyLocationTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:13.723+0000",
"dateModified":null,
"name":"Washington",
"phone1":"phone1:78fb02-6",
"phone2":"phone2:530ea2-8",
"phoneFax":"phoneFax:4b1f21-b",
"email":"email:f7b346-4",
"website":"website:23e0ee-d",
"address":{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:13.721+0000",
"dateModified":null,
"addressName":"addressName:9be8a6-e",
"lineOne":"",
"lineTwo":"",
"lineThree":"Washington",
"city":"city:af2c93-3",
"postCode":"",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:1a7605-2"
}
],
"windowSize":5,
"currentPage":1
}
Returns single Location object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/location/{id}
| name | description | default |
|---|---|---|
| id | Location's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/location/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/location/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:38 GMT
<trafficCompanyLocation id="1" version="2" dateCreated="2016-10-05T12:18:13.699+02:00" dateModified="2016-10-05T12:26:28.573+02:00">
<name>UPD Name 0.2899567023143218</name>
<phone1>phone1:0-993b72</phone1>
<phone2>phone2:c-b4a468</phone2>
<phoneFax>phoneFax:6-6d5487</phoneFax>
<email>email:5-76eb87</email>
<website>website:d-63b79c</website>
<address id="1" version="2" dateCreated="2016-10-05T12:18:13.691+02:00" dateModified="2016-10-05T12:26:28.573+02:00">
<addressName>UPD Address Name 0.16391961762397145</addressName>
<lineOne>1 Glenthorne Mews</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Hammersmith</lineThree>
<city>city:-8585-40</city>
<postCode>W6 0LJ</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:3-41f4fb</externalCode>
</trafficCompanyLocation>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:38 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:13.699+0000",
"dateModified":"2016-10-05T10:26:28.573+0000",
"name":"UPD Name 0.2899567023143218",
"phone1":"phone1:0-993b72",
"phone2":"phone2:c-b4a468",
"phoneFax":"phoneFax:6-6d5487",
"email":"email:5-76eb87",
"website":"website:d-63b79c",
"address":{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:13.691+0000",
"dateModified":"2016-10-05T10:26:28.573+0000",
"addressName":"UPD Address Name 0.16391961762397145",
"lineOne":"1 Glenthorne Mews",
"lineTwo":"",
"lineThree":"Hammersmith",
"city":"city:-8585-40",
"postCode":"W6 0LJ",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:3-41f4fb"
}
Deletes Company Location object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/location/{id}
| name | description | default |
|---|---|---|
| id | TrafficCompanyLocation's id. |
DELETE /TrafficLiteServer/openapi/staff/location/13 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:26:34 GMT
Updates location with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/location
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficCompanyLocation id="1" version="1" dateCreated="2016-10-05T12:18:13.699+02:00" dateModified="2016-10-05T12:26:28.045+02:00">
<phone1>phone1:0-993b72</phone1>
<phone2>phone2:c-b4a468</phone2>
<phoneFax>phoneFax:6-6d5487</phoneFax>
<email>email:5-76eb87</email>
<website>website:d-63b79c</website>
<address id="1" version="1" dateCreated="2016-10-05T12:18:13.691+02:00" dateModified="2016-10-05T12:26:28.045+02:00">
<lineOne>1 Glenthorne Mews</lineOne>
<lineTwo />
<lineThree>Hammersmith</lineThree>
<city>city:-8585-40</city>
<postCode>W6 0LJ</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
<addressName>UPD Address Name 0.16391961762397145</addressName>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:3-41f4fb</externalCode>
<name>UPD Name 0.2899567023143218</name>
</trafficCompanyLocation>
POST /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"website":"website:d-63b79c",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:13.691+0000",
"lineTwo":"",
"city":"city:-8585-40",
"lineOne":"1 Glenthorne Mews",
"dateModified":null,
"addressName":"UPD Address Name 0.23829448184270074",
"postCode":"W6 0LJ",
"id":1,
"lineThree":"Hammersmith",
"version":0
},
"externalCode":"externalCode:3-41f4fb",
"phone2":"phone2:c-b4a468",
"dateModified":null,
"version":0,
"phone1":"phone1:0-993b72",
"dateCreated":"2016-10-05T10:18:13.699+0000",
"ownerCompanyId":1,
"name":"UPD Name 0.5837576484374819",
"id":1,
"phoneFax":"phoneFax:6-6d5487",
"email":"email:5-76eb87"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:28 GMT
<trafficCompanyLocation id="1" version="2" dateCreated="2016-10-05T12:18:13.699+02:00" dateModified="2016-10-05T12:26:28.573+02:00">
<name>UPD Name 0.2899567023143218</name>
<phone1>phone1:0-993b72</phone1>
<phone2>phone2:c-b4a468</phone2>
<phoneFax>phoneFax:6-6d5487</phoneFax>
<email>email:5-76eb87</email>
<website>website:d-63b79c</website>
<address id="1" version="2" dateCreated="2016-10-05T12:18:13.691+02:00" dateModified="2016-10-05T12:26:28.573+02:00">
<addressName>UPD Address Name 0.16391961762397145</addressName>
<lineOne>1 Glenthorne Mews</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Hammersmith</lineThree>
<city>city:-8585-40</city>
<postCode>W6 0LJ</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:3-41f4fb</externalCode>
</trafficCompanyLocation>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:27 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.699+0000",
"dateModified":"2016-10-05T10:26:28.045+0000",
"name":"UPD Name 0.5837576484374819",
"phone1":"phone1:0-993b72",
"phone2":"phone2:c-b4a468",
"phoneFax":"phoneFax:6-6d5487",
"email":"email:5-76eb87",
"website":"website:d-63b79c",
"address":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.691+0000",
"dateModified":"2016-10-05T10:26:28.045+0000",
"addressName":"UPD Address Name 0.23829448184270074",
"lineOne":"1 Glenthorne Mews",
"lineTwo":"",
"lineThree":"Hammersmith",
"city":"city:-8585-40",
"postCode":"W6 0LJ",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:3-41f4fb"
}
Adds submitted location and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/location
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<trafficCompanyLocation id="-1" version="-1" dateCreated="2016-10-05T12:18:13.699+02:00">
<phone1>phone1:0-993b72</phone1>
<phone2>phone2:c-b4a468</phone2>
<phoneFax>phoneFax:6-6d5487</phoneFax>
<email>email:5-76eb87</email>
<website>website:d-63b79c</website>
<address id="-1" version="-1" dateCreated="2016-10-05T12:18:13.691+02:00">
<lineOne>1 Glenthorne Mews</lineOne>
<lineTwo />
<lineThree>Hammersmith</lineThree>
<city>city:-8585-40</city>
<postCode>W6 0LJ</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
<addressName>NEW Address 0.8519299088189207</addressName>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:3-41f4fb</externalCode>
<name>NEW Location 0.6184403049257542</name>
</trafficCompanyLocation>
PUT /TrafficLiteServer/openapi/staff/location HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"website":"website:d-63b79c",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:13.691+0000",
"lineTwo":"",
"city":"city:-8585-40",
"lineOne":"1 Glenthorne Mews",
"addressName":"NEW Address 0.1308419187379487",
"postCode":"W6 0LJ",
"id":"-1",
"lineThree":"Hammersmith",
"version":"-1"
},
"dateCreated":"2016-10-05T10:18:13.699+0000",
"externalCode":"externalCode:3-41f4fb",
"ownerCompanyId":1,
"phone2":"phone2:c-b4a468",
"name":"NEW Location 0.15480961285798944",
"id":"-1",
"version":"-1",
"phoneFax":"phoneFax:6-6d5487",
"email":"email:5-76eb87",
"phone1":"phone1:0-993b72"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:28 GMT
<trafficCompanyLocation id="11" version="0" dateCreated="2016-10-05T12:26:29.405+02:00">
<name>NEW Location 0.6184403049257542</name>
<phone1>phone1:0-993b72</phone1>
<phone2>phone2:c-b4a468</phone2>
<phoneFax>phoneFax:6-6d5487</phoneFax>
<email>email:5-76eb87</email>
<website>website:d-63b79c</website>
<address id="26" version="0" dateCreated="2016-10-05T12:26:29.403+02:00">
<addressName>NEW Address 0.8519299088189207</addressName>
<lineOne>1 Glenthorne Mews</lineOne>
<lineTwo>
</lineTwo>
<lineThree>Hammersmith</lineThree>
<city>city:-8585-40</city>
<postCode>W6 0LJ</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<ownerCompanyId>1</ownerCompanyId>
<externalCode>externalCode:3-41f4fb</externalCode>
</trafficCompanyLocation>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:28 GMT
{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:26:29.121+0000",
"dateModified":null,
"name":"NEW Location 0.15480961285798944",
"phone1":"phone1:0-993b72",
"phone2":"phone2:c-b4a468",
"phoneFax":"phoneFax:6-6d5487",
"email":"email:5-76eb87",
"website":"website:d-63b79c",
"address":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:26:29.120+0000",
"dateModified":null,
"addressName":"NEW Address 0.1308419187379487",
"lineOne":"1 Glenthorne Mews",
"lineTwo":"",
"lineThree":"Hammersmith",
"city":"city:-8585-40",
"postCode":"W6 0LJ",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"ownerCompanyId":1,
"externalCode":"externalCode:3-41f4fb"
}
Returns page of Job objects.
https://api.sohnar.com/TrafficLiteServer/openapi/job
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/job?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/job?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:14 GMT
<pagedResult maxResults="32" windowSize="2" currentPage="1">
<job id="32" version="0" dateCreated="2016-10-05T12:26:09.595+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J32</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>44</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>NEW Reference 0.4095866733008582</clientReference>
<billableJob>true</billableJob>
<externalCode>NEW ExtCode 0.03974737624299274</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks/>
<jobThirdPartyCosts/>
<jobExpenses/>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</job>
<job id="31" version="0" dateCreated="2016-10-05T12:26:08.236+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J31</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>43</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>NEW Reference 0.4480436465529263</clientReference>
<billableJob>true</billableJob>
<externalCode>NEW ExtCode 0.7637530938276333</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks/>
<jobThirdPartyCosts/>
<jobExpenses/>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</job>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:13 GMT
{
"maxResults":32,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTO",
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:26:09.595+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J32",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":44,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"NEW Reference 0.4095866733008582",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"NEW ExtCode 0.03974737624299274",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
],
"jobThirdPartyCosts":[
],
"jobExpenses":[
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":"externalData:9-994d-4",
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTO",
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:26:08.236+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J31",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":43,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"NEW Reference 0.4480436465529263",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"NEW ExtCode 0.7637530938276333",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
],
"jobThirdPartyCosts":[
],
"jobExpenses":[
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":"externalData:9-994d-4",
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
}
],
"windowSize":2,
"currentPage":1
}
Returns single Job object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/job/{id}
| name | description | default |
|---|---|---|
| id | Job's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/job/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/job/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:13 GMT
<job id="1" version="4" dateCreated="2016-10-05T12:18:36.890+02:00" dateModified="2016-10-05T12:26:06.256+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J1</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>1</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:a-fba5-4</clientReference>
<billableJob>true</billableJob>
<externalCode>UPD Ext Code 0.4522422511370032</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="2" version="1" dateCreated="2016-10-05T12:18:36.896+02:00" dateModified="2016-10-05T12:26:03.364+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:-a36e-37</externalNote>
<internalNote>internalNote:-bfa3-46</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-949f-0f</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-311204763</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92754197</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="3" version="1" dateCreated="2016-10-05T12:18:36.899+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:b-a08a-c</externalNote>
<internalNote>internalNote:c-a2cb-7</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:7-979f-f</externalData>
<jobId>1</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312743758</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="1" version="1" dateCreated="2016-10-05T12:18:36.894+02:00" dateModified="2016-10-05T12:26:03.362+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:d1-74db-</externalNote>
<internalNote>internalNote:0f-864e-</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4e-6776-</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-20T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-310050516</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92781073</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="4" version="1" dateCreated="2016-10-05T12:18:36.902+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:95ed3-1a</externalNote>
<internalNote>internalNote:68745-c2</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:9f37f-15</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312359010</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="1" version="1" dateCreated="2016-10-05T12:18:36.905+02:00" dateModified="2016-10-05T12:26:03.366+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:16-bbe8-</externalNote>
<internalNote>internalNote:4e-fe4a-</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:f9-6d5f-</externalData>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="0" dateCreated="2016-10-05T12:19:03.174+02:00">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="1" version="0" dateCreated="2016-10-05T12:18:36.892+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:a9f5-1a8</externalNote>
<internalNote>internalNote:9f9d-95b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:91a3-660</externalData>
<jobId>
<id>1</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</job>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:13 GMT
{
"id":1,
"version":4,
"dateCreated":"2016-10-05T10:18:36.890+0000",
"dateModified":"2016-10-05T10:26:06.256+0000",
"lastUpdatedUserId":21,
"jobNumber":"J1",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":1,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"clientReference:a-fba5-4",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"UPD Ext Code 0.4522422511370032",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:18:36.896+0000",
"dateModified":"2016-10-05T10:26:03.364+0000",
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":"externalNote:-a36e-37",
"internalNote":"internalNote:-bfa3-46",
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":0,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:-949f-0f",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":480,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T09:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":480,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-311204763,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92754197,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":3,
"version":1,
"dateCreated":"2016-10-05T10:18:36.899+0000",
"dateModified":"2016-10-05T10:26:03.365+0000",
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":"externalNote:b-a08a-c",
"internalNote":"internalNote:c-a2cb-7",
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":6
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:7-979f-f",
"jobId":1,
"jobTaskCategory":"FEE",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":600,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":600,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312743758,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.894+0000",
"dateModified":"2016-10-05T10:26:03.362+0000",
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":"externalNote:d1-74db-",
"internalNote":"internalNote:0f-864e-",
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":1,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4e-6776-",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1440,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T17:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1440,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-310050516,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92781073,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":4,
"version":1,
"dateCreated":"2016-10-05T10:18:36.902+0000",
"dateModified":"2016-10-05T10:26:03.365+0000",
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":"externalNote:95ed3-1a",
"internalNote":"internalNote:68745-c2",
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":6
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:9f37f-15",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1080,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T23:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1080,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312359010,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
}
],
"jobThirdPartyCosts":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.905+0000",
"dateModified":"2016-10-05T10:26:03.366+0000",
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:16-bbe8-",
"internalNote":"internalNote:4e-fe4a-",
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:f9-6d5f-",
"jobId":1,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"supplierOrderLineItem":{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:03.174+0000",
"dateModified":null,
"supplierOrderId":{
"id":2
},
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
"tenderLineItem":null
}
],
"jobExpenses":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.892+0000",
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":"externalNote:a9f5-1a8",
"internalNote":"internalNote:9f9d-95b",
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:91a3-660",
"jobId":{
"id":1
},
"totalCostLogged":null
}
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":"externalData:9-994d-4",
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
}
Updates job with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/job
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/job HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<job id="1" version="2" dateCreated="2016-10-05T12:18:36.890+02:00" dateModified="2016-10-05T12:26:03.749+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J1</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>1</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:a-fba5-4</clientReference>
<billableJob>true</billableJob>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags />
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="2" version="1" dateCreated="2016-10-05T12:18:36.896+02:00" dateModified="2016-10-05T12:26:03.364+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:-a36e-37</externalNote>
<internalNote>internalNote:-bfa3-46</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-949f-0f</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-311204763</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92754197</baselineMultiplier>
<jobTaskDependencies />
<baselineAllocations />
</jobTask>
<jobTask id="3" version="1" dateCreated="2016-10-05T12:18:36.899+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:b-a08a-c</externalNote>
<internalNote>internalNote:c-a2cb-7</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:7-979f-f</externalData>
<jobId>1</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312743758</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies />
<baselineAllocations />
</jobTask>
<jobTask id="1" version="1" dateCreated="2016-10-05T12:18:36.894+02:00" dateModified="2016-10-05T12:26:03.362+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:d1-74db-</externalNote>
<internalNote>internalNote:0f-864e-</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4e-6776-</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-20T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-310050516</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92781073</baselineMultiplier>
<jobTaskDependencies />
<baselineAllocations />
</jobTask>
<jobTask id="4" version="1" dateCreated="2016-10-05T12:18:36.902+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:95ed3-1a</externalNote>
<internalNote>internalNote:68745-c2</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:9f37f-15</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312359010</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies />
<baselineAllocations />
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="1" version="1" dateCreated="2016-10-05T12:18:36.905+02:00" dateModified="2016-10-05T12:26:03.366+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:16-bbe8-</externalNote>
<internalNote>internalNote:4e-fe4a-</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:f9-6d5f-</externalData>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="0" dateCreated="2016-10-05T12:19:03.174+02:00">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="1" version="0" dateCreated="2016-10-05T12:18:36.892+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:a9f5-1a8</externalNote>
<internalNote>internalNote:9f9d-95b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:91a3-660</externalData>
<jobId>
<id>1</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages />
<invoices class="list" />
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
<externalCode>UPD Ext Code 0.4522422511370032</externalCode>
</job>
POST /TrafficLiteServer/openapi/job HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"jobUserCategoryListItemId":null,
"jobExpenses":[
{
"chargeBandId":{
"id":2
},
"rateOtherCurrency":null,
"description":"Transportation",
"externalData":"externalData:91a3-660",
"excludeFromInvoice":false,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"billLineItemOrder":2,
"totalCostLogged":null,
"total":{
"currencyType":"GBP",
"amountString":0
},
"dateCreated":"2016-10-05T10:18:36.892+0000",
"rate":{
"currencyType":"GBP",
"amountString":0
},
"billableNetOtherCurrency":null,
"id":1,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"quantity":5,
"cost":{
"currencyType":"GBP",
"amountString":0
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":25,
"billType":"ACTUAL",
"dateModified":null,
"version":0,
"jobId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":2,
"internalNote":"internalNote:9f9d-95b",
"realisationRate":null,
"externalNote":"externalNote:a9f5-1a8"
}
],
"externalCode":"UPD Ext Code 0.0874623663141918",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"jobTasks":[
{
"baselineMultiplier":0.92727321,
"chargeBandId":{
"id":6
},
"jobTaskUserCategoryListItemId":null,
"rateOtherCurrency":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"jobTaskCategory":"FEE",
"id":3,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobTaskPriorityListItemId":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312743758,
"totalOtherCurrency":null,
"dependancyTaskDeadline":null,
"multiplier":100,
"jobTaskDependencies":[
],
"baselineRateOtherCurrency":null,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":800
},
"baselineQuantity":0.93,
"totalTimeLoggedMinutes":0,
"totalCostBillable":null,
"jobId":1,
"durationMinutes":600,
"lineItemOrder":3,
"totalTimeLoggedBillableMinutes":0,
"realisationRate":null,
"taskStartDate":"2016-12-21T07:00:00.000+0000",
"jobStageUUID":null,
"baselineRate":null,
"externalNote":"externalNote:b-a08a-c",
"description":"Proof Reading",
"externalData":"externalData:7-979f-f",
"baselineCost":null,
"excludeFromInvoice":false,
"studioAllocationMinutes":600,
"billLineItemOrder":3,
"total":{
"currencyType":"GBP",
"amountString":800
},
"retainerJobTaskId":null,
"dateCreated":"2016-10-05T10:18:36.899+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"totalTimeEntryPersonalRate":null,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"quantity":10,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"taxTypeTwoId":null,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"jobTaskCompletionDate":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"jobTaskExternalCategoryListItemId":null,
"baselineTotalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"internalNote":"internalNote:c-a2cb-7",
"baselineAllocations":[
],
"totalTimeAllocatedMinutes":0,
"jobStageDescription":null,
"dependancyId":null,
"complete":false,
"baselineTotal":null
},
{
"baselineMultiplier":0.92754197,
"chargeBandId":{
"id":6
},
"jobTaskUserCategoryListItemId":null,
"rateOtherCurrency":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"jobTaskCategory":"TIME",
"id":2,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobTaskPriorityListItemId":null,
"totalCostNonBillable":null,
"hierarchyOrder":-311204763,
"totalOtherCurrency":null,
"dependancyTaskDeadline":null,
"multiplier":100,
"jobTaskDependencies":[
],
"baselineRateOtherCurrency":null,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":640
},
"baselineQuantity":0.93,
"totalTimeLoggedMinutes":0,
"totalCostBillable":null,
"jobId":1,
"durationMinutes":480,
"lineItemOrder":0,
"totalTimeLoggedBillableMinutes":0,
"realisationRate":null,
"taskStartDate":"2016-12-21T09:00:00.000+0000",
"jobStageUUID":null,
"baselineRate":null,
"externalNote":"externalNote:-a36e-37",
"description":"Copywriting",
"externalData":"externalData:-949f-0f",
"baselineCost":null,
"excludeFromInvoice":false,
"studioAllocationMinutes":480,
"billLineItemOrder":0,
"total":{
"currencyType":"GBP",
"amountString":640
},
"retainerJobTaskId":null,
"dateCreated":"2016-10-05T10:18:36.896+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"totalTimeEntryPersonalRate":null,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"quantity":8,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"taxTypeTwoId":null,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"jobTaskCompletionDate":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"jobTaskExternalCategoryListItemId":null,
"baselineTotalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"internalNote":"internalNote:-bfa3-46",
"baselineAllocations":[
],
"totalTimeAllocatedMinutes":0,
"jobStageDescription":null,
"dependancyId":null,
"complete":false,
"baselineTotal":null
},
{
"baselineMultiplier":0.92781073,
"chargeBandId":{
"id":6
},
"jobTaskUserCategoryListItemId":null,
"rateOtherCurrency":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"jobTaskCategory":"TIME",
"id":1,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobTaskPriorityListItemId":null,
"totalCostNonBillable":null,
"hierarchyOrder":-310050516,
"totalOtherCurrency":null,
"dependancyTaskDeadline":null,
"multiplier":100,
"jobTaskDependencies":[
],
"baselineRateOtherCurrency":null,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":1920
},
"baselineQuantity":0.93,
"totalTimeLoggedMinutes":0,
"totalCostBillable":null,
"jobId":1,
"durationMinutes":1440,
"lineItemOrder":1,
"totalTimeLoggedBillableMinutes":0,
"realisationRate":null,
"taskStartDate":"2016-12-20T17:00:00.000+0000",
"jobStageUUID":null,
"baselineRate":null,
"externalNote":"externalNote:d1-74db-",
"description":"Document Layout ",
"externalData":"externalData:4e-6776-",
"baselineCost":null,
"excludeFromInvoice":false,
"studioAllocationMinutes":1440,
"billLineItemOrder":1,
"total":{
"currencyType":"GBP",
"amountString":1920
},
"retainerJobTaskId":null,
"dateCreated":"2016-10-05T10:18:36.894+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"totalTimeEntryPersonalRate":null,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"quantity":24,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"taxTypeTwoId":null,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"jobTaskCompletionDate":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"jobTaskExternalCategoryListItemId":null,
"baselineTotalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"internalNote":"internalNote:0f-864e-",
"baselineAllocations":[
],
"totalTimeAllocatedMinutes":0,
"jobStageDescription":null,
"dependancyId":null,
"complete":false,
"baselineTotal":null
},
{
"baselineMultiplier":0.92727321,
"chargeBandId":{
"id":6
},
"jobTaskUserCategoryListItemId":null,
"rateOtherCurrency":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"jobTaskCategory":"TIME",
"id":4,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobTaskPriorityListItemId":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312359010,
"totalOtherCurrency":null,
"dependancyTaskDeadline":null,
"multiplier":100,
"jobTaskDependencies":[
],
"baselineRateOtherCurrency":null,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":1440
},
"baselineQuantity":0.93,
"totalTimeLoggedMinutes":0,
"totalCostBillable":null,
"jobId":1,
"durationMinutes":1080,
"lineItemOrder":2,
"totalTimeLoggedBillableMinutes":0,
"realisationRate":null,
"taskStartDate":"2016-12-20T23:00:00.000+0000",
"jobStageUUID":null,
"baselineRate":null,
"externalNote":"externalNote:95ed3-1a",
"description":"Graphical Design",
"externalData":"externalData:9f37f-15",
"baselineCost":null,
"excludeFromInvoice":false,
"studioAllocationMinutes":1080,
"billLineItemOrder":2,
"total":{
"currencyType":"GBP",
"amountString":1440
},
"retainerJobTaskId":null,
"dateCreated":"2016-10-05T10:18:36.902+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"totalTimeEntryPersonalRate":null,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"quantity":18,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"taxTypeTwoId":null,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"jobTaskCompletionDate":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"jobTaskExternalCategoryListItemId":null,
"baselineTotalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"internalNote":"internalNote:68745-c2",
"baselineAllocations":[
],
"totalTimeAllocatedMinutes":0,
"jobStageDescription":null,
"dependancyId":null,
"complete":false,
"baselineTotal":null
}
],
"externalData":"externalData:9-994d-4",
"externalDeadline":null,
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"userSpecifiedPercentComplete":false,
"jobThirdPartyCosts":[
{
"chargeBandId":{
"id":3
},
"rateOtherCurrency":null,
"description":"Printing of Brochures",
"externalData":"externalData:f9-6d5f-",
"excludeFromInvoice":false,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"billLineItemOrder":3,
"total":{
"currencyType":"GBP",
"amountString":0
},
"dateCreated":"2016-10-05T10:18:36.905+0000",
"rate":{
"currencyType":"GBP",
"amountString":0
},
"billableNetOtherCurrency":null,
"id":1,
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"quantity":1,
"cost":{
"currencyType":"GBP",
"amountString":0
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":25,
"tenderLineItem":null,
"billType":"ACTUAL",
"dateModified":null,
"version":0,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"jobId":1,
"taxTypeId":{
"id":1
},
"lineItemOrder":3,
"internalNote":"internalNote:4e-fe4a-",
"realisationRate":null,
"supplierOrderLineItem":{
"supplierOrderId":{
"id":2
},
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.174+0000",
"jobThirdPartyCostId":{
"id":1
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"id":5,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"dateModified":null,
"version":0,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J1"
},
"externalNote":"externalNote:16-bbe8-"
}
],
"potentialValueOfActuals":{
"currencyType":"GBP",
"amountString":0
},
"realisationThreshold":0.9276,
"lastUpdatedUserId":7,
"otherCurrency":null,
"dateCreated":"2016-10-05T10:18:36.890+0000",
"invoices":[
],
"multicurrencyEnabled":false,
"clientReference":"clientReference:a-fba5-4",
"parentRetainerJobId":null,
"jobCompletedDate":null,
"id":1,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"billedTaxTwoAmount":null,
"jobStages":[
],
"realisationThresholdListItemId":null,
"multiCurrencySyncMode":"BASE_TO_OTHER",
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"retainerJob":false,
"clientPurchaseOrderValue":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"userSpecifiedPercentCompleteValue":0.93,
"realisationPercentage":100,
"dateModified":null,
"freeTags":[
],
"realisationPercentageAsBilled":0,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":4800
},
"billedNet":null,
"parentRetainerJob":null,
"jobDetailId":1,
"appliedCustomRateSetId":null,
"billedTaxOneAmount":null,
"multicurrencyRate":0.9309,
"billableJob":true,
"jobNumber":"J1",
"timeBillings":{
"currencyType":"GBP",
"amountString":0
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:06 GMT
<job id="1" version="4" dateCreated="2016-10-05T12:18:36.890+02:00" dateModified="2016-10-05T12:26:06.256+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J1</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>1</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:a-fba5-4</clientReference>
<billableJob>true</billableJob>
<externalCode>UPD Ext Code 0.4522422511370032</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="2" version="1" dateCreated="2016-10-05T12:18:36.896+02:00" dateModified="2016-10-05T12:26:03.364+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:-a36e-37</externalNote>
<internalNote>internalNote:-bfa3-46</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-949f-0f</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-311204763</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92754197</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="3" version="1" dateCreated="2016-10-05T12:18:36.899+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:b-a08a-c</externalNote>
<internalNote>internalNote:c-a2cb-7</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:7-979f-f</externalData>
<jobId>1</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312743758</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="1" version="1" dateCreated="2016-10-05T12:18:36.894+02:00" dateModified="2016-10-05T12:26:03.362+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:d1-74db-</externalNote>
<internalNote>internalNote:0f-864e-</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4e-6776-</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-20T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-310050516</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92781073</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="4" version="1" dateCreated="2016-10-05T12:18:36.902+02:00" dateModified="2016-10-05T12:26:03.365+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:95ed3-1a</externalNote>
<internalNote>internalNote:68745-c2</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:9f37f-15</externalData>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312359010</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="1" version="1" dateCreated="2016-10-05T12:18:36.905+02:00" dateModified="2016-10-05T12:26:03.366+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:16-bbe8-</externalNote>
<internalNote>internalNote:4e-fe4a-</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:f9-6d5f-</externalData>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="0" dateCreated="2016-10-05T12:19:03.174+02:00">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="1" version="0" dateCreated="2016-10-05T12:18:36.892+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:a9f5-1a8</externalNote>
<internalNote>internalNote:9f9d-95b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:91a3-660</externalData>
<jobId>
<id>1</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</job>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:04 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:36.890+0000",
"dateModified":"2016-10-05T10:26:03.749+0000",
"lastUpdatedUserId":21,
"jobNumber":"J1",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":1,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"clientReference:a-fba5-4",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"UPD Ext Code 0.0874623663141918",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:18:36.896+0000",
"dateModified":"2016-10-05T10:26:03.364+0000",
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":"externalNote:-a36e-37",
"internalNote":"internalNote:-bfa3-46",
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":0,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:-949f-0f",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":480,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T09:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":480,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-311204763,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92754197,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":3,
"version":1,
"dateCreated":"2016-10-05T10:18:36.899+0000",
"dateModified":"2016-10-05T10:26:03.365+0000",
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":"externalNote:b-a08a-c",
"internalNote":"internalNote:c-a2cb-7",
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":6
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:7-979f-f",
"jobId":1,
"jobTaskCategory":"FEE",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":600,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":600,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312743758,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.894+0000",
"dateModified":"2016-10-05T10:26:03.362+0000",
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":"externalNote:d1-74db-",
"internalNote":"internalNote:0f-864e-",
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":1,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4e-6776-",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1440,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T17:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1440,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-310050516,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92781073,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":4,
"version":1,
"dateCreated":"2016-10-05T10:18:36.902+0000",
"dateModified":"2016-10-05T10:26:03.365+0000",
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":"externalNote:95ed3-1a",
"internalNote":"internalNote:68745-c2",
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":6
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:9f37f-15",
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1080,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T23:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1080,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312359010,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
}
],
"jobThirdPartyCosts":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.905+0000",
"dateModified":"2016-10-05T10:26:03.366+0000",
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:16-bbe8-",
"internalNote":"internalNote:4e-fe4a-",
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:f9-6d5f-",
"jobId":1,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"supplierOrderLineItem":{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:03.174+0000",
"dateModified":null,
"supplierOrderId":{
"id":2
},
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
"tenderLineItem":null
}
],
"jobExpenses":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.892+0000",
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":"externalNote:a9f5-1a8",
"internalNote":"internalNote:9f9d-95b",
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:91a3-660",
"jobId":{
"id":1
},
"totalCostLogged":null
}
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":"externalData:9-994d-4",
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
}
Adds submitted job and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/job
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/job HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<job id="-1" version="-1" dateCreated="2016-10-05T12:18:36.890+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<billableJob>true</billableJob>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags />
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks />
<jobThirdPartyCosts />
<jobExpenses />
<jobStages />
<invoices class="list" />
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
<clientReference>NEW Reference 0.4095866733008582</clientReference>
<externalCode>NEW ExtCode 0.03974737624299274</externalCode>
<jobDetailId>44</jobDetailId>
</job>
PUT /TrafficLiteServer/openapi/job HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"jobUserCategoryListItemId":null,
"jobExpenses":[
],
"externalCode":"NEW ExtCode 0.7637530938276333",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"jobTasks":[
],
"externalData":"externalData:9-994d-4",
"externalDeadline":null,
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"userSpecifiedPercentComplete":false,
"jobThirdPartyCosts":[
],
"potentialValueOfActuals":{
"currencyType":"GBP",
"amountString":0
},
"realisationThreshold":0.9276,
"lastUpdatedUserId":21,
"otherCurrency":null,
"dateCreated":"2016-10-05T10:18:36.890+0000",
"invoices":[
],
"multicurrencyEnabled":false,
"clientReference":"NEW Reference 0.4480436465529263",
"parentRetainerJobId":null,
"jobCompletedDate":null,
"id":"-1",
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"billedTaxTwoAmount":null,
"jobStages":[
],
"realisationThresholdListItemId":null,
"multiCurrencySyncMode":"BASE_TO_OTHER",
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"retainerJob":false,
"clientPurchaseOrderValue":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"userSpecifiedPercentCompleteValue":0.93,
"realisationPercentage":100,
"freeTags":[
],
"realisationPercentageAsBilled":0,
"version":"-1",
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":4800
},
"billedNet":null,
"parentRetainerJob":null,
"jobDetailId":"43",
"appliedCustomRateSetId":null,
"billedTaxOneAmount":null,
"multicurrencyRate":0.9309,
"billableJob":true,
"timeBillings":{
"currencyType":"GBP",
"amountString":0
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:08 GMT
<job id="32" version="0" dateCreated="2016-10-05T12:26:09.595+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J32</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>44</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>NEW Reference 0.4095866733008582</clientReference>
<billableJob>true</billableJob>
<externalCode>NEW ExtCode 0.03974737624299274</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks/>
<jobThirdPartyCosts/>
<jobExpenses/>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<externalData>externalData:9-994d-4</externalData>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</job>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:07 GMT
{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:26:08.236+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J31",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":43,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"NEW Reference 0.4480436465529263",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"NEW ExtCode 0.7637530938276333",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
],
"jobThirdPartyCosts":[
],
"jobExpenses":[
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":"externalData:9-994d-4",
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
}
Returns page of Job audit objects.
https://api.sohnar.com/TrafficLiteServer/openapi/job/audit
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/job/audit HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/job/audit HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:11 GMT
<pagedResult maxResults="45" windowSize="5" currentPage="1">
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="job" id="32" version="-1">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J32</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>44</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>NEW Reference 0.4095866733008582</clientReference>
<billableJob>true</billableJob>
<externalCode>NEW ExtCode 0.03974737624299274</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks/>
<jobThirdPartyCosts/>
<jobExpenses/>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</auditRecord>
<userRevision>
<id>134</id>
<customTimestamp>2016-10-05 10:26:09.603 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>ADD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="job" id="31" version="-1">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J31</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>43</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>NEW Reference 0.4480436465529263</clientReference>
<billableJob>true</billableJob>
<externalCode>NEW ExtCode 0.7637530938276333</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks/>
<jobThirdPartyCosts/>
<jobExpenses/>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</auditRecord>
<userRevision>
<id>131</id>
<customTimestamp>2016-10-05 10:26:08.259 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>ADD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="job" id="1" version="-1">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J1</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>1</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:a-fba5-4</clientReference>
<billableJob>true</billableJob>
<externalCode>UPD Ext Code 0.4522422511370032</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="1" version="-1">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-20T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-310050516</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92781073</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="3" version="-1">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312743758</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="2" version="-1">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-311204763</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92754197</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="4" version="-1">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312359010</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="1" version="-1">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="-1">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="1" version="-1">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>
<id>1</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</auditRecord>
<userRevision>
<id>129</id>
<customTimestamp>2016-10-05 10:26:06.390 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>MOD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="job" id="1" version="-1">
<lastUpdatedUserId>21</lastUpdatedUserId>
<jobNumber>J1</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>NOT_BILLED</jobBillingStateType>
<jobDetailId>1</jobDetailId>
<jobStartDate>2016-10-12T12:18:36.831+02:00</jobStartDate>
<internalDeadline>2016-12-21T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:a-fba5-4</clientReference>
<billableJob>true</billableJob>
<externalCode>UPD Ext Code 0.0874623663141918</externalCode>
<secondaryExternalCode>secondaryExternalCode:6df-d094</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.9276</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="1" version="-1">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-20T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-310050516</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92781073</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="3" version="-1">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312743758</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="2" version="-1">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-311204763</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92754197</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="4" version="-1">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-12-21T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-12-21T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>-312359010</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.93</baselineQuantity>
<baselineMultiplier>0.92727321</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="1" version="-1">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="-1">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="1" version="-1">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>
<id>1</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages/>
<invoices class="list"/>
<multicurrencyRate>0.9309</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.93</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>0</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</auditRecord>
<userRevision>
<id>128</id>
<customTimestamp>2016-10-05 10:26:03.975 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>MOD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="job" id="26" version="-1">
<lastUpdatedUserId>7</lastUpdatedUserId>
<jobNumber>J26</jobNumber>
<jobStateType>PROGRESS</jobStateType>
<jobBillingStateType>PART_BILLED</jobBillingStateType>
<jobDetailId>36</jobDetailId>
<jobStartDate>2016-10-08T12:18:53.297+02:00</jobStartDate>
<internalDeadline>2016-11-28T18:00:00.000+01:00</internalDeadline>
<clientReference>clientReference:e9b21-39</clientReference>
<billableJob>true</billableJob>
<externalCode>externalCode:5ffec-40</externalCode>
<secondaryExternalCode>secondaryExternalCode:44fbc-e3</secondaryExternalCode>
<freeTags/>
<realisationThreshold>0.4555</realisationThreshold>
<retainerJob>false</retainerJob>
<jobTasks>
<jobTask id="576" version="-1">
<uuid>59012bbc-97b1-48d9-96ef-6250826630bb</uuid>
<description>Graphical Design</description>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>26</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1080</studioAllocationMinutes>
<taskDeadline>2016-11-28T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-11-28T00:00:00.000+01:00</taskStartDate>
<durationMinutes>1080</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>1957690149</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.46</baselineQuantity>
<baselineMultiplier>0.45581025</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="577" version="-1">
<uuid>1a0a472b-73ae-4270-866e-fabf4d821313</uuid>
<description>Proof Reading</description>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>26</jobId>
<jobTaskCategory>FEE</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>600</studioAllocationMinutes>
<taskDeadline>2016-11-28T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-11-28T08:00:00.000+01:00</taskStartDate>
<durationMinutes>600</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>1957690149</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.46</baselineQuantity>
<baselineMultiplier>0.45581025</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="579" version="-1">
<uuid>8ad78b53-6dcc-45fb-a340-5166b02fb00e</uuid>
<description>Document Layout </description>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>26</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>1440</studioAllocationMinutes>
<taskDeadline>2016-11-28T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-11-27T18:00:00.000+01:00</taskStartDate>
<durationMinutes>1440</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>1957690149</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.46</baselineQuantity>
<baselineMultiplier>0.45581025</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
<jobTask id="578" version="-1">
<uuid>21521638-9f5b-4e70-b314-3b5d3fe385e7</uuid>
<description>Copywriting</description>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<jobId>26</jobId>
<jobTaskCategory>TIME</jobTaskCategory>
<complete>false</complete>
<studioAllocationMinutes>480</studioAllocationMinutes>
<taskDeadline>2016-11-28T18:00:00.000+01:00</taskDeadline>
<taskStartDate>2016-11-28T10:00:00.000+01:00</taskStartDate>
<durationMinutes>480</durationMinutes>
<totalTimeLoggedMinutes>0</totalTimeLoggedMinutes>
<totalTimeLoggedBillableMinutes>0</totalTimeLoggedBillableMinutes>
<totalTimeAllocatedMinutes>0</totalTimeAllocatedMinutes>
<hierarchyOrder>1957690149</hierarchyOrder>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<baselineQuantity>0.46</baselineQuantity>
<baselineMultiplier>0.45581025</baselineMultiplier>
<jobTaskDependencies/>
<baselineAllocations/>
</jobTask>
</jobTasks>
<jobThirdPartyCosts>
<jobThirdPartyCost id="86" version="-1">
<uuid>d77ef0b1-a497-4196-8ce0-2b520409eafe</uuid>
<description>Printing of Brochures</description>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<jobId>26</jobId>
<estimatedDeliveryDate>2016-10-23T12:18:53.298+02:00</estimatedDeliveryDate>
</jobThirdPartyCost>
</jobThirdPartyCosts>
<jobExpenses>
<jobExpense id="221" version="-1">
<uuid>570eb6e7-32fc-49fb-86aa-ca9be918b6a2</uuid>
<description>Transportation</description>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<jobId>
<id>26</id>
</jobId>
</jobExpense>
</jobExpenses>
<jobStages/>
<invoices class="list">
<invoice id="5" version="-1">
<invoiceNumber>IN5</invoiceNumber>
<issueDate>2016-10-05T12:19:15.321+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>26</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="109" version="-1">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>576</id>
</jobTaskId>
<uuid>2642390a-c683-4c24-a900-750bf363a459</uuid>
<invoicedNet>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="110" version="-1">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>578</id>
</jobTaskId>
<uuid>404a33e8-5568-4408-a987-1784e5a15d45</uuid>
<invoicedNet>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="108" version="-1">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>577</id>
</jobTaskId>
<uuid>61d90f64-8e58-4d66-a9f9-f6da231e78c3</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="111" version="-1">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>579</id>
</jobTaskId>
<uuid>8ba34d04-9d85-4deb-9488-c15597b03c4a</uuid>
<invoicedNet>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="-1">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
</invoices>
<multicurrencyRate>0.4555</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<userSpecifiedPercentComplete>false</userSpecifiedPercentComplete>
<userSpecifiedPercentCompleteValue>0.46</userSpecifiedPercentCompleteValue>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.0000000000</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<timeBillings>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</timeBillings>
<realisationPercentageAsBilled>100</realisationPercentageAsBilled>
<potentialValueOfActuals>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValueOfActuals>
</auditRecord>
<userRevision>
<id>126</id>
<customTimestamp>2016-10-05 10:19:15.398 UTC</customTimestamp>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
</userRevision>
<revisionType>MOD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:10 GMT
{
"maxResults":45,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":32,
"version":-1,
"dateCreated":null,
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J32",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":44,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"NEW Reference 0.4095866733008582",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"NEW ExtCode 0.03974737624299274",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
],
"jobThirdPartyCosts":[
],
"jobExpenses":[
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":null,
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
"userRevision":{
"id":134,
"customTimestamp":"2016-10-05T10:26:09.603+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"ADD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":31,
"version":-1,
"dateCreated":null,
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J31",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":43,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"NEW Reference 0.4480436465529263",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"NEW ExtCode 0.7637530938276333",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
],
"jobThirdPartyCosts":[
],
"jobExpenses":[
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":null,
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
"userRevision":{
"id":131,
"customTimestamp":"2016-10-05T10:26:08.259+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"ADD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J1",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":1,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"clientReference:a-fba5-4",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"UPD Ext Code 0.4522422511370032",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":null,
"internalNote":null,
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":1,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1440,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T17:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1440,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-310050516,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92781073,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":3,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":null,
"internalNote":null,
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":6
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"FEE",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":600,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":600,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312743758,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":2,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":null,
"internalNote":null,
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":0,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":480,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T09:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":480,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-311204763,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92754197,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":4,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":null,
"internalNote":null,
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":6
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1080,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T23:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1080,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312359010,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
}
],
"jobThirdPartyCosts":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":null,
"internalNote":null,
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"supplierOrderLineItem":{
"id":5,
"version":-1,
"dateCreated":null,
"dateModified":null,
"supplierOrderId":{
"id":2
},
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
"tenderLineItem":null
}
],
"jobExpenses":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":null,
"internalNote":null,
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":{
"id":1
},
"totalCostLogged":null
}
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":null,
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
"userRevision":{
"id":129,
"customTimestamp":"2016-10-05T10:26:06.390+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"MOD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"lastUpdatedUserId":21,
"jobNumber":"J1",
"jobStateType":"PROGRESS",
"jobBillingStateType":"NOT_BILLED",
"jobDetailId":1,
"jobCompletedDate":null,
"jobStartDate":"2016-10-12T10:18:36.831+0000",
"internalDeadline":"2016-12-21T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"clientReference:a-fba5-4",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"UPD Ext Code 0.0874623663141918",
"secondaryExternalCode":"secondaryExternalCode:6df-d094",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.9276,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":null,
"internalNote":null,
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":1,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1440,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T17:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1440,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-310050516,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92781073,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":3,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":null,
"internalNote":null,
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":6
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"FEE",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":600,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":600,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312743758,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":2,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":null,
"internalNote":null,
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":0,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":480,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-21T09:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":480,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-311204763,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92754197,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":4,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":null,
"internalNote":null,
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":6
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1080,
"taskDeadline":"2016-12-21T17:00:00.000+0000",
"taskStartDate":"2016-12-20T23:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1080,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":-312359010,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.93,
"baselineCost":null,
"baselineMultiplier":0.92727321,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
}
],
"jobThirdPartyCosts":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":null,
"internalNote":null,
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":1,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"supplierOrderLineItem":{
"id":5,
"version":-1,
"dateCreated":null,
"dateModified":null,
"supplierOrderId":{
"id":2
},
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
"tenderLineItem":null
}
],
"jobExpenses":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":null,
"internalNote":null,
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":{
"id":1
},
"totalCostLogged":null
}
],
"jobStages":[
],
"invoices":[
],
"multicurrencyRate":0.9309,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":null,
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.93,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"timeBillings":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":0,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
"userRevision":{
"id":128,
"customTimestamp":"2016-10-05T10:26:03.975+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"MOD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":26,
"version":-1,
"dateCreated":null,
"dateModified":null,
"lastUpdatedUserId":7,
"jobNumber":"J26",
"jobStateType":"PROGRESS",
"jobBillingStateType":"PART_BILLED",
"jobDetailId":36,
"jobCompletedDate":null,
"jobStartDate":"2016-10-08T10:18:53.297+0000",
"internalDeadline":"2016-11-28T17:00:00.000+0000",
"externalDeadline":null,
"jobUserCategoryListItemId":null,
"appliedCustomRateSetId":null,
"clientReference":"clientReference:e9b21-39",
"clientPurchaseOrderValue":null,
"billableJob":true,
"billedNet":null,
"billedTaxOneAmount":null,
"billedTaxTwoAmount":null,
"externalCode":"externalCode:5ffec-40",
"secondaryExternalCode":"secondaryExternalCode:44fbc-e3",
"freeTags":[
],
"realisationThresholdListItemId":null,
"realisationThreshold":0.4555,
"parentRetainerJobId":null,
"retainerJob":false,
"jobTasks":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":576,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"59012bbc-97b1-48d9-96ef-6250826630bb",
"description":"Graphical Design",
"externalNote":null,
"internalNote":null,
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":1,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":26,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1080,
"taskDeadline":"2016-11-28T17:00:00.000+0000",
"taskStartDate":"2016-11-27T23:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1080,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":1957690149,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.46,
"baselineCost":null,
"baselineMultiplier":0.45581025,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":577,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"1a0a472b-73ae-4270-866e-fabf4d821313",
"description":"Proof Reading",
"externalNote":null,
"internalNote":null,
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":0,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":26,
"jobTaskCategory":"FEE",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":600,
"taskDeadline":"2016-11-28T17:00:00.000+0000",
"taskStartDate":"2016-11-28T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":600,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":1957690149,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.46,
"baselineCost":null,
"baselineMultiplier":0.45581025,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":579,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"8ad78b53-6dcc-45fb-a340-5166b02fb00e",
"description":"Document Layout ",
"externalNote":null,
"internalNote":null,
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":6
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":26,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":1440,
"taskDeadline":"2016-11-28T17:00:00.000+0000",
"taskStartDate":"2016-11-27T17:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":1440,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":1957690149,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.46,
"baselineCost":null,
"baselineMultiplier":0.45581025,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobTaskTO",
"id":578,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"21521638-9f5b-4e70-b314-3b5d3fe385e7",
"description":"Copywriting",
"externalNote":null,
"internalNote":null,
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":6
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":null,
"jobId":26,
"jobTaskCategory":"TIME",
"complete":false,
"jobTaskCompletionDate":null,
"studioAllocationMinutes":480,
"taskDeadline":"2016-11-28T17:00:00.000+0000",
"taskStartDate":"2016-11-28T09:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"durationMinutes":480,
"totalTimeLoggedMinutes":0,
"totalTimeLoggedBillableMinutes":0,
"totalTimeEntryPersonalRate":null,
"totalTimeAllocatedMinutes":0,
"dependancyId":null,
"dependancyTaskDeadline":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"totalCostBillable":null,
"totalCostNonBillable":null,
"hierarchyOrder":1957690149,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"baselineQuantity":0.46,
"baselineCost":null,
"baselineMultiplier":0.45581025,
"baselineRate":null,
"baselineTotal":null,
"baselineRateOtherCurrency":null,
"baselineTotalOtherCurrency":null,
"jobTaskDependencies":[
],
"retainerJobTaskId":null,
"baselineAllocations":[
]
}
],
"jobThirdPartyCosts":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":86,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"d77ef0b1-a497-4196-8ce0-2b520409eafe",
"description":"Printing of Brochures",
"externalNote":null,
"internalNote":null,
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":true,
"externalData":null,
"jobId":26,
"estimatedDeliveryDate":"2016-10-23T10:18:53.298+0000",
"supplierOrderLineItem":null,
"tenderLineItem":null
}
],
"jobExpenses":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseTO",
"id":221,
"version":-1,
"dateCreated":null,
"dateModified":null,
"uuid":"570eb6e7-32fc-49fb-86aa-ca9be918b6a2",
"description":"Transportation",
"externalNote":null,
"internalNote":null,
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":2,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":true,
"externalData":null,
"jobId":{
"id":26
},
"totalCostLogged":null
}
],
"jobStages":[
],
"invoices":[
{
"id":5,
"version":-1,
"dateCreated":null,
"dateModified":null,
"invoiceNumber":"IN5",
"issueDate":"2016-10-05T10:19:15.321+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":26
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":109,
"version":-1,
"dateCreated":null,
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":576
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2642390a-c683-4c24-a900-750bf363a459",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1440.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":110,
"version":-1,
"dateCreated":null,
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":578
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"404a33e8-5568-4408-a987-1784e5a15d45",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":640.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":108,
"version":-1,
"dateCreated":null,
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":577
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61d90f64-8e58-4d66-a9f9-f6da231e78c3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":111,
"version":-1,
"dateCreated":null,
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":579
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"8ba34d04-9d85-4deb-9488-c15597b03c4a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1920.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
}
],
"multicurrencyRate":0.4555,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"externalData":null,
"userSpecifiedPercentComplete":false,
"userSpecifiedPercentCompleteValue":0.46,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.0000000000,
"currencyType":"GBP"
},
"realisationPercentage":100,
"timeBillings":{
"amountString":4800.00,
"currencyType":"GBP"
},
"realisationPercentageAsBilled":100,
"potentialValueOfActuals":{
"amountString":0,
"currencyType":"GBP"
},
"parentRetainerJob":null,
"multicurrencyEnabled":false
},
"userRevision":{
"id":126,
"customTimestamp":"2016-10-05T10:19:15.398+0000",
"userId":7,
"userName":"simonstewart@deltek.com"
},
"revisionType":"MOD"
}
],
"windowSize":5,
"currentPage":1
}
Returns single job line item object by id and type.
https://api.sohnar.com/TrafficLiteServer/openapi/job/{itemtype}/{id}
| name | description | default |
|---|---|---|
| id | Job's id. | |
| itemtype | Item type. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/job/THIRD_PARTY/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/job/THIRD_PARTY/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:16 GMT
<jobThirdPartyCost id="1" version="1" dateCreated="2016-10-05T12:18:36.905+02:00" dateModified="2016-10-05T12:26:03.366+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:16-bbe8-</externalNote>
<internalNote>internalNote:4e-fe4a-</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>3</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:f9-6d5f-</externalData>
<jobId>1</jobId>
<estimatedDeliveryDate>2016-10-11T12:18:36.834+02:00</estimatedDeliveryDate>
<supplierOrderLineItem id="5" version="0" dateCreated="2016-10-05T12:19:03.174+02:00">
<supplierOrderId>
<id>2</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:17a-5fc7</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</jobThirdPartyCost>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:15 GMT
{
"@class":"com.sohnar.trafficlite.transfer.project.JobThirdPartyCostTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.905+0000",
"dateModified":"2016-10-05T10:26:03.366+0000",
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:16-bbe8-",
"internalNote":"internalNote:4e-fe4a-",
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":3,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:f9-6d5f-",
"jobId":1,
"estimatedDeliveryDate":"2016-10-11T10:18:36.834+0000",
"supplierOrderLineItem":{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:03.174+0000",
"dateModified":null,
"supplierOrderId":{
"id":2
},
"supplierOrderOrderNumber":"orderNumber:17a-5fc7",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
"tenderLineItem":null
}
Returns page of JobDetail objects.
https://api.sohnar.com/TrafficLiteServer/openapi/jobdetail
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/jobdetail?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/jobdetail?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:14 GMT
<pagedResult maxResults="44" windowSize="2" currentPage="1">
<jobDetail id="44" version="0" dateCreated="2016-10-05T12:26:09.141+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Job 0.9655232627793974</name>
<description>Job description 0.3400492826469266</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
</jobDetail>
<jobDetail id="43" version="0" dateCreated="2016-10-05T12:26:07.752+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Job 0.23070664378919126</name>
<description>Job description 0.034497935783962985</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
</jobDetail>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:14 GMT
{
"maxResults":44,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.project.JobDetailTO",
"id":44,
"version":0,
"dateCreated":"2016-10-05T10:26:09.141+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobDescription":null,
"name":"NEW Job 0.9655232627793974",
"description":"Job description 0.3400492826469266",
"notes":"notes:c-3588-4",
"jobContactId":3,
"accountManagerId":1,
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"jobCostType":"CHARGEBAND"
},
{
"@class":"com.sohnar.trafficlite.transfer.project.JobDetailTO",
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:26:07.752+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobDescription":null,
"name":"NEW Job 0.23070664378919126",
"description":"Job description 0.034497935783962985",
"notes":"notes:c-3588-4",
"jobContactId":3,
"accountManagerId":1,
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"jobCostType":"CHARGEBAND"
}
],
"windowSize":2,
"currentPage":1
}
Returns single jobdetail object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/jobdetail/{id}
| name | description | default |
|---|---|---|
| id | JobDetail's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/jobdetail/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/jobdetail/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:13 GMT
<jobDetail id="1" version="0" dateCreated="2016-10-05T12:18:36.641+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Brochure</name>
<description>description:5-3df0-4</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
</jobDetail>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:13 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.641+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"jobDescription":null,
"name":"Brochure",
"description":"description:5-3df0-4",
"notes":"notes:c-3588-4",
"jobContactId":3,
"accountManagerId":1,
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"jobCostType":"CHARGEBAND"
}
Updates jobdetail with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/jobdetail
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/jobdetail HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobDetail id="1" version="1" dateCreated="2016-10-05T12:18:36.641+02:00" dateModified="2016-10-05T12:26:15.955+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<description>description:5-3df0-4</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
<name>UPD Name 0.6740584163628766</name>
</jobDetail>
POST /TrafficLiteServer/openapi/jobdetail HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"jobCostType":"CHARGEBAND",
"notes":"notes:c-3588-4",
"description":"description:5-3df0-4",
"dateModified":null,
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.641+0000",
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"name":"UPD Name 0.46281430036602467",
"jobContactId":3,
"jobDescription":null,
"id":1,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:15 GMT
<jobDetail id="1" version="2" dateCreated="2016-10-05T12:18:36.641+02:00" dateModified="2016-10-05T12:26:16.391+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Name 0.6740584163628766</name>
<description>description:5-3df0-4</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
</jobDetail>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:15 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.641+0000",
"dateModified":"2016-10-05T10:26:15.955+0000",
"lastUpdatedUserId":21,
"jobDescription":null,
"name":"UPD Name 0.46281430036602467",
"description":"description:5-3df0-4",
"notes":"notes:c-3588-4",
"jobContactId":3,
"accountManagerId":1,
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"jobCostType":"CHARGEBAND"
}
Adds submitted jobdetail and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/jobdetail
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/jobdetail HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobDetail id="-1" version="-1" dateCreated="2016-10-05T12:18:36.641+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
<name>NEW Job 0.9655232627793974</name>
<description>Job description 0.3400492826469266</description>
</jobDetail>
PUT /TrafficLiteServer/openapi/jobdetail HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"jobCostType":"CHARGEBAND",
"notes":"notes:c-3588-4",
"description":"Job description 0.034497935783962985",
"version":"-1",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.641+0000",
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"name":"NEW Job 0.23070664378919126",
"jobContactId":3,
"jobDescription":null,
"id":"-1",
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:08 GMT
<jobDetail id="44" version="0" dateCreated="2016-10-05T12:26:09.141+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Job 0.9655232627793974</name>
<description>Job description 0.3400492826469266</description>
<notes>notes:c-3588-4</notes>
<jobContactId>3</jobContactId>
<accountManagerId>1</accountManagerId>
<ownerProjectId>1</ownerProjectId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobCostType>CHARGEBAND</jobCostType>
</jobDetail>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:07 GMT
{
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:26:07.752+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"jobDescription":null,
"name":"NEW Job 0.23070664378919126",
"description":"Job description 0.034497935783962985",
"notes":"notes:c-3588-4",
"jobContactId":3,
"accountManagerId":1,
"ownerProjectId":1,
"jobTypeListItemId":{
"id":1
},
"jobCostType":"CHARGEBAND"
}
Returns page of Project objects.
https://api.sohnar.com/TrafficLiteServer/openapi/project
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:42 GMT
<pagedResult maxResults="12" windowSize="5" currentPage="1">
<project id="12" version="0" dateCreated="2016-10-05T12:18:55.189+02:00">
<name>Design Work</name>
<clientCRMEntryId>6</clientCRMEntryId>
</project>
<project id="11" version="0" dateCreated="2016-10-05T12:18:53.186+02:00">
<name>Project 2012 - Sun Microsystems</name>
<clientCRMEntryId>6</clientCRMEntryId>
</project>
<project id="10" version="0" dateCreated="2016-10-05T12:18:52.533+02:00">
<name>Design Work</name>
<clientCRMEntryId>1</clientCRMEntryId>
</project>
<project id="9" version="0" dateCreated="2016-10-05T12:18:50.095+02:00">
<name>Project 2012 - Aardvark Services</name>
<clientCRMEntryId>1</clientCRMEntryId>
</project>
<project id="8" version="0" dateCreated="2016-10-05T12:18:49.522+02:00">
<name>Internal</name>
<clientCRMEntryId>4</clientCRMEntryId>
</project>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:42 GMT
{
"maxResults":12,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.project.ProjectTO",
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:18:55.189+0000",
"dateModified":null,
"name":"Design Work",
"active":null,
"clientCRMEntryId":6
},
{
"@class":"com.sohnar.trafficlite.transfer.project.ProjectTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:53.186+0000",
"dateModified":null,
"name":"Project 2012 - Sun Microsystems",
"active":null,
"clientCRMEntryId":6
},
{
"@class":"com.sohnar.trafficlite.transfer.project.ProjectTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:52.533+0000",
"dateModified":null,
"name":"Design Work",
"active":null,
"clientCRMEntryId":1
},
{
"@class":"com.sohnar.trafficlite.transfer.project.ProjectTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:18:50.095+0000",
"dateModified":null,
"name":"Project 2012 - Aardvark Services",
"active":null,
"clientCRMEntryId":1
},
{
"@class":"com.sohnar.trafficlite.transfer.project.ProjectTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:18:49.522+0000",
"dateModified":null,
"name":"Internal",
"active":null,
"clientCRMEntryId":4
}
],
"windowSize":5,
"currentPage":1
}
Returns single project object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/project/{id}
| name | description | default |
|---|---|---|
| id | Project's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/project/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/project/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:43 GMT
<project id="1" version="2" dateCreated="2016-10-05T12:18:36.622+02:00" dateModified="2016-10-05T12:26:42.392+02:00">
<name>UPDATED Project Name 0.18732243712771113</name>
<clientCRMEntryId>2</clientCRMEntryId>
</project>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:43 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:36.622+0000",
"dateModified":"2016-10-05T10:26:42.392+0000",
"name":"UPDATED Project Name 0.18732243712771113",
"active":null,
"clientCRMEntryId":2
}
Updates project with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/project
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<project id="1" version="1" dateCreated="2016-10-05T12:18:36.622+02:00" dateModified="2016-10-05T12:26:42.004+02:00">
<clientCRMEntryId>2</clientCRMEntryId>
<name>UPDATED Project Name 0.18732243712771113</name>
</project>
POST /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:36.622+0000",
"name":"UPDATED Project Name 0.2373822428034298",
"clientCRMEntryId":2,
"active":null,
"dateModified":null,
"id":1,
"version":0
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:42 GMT
<project id="1" version="2" dateCreated="2016-10-05T12:18:36.622+02:00" dateModified="2016-10-05T12:26:42.392+02:00">
<name>UPDATED Project Name 0.18732243712771113</name>
<clientCRMEntryId>2</clientCRMEntryId>
</project>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:41 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.622+0000",
"dateModified":"2016-10-05T10:26:42.004+0000",
"name":"UPDATED Project Name 0.2373822428034298",
"active":null,
"clientCRMEntryId":2
}
Adds submitted project and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/project
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<project id="-1" version="-1" dateCreated="2016-10-05T12:18:36.622+02:00">
<clientCRMEntryId>2</clientCRMEntryId>
<name>CREATED Project 0.9253614627083417</name>
</project>
PUT /TrafficLiteServer/openapi/project HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:36.622+0000",
"name":"CREATED Project 0.6010290970380999",
"clientCRMEntryId":2,
"active":null,
"id":"-1",
"version":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:43 GMT
<project id="14" version="0" dateCreated="2016-10-05T12:26:44.101+02:00">
<name>CREATED Project 0.9253614627083417</name>
<clientCRMEntryId>2</clientCRMEntryId>
</project>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:43 GMT
{
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:26:43.770+0000",
"dateModified":null,
"name":"CREATED Project 0.6010290970380999",
"active":null,
"clientCRMEntryId":2
}
Returns page of Quote objects.
https://api.sohnar.com/TrafficLiteServer/openapi/quote
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/quote?windowSize=2&order=id HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/quote?windowSize=2&order=id HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:14 GMT
<pagedResult maxResults="26" windowSize="2" currentPage="1">
<quote id="1" version="2" dateCreated="2016-10-05T12:18:36.772+02:00" dateModified="2016-10-05T12:26:12.827+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>Q1</quoteNumber>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems>
<quoteLineItem id="6" version="0" dateCreated="2016-10-05T12:18:36.788+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:-46cf-85</externalNote>
<internalNote>internalNote:-4db7-a5</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-363530613</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-4167-a7</externalData>
<quoteId>
<id>1</id>
</quoteId>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>0</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="3" version="0" dateCreated="2016-10-05T12:18:36.782+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:c053bb76</externalNote>
<internalNote>internalNote:e0bc3a00</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:67653565</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>THIRD_PARTY</quoteLineItemType>
<hierarchyOrder>3</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="1" version="0" dateCreated="2016-10-05T12:18:36.775+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:39d3016f</externalNote>
<internalNote>internalNote:2f546b72</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:2d923121</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>EXPENSES</quoteLineItemType>
<hierarchyOrder>2</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="2" version="0" dateCreated="2016-10-05T12:18:36.780+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:6e191409</externalNote>
<internalNote>internalNote:5c650181</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:61335219</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>1</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="4" version="0" dateCreated="2016-10-05T12:18:36.784+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:4a50-a91</externalNote>
<internalNote>internalNote:4575-a0a</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>4</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4bfa-8e1</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>4</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="5" version="0" dateCreated="2016-10-05T12:18:36.786+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:4009-b69</externalNote>
<internalNote>internalNote:4711-b75</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>5</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:478f-a81</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>5</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
</lineItems>
<quoteStages/>
<jobDetailId>1</jobDetailId>
<clientReference>UPD Reference 0.16165209896311228</clientReference>
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags/>
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:e479-466</externalData>
</quote>
<quote id="2" version="0" dateCreated="2016-10-05T12:18:37.052+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>123</quoteNumber>
<probabilityOfProceeding>0.30</probabilityOfProceeding>
<anticipatedOrder>2016-10-08T12:18:36.973+02:00</anticipatedOrder>
<deadline>2016-10-12T18:00:00.000+02:00</deadline>
<lineItems>
<quoteLineItem id="9" version="0" dateCreated="2016-10-05T12:18:37.060+02:00">
<uuid>3a2f2511-9cf6-4539-9c89-37552990d7d2</uuid>
<description>Quoted Fee Item 6</description>
<externalNote>externalNote:4-43b8-a</externalNote>
<internalNote>internalNote:b-4b77-8</internalNote>
<quantity>30.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>5</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1098385688</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:9-4d1e-8</externalData>
<quoteId>
<id>2</id>
</quoteId>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>5</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="12" version="0" dateCreated="2016-10-05T12:18:37.066+02:00">
<uuid>4e453812-a26c-4a0e-98f0-554cfaa728b9</uuid>
<description>Quoted Fee Item 2</description>
<externalNote>externalNote:67-405e-</externalNote>
<internalNote>internalNote:90-4864-</internalNote>
<quantity>20.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1099155186</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:7e-4dc5-</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>1</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="13" version="0" dateCreated="2016-10-05T12:18:37.068+02:00">
<uuid>ef70a279-0539-4d30-8fe2-033e3eefc71b</uuid>
<description>Quoted Time Item 7</description>
<externalNote>externalNote:d-43dc-9</externalNote>
<internalNote>internalNote:d-4c89-9</internalNote>
<quantity>20.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>6</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1098385688</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:6-4d87-9</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>6</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="7" version="0" dateCreated="2016-10-05T12:18:37.056+02:00">
<uuid>05c1d38c-4999-41a0-bc2e-9381461eaf5b</uuid>
<description>Quoted Fee Item 5</description>
<externalNote>externalNote:e-4df5-b</externalNote>
<internalNote>internalNote:7-412a-9</internalNote>
<quantity>15.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>4</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1098385688</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:f-4a02-9</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>4</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="10" version="0" dateCreated="2016-10-05T12:18:37.062+02:00">
<uuid>ea6e9b0d-b765-4f41-a631-e6a3115e2f11</uuid>
<description>Expense Fee Item 4</description>
<externalNote>externalNote:34a28481</externalNote>
<internalNote>internalNote:a5563256</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>-1099539935</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:827dbda7</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>EXPENSES</quoteLineItemType>
<hierarchyOrder>3</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="8" version="0" dateCreated="2016-10-05T12:18:37.058+02:00">
<uuid>36558e4a-54f6-4710-9ec7-ad351ac00a36</uuid>
<description>Quoted Fee Item 8</description>
<externalNote>externalNote:f-47c5-9</externalNote>
<internalNote>internalNote:3-448c-b</internalNote>
<quantity>5.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>7</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1098385688</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:a-4f3c-a</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>7</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="11" version="0" dateCreated="2016-10-05T12:18:37.064+02:00">
<uuid>56897571-01fd-4fea-a220-4de67279effd</uuid>
<description>Quoted Time Item 1</description>
<externalNote>externalNote:cc-47e2-</externalNote>
<internalNote>internalNote:cf-4fc0-</internalNote>
<quantity>40.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-1099155186</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:9d-4872-</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>0</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="14" version="0" dateCreated="2016-10-05T12:18:37.071+02:00">
<uuid>f1fd47c9-3a85-492c-8b9d-576aa8e1f41d</uuid>
<description>Quoted ThirdParty Item 3</description>
<externalNote>externalNote:c117599a</externalNote>
<internalNote>internalNote:f2edc9d8</internalNote>
<quantity>2.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>-1099539935</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4ccb00de</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>THIRD_PARTY</quoteLineItemType>
<hierarchyOrder>2</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
</lineItems>
<quoteStages/>
<jobDetailId>2</jobDetailId>
<clientReference>clientReference:b4dcb-65</clientReference>
<multicurrencyRate>0.7454</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.7454</realisationThreshold>
<freeTags/>
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>10400.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:ff7b0-0b</externalData>
</quote>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:14 GMT
{
"maxResults":26,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteTO",
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:36.772+0000",
"dateModified":"2016-10-05T10:26:12.827+0000",
"lastUpdatedUserId":21,
"quoteStateType":"PROGRESS",
"quoteNumber":"Q1",
"probabilityOfProceeding":0.97,
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"deadline":"2016-12-21T17:00:00.000+0000",
"lineItems":[
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:36.788+0000",
"dateModified":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":"externalNote:-46cf-85",
"internalNote":"internalNote:-4db7-a5",
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-363530613,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:-4167-a7",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":0,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:36.782+0000",
"dateModified":null,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:c053bb76",
"internalNote":"internalNote:e0bc3a00",
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:67653565",
"quoteId":{
"id":1
},
"quoteLineItemType":"THIRD_PARTY",
"quoteStageUUID":null,
"hierarchyOrder":3,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.775+0000",
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":"externalNote:39d3016f",
"internalNote":"internalNote:2f546b72",
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:2d923121",
"quoteId":{
"id":1
},
"quoteLineItemType":"EXPENSES",
"quoteStageUUID":null,
"hierarchyOrder":2,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:36.780+0000",
"dateModified":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":"externalNote:6e191409",
"internalNote":"internalNote:5c650181",
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:61335219",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":1,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:36.784+0000",
"dateModified":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":"externalNote:4a50-a91",
"internalNote":"internalNote:4575-a0a",
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":4,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4bfa-8e1",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":4,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:36.786+0000",
"dateModified":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":"externalNote:4009-b69",
"internalNote":"internalNote:4711-b75",
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":5,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:478f-a81",
"quoteId":{
"id":1
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":5,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.00,
"currencyType":"GBP"
},
"realisationPercentage":100
}
],
"quoteStages":[
],
"jobDetailId":1,
"quoteOwnerSnapshotId":null,
"quoteUserCategoryListItemId":null,
"salesStageListItemId":null,
"clientReference":"UPD Reference 0.16165209896311228",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"realisationThreshold":0.8978,
"freeTags":[
],
"quoteLocked":false,
"quoteVersion":0,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.00,
"currencyType":"GBP"
},
"realisationPercentage":100,
"externalData":"externalData:e479-466",
"multicurrencyEnabled":false
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:37.052+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"quoteStateType":"PROGRESS",
"quoteNumber":"123",
"probabilityOfProceeding":0.30,
"anticipatedOrder":"2016-10-08T10:18:36.973+0000",
"deadline":"2016-10-12T16:00:00.000+0000",
"lineItems":[
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:18:37.060+0000",
"dateModified":null,
"uuid":"3a2f2511-9cf6-4539-9c89-37552990d7d2",
"description":"Quoted Fee Item 6",
"externalNote":"externalNote:4-43b8-a",
"internalNote":"internalNote:b-4b77-8",
"quantity":30.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":2400.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":5,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1098385688,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:9-4d1e-8",
"quoteId":{
"id":2
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":5,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":2400.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:18:37.066+0000",
"dateModified":null,
"uuid":"4e453812-a26c-4a0e-98f0-554cfaa728b9",
"description":"Quoted Fee Item 2",
"externalNote":"externalNote:67-405e-",
"internalNote":"internalNote:90-4864-",
"quantity":20.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1600.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1099155186,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:7e-4dc5-",
"quoteId":{
"id":2
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":1,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1600.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:18:37.068+0000",
"dateModified":null,
"uuid":"ef70a279-0539-4d30-8fe2-033e3eefc71b",
"description":"Quoted Time Item 7",
"externalNote":"externalNote:d-43dc-9",
"internalNote":"internalNote:d-4c89-9",
"quantity":20.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1600.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":6,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1098385688,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:6-4d87-9",
"quoteId":{
"id":2
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":6,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1600.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:37.056+0000",
"dateModified":null,
"uuid":"05c1d38c-4999-41a0-bc2e-9381461eaf5b",
"description":"Quoted Fee Item 5",
"externalNote":"externalNote:e-4df5-b",
"internalNote":"internalNote:7-412a-9",
"quantity":15.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1200.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":4,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1098385688,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:f-4a02-9",
"quoteId":{
"id":2
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":4,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1200.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:37.062+0000",
"dateModified":null,
"uuid":"ea6e9b0d-b765-4f41-a631-e6a3115e2f11",
"description":"Expense Fee Item 4",
"externalNote":"externalNote:34a28481",
"internalNote":"internalNote:a5563256",
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":2
},
"billLineItemOrder":-1099539935,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:827dbda7",
"quoteId":{
"id":2
},
"quoteLineItemType":"EXPENSES",
"quoteStageUUID":null,
"hierarchyOrder":3,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:18:37.058+0000",
"dateModified":null,
"uuid":"36558e4a-54f6-4710-9ec7-ad351ac00a36",
"description":"Quoted Fee Item 8",
"externalNote":"externalNote:f-47c5-9",
"internalNote":"internalNote:3-448c-b",
"quantity":5.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":400.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":7,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1098385688,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:a-4f3c-a",
"quoteId":{
"id":2
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":7,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:37.064+0000",
"dateModified":null,
"uuid":"56897571-01fd-4fea-a220-4de67279effd",
"description":"Quoted Time Item 1",
"externalNote":"externalNote:cc-47e2-",
"internalNote":"internalNote:cf-4fc0-",
"quantity":40.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":3200.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-1099155186,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:9d-4872-",
"quoteId":{
"id":2
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":0,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":3200.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:37.071+0000",
"dateModified":null,
"uuid":"f1fd47c9-3a85-492c-8b9d-576aa8e1f41d",
"description":"Quoted ThirdParty Item 3",
"externalNote":"externalNote:c117599a",
"internalNote":"internalNote:f2edc9d8",
"quantity":2.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":3
},
"billLineItemOrder":-1099539935,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4ccb00de",
"quoteId":{
"id":2
},
"quoteLineItemType":"THIRD_PARTY",
"quoteStageUUID":null,
"hierarchyOrder":2,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
}
],
"quoteStages":[
],
"jobDetailId":2,
"quoteOwnerSnapshotId":null,
"quoteUserCategoryListItemId":null,
"salesStageListItemId":null,
"clientReference":"clientReference:b4dcb-65",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.7454,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"realisationThreshold":0.7454,
"freeTags":[
],
"quoteLocked":false,
"quoteVersion":0,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":10400.00,
"currencyType":"GBP"
},
"realisationPercentage":100,
"externalData":"externalData:ff7b0-0b",
"multicurrencyEnabled":false
}
],
"windowSize":2,
"currentPage":1
}
Returns single quote object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/quote/{id}
| name | description | default |
|---|---|---|
| id | Quote's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/quote/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/quote/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:06 GMT
<quote id="1" version="0" dateCreated="2016-10-05T12:18:36.772+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>Q1</quoteNumber>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems>
<quoteLineItem id="6" version="0" dateCreated="2016-10-05T12:18:36.788+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:-46cf-85</externalNote>
<internalNote>internalNote:-4db7-a5</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-363530613</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-4167-a7</externalData>
<quoteId>
<id>1</id>
</quoteId>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>0</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="3" version="0" dateCreated="2016-10-05T12:18:36.782+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:c053bb76</externalNote>
<internalNote>internalNote:e0bc3a00</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:67653565</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>THIRD_PARTY</quoteLineItemType>
<hierarchyOrder>3</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="1" version="0" dateCreated="2016-10-05T12:18:36.775+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:39d3016f</externalNote>
<internalNote>internalNote:2f546b72</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:2d923121</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>EXPENSES</quoteLineItemType>
<hierarchyOrder>2</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="2" version="0" dateCreated="2016-10-05T12:18:36.780+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:6e191409</externalNote>
<internalNote>internalNote:5c650181</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:61335219</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>1</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="4" version="0" dateCreated="2016-10-05T12:18:36.784+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:4a50-a91</externalNote>
<internalNote>internalNote:4575-a0a</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>4</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4bfa-8e1</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>4</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="5" version="0" dateCreated="2016-10-05T12:18:36.786+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:4009-b69</externalNote>
<internalNote>internalNote:4711-b75</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>5</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:478f-a81</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>5</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
</lineItems>
<quoteStages/>
<jobDetailId>1</jobDetailId>
<clientReference>clientReference:2a4e-413</clientReference>
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags/>
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:e479-466</externalData>
</quote>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:06 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.772+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"quoteStateType":"PROGRESS",
"quoteNumber":"Q1",
"probabilityOfProceeding":0.97,
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"deadline":"2016-12-21T17:00:00.000+0000",
"lineItems":[
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:36.788+0000",
"dateModified":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":"externalNote:-46cf-85",
"internalNote":"internalNote:-4db7-a5",
"quantity":18.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-363530613,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:-4167-a7",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":0,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:36.782+0000",
"dateModified":null,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:c053bb76",
"internalNote":"internalNote:e0bc3a00",
"quantity":1.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:67653565",
"quoteId":{
"id":1
},
"quoteLineItemType":"THIRD_PARTY",
"quoteStageUUID":null,
"hierarchyOrder":3,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.775+0000",
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":"externalNote:39d3016f",
"internalNote":"internalNote:2f546b72",
"quantity":5.00,
"multiplier":25.00000000,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:2d923121",
"quoteId":{
"id":1
},
"quoteLineItemType":"EXPENSES",
"quoteStageUUID":null,
"hierarchyOrder":2,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:36.780+0000",
"dateModified":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":"externalNote:6e191409",
"internalNote":"internalNote:5c650181",
"quantity":24.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:61335219",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":1,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:36.784+0000",
"dateModified":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":"externalNote:4a50-a91",
"internalNote":"internalNote:4575-a0a",
"quantity":8.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":4,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4bfa-8e1",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":4,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640.00,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:36.786+0000",
"dateModified":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":"externalNote:4009-b69",
"internalNote":"internalNote:4711-b75",
"quantity":10.00,
"multiplier":100.00000000,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800.00,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":5,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0.00,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:478f-a81",
"quoteId":{
"id":1
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":5,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800.00,
"currencyType":"GBP"
},
"realisationPercentage":100
}
],
"quoteStages":[
],
"jobDetailId":1,
"quoteOwnerSnapshotId":null,
"quoteUserCategoryListItemId":null,
"salesStageListItemId":null,
"clientReference":"clientReference:2a4e-413",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"realisationThreshold":0.8978,
"freeTags":[
],
"quoteLocked":false,
"quoteVersion":0,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800.00,
"currencyType":"GBP"
},
"realisationPercentage":100,
"externalData":"externalData:e479-466",
"multicurrencyEnabled":false
}
Updates quote with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/quote
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/quote HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<quote id="1" version="1" dateCreated="2016-10-05T12:18:36.772+02:00" dateModified="2016-10-05T12:26:12.038+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>Q1</quoteNumber>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems>
<quoteLineItem id="6" version="0" dateCreated="2016-10-05T12:18:36.788+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:-46cf-85</externalNote>
<internalNote>internalNote:-4db7-a5</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-363530613</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-4167-a7</externalData>
<quoteId>
<id>1</id>
</quoteId>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>0</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="3" version="0" dateCreated="2016-10-05T12:18:36.782+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:c053bb76</externalNote>
<internalNote>internalNote:e0bc3a00</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:67653565</externalData>
<quoteId reference="../../quoteLineItem/quoteId" />
<quoteLineItemType>THIRD_PARTY</quoteLineItemType>
<hierarchyOrder>3</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="1" version="0" dateCreated="2016-10-05T12:18:36.775+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:39d3016f</externalNote>
<internalNote>internalNote:2f546b72</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:2d923121</externalData>
<quoteId reference="../../quoteLineItem/quoteId" />
<quoteLineItemType>EXPENSES</quoteLineItemType>
<hierarchyOrder>2</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="2" version="0" dateCreated="2016-10-05T12:18:36.780+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:6e191409</externalNote>
<internalNote>internalNote:5c650181</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:61335219</externalData>
<quoteId reference="../../quoteLineItem/quoteId" />
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>1</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="4" version="0" dateCreated="2016-10-05T12:18:36.784+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:4a50-a91</externalNote>
<internalNote>internalNote:4575-a0a</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>4</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4bfa-8e1</externalData>
<quoteId reference="../../quoteLineItem/quoteId" />
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>4</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="5" version="0" dateCreated="2016-10-05T12:18:36.786+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:4009-b69</externalNote>
<internalNote>internalNote:4711-b75</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>5</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:478f-a81</externalData>
<quoteId reference="../../quoteLineItem/quoteId" />
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>5</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
</lineItems>
<quoteStages />
<jobDetailId>1</jobDetailId>
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags />
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:e479-466</externalData>
<clientReference>UPD Reference 0.16165209896311228</clientReference>
</quote>
POST /TrafficLiteServer/openapi/quote HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"quoteStateType":"PROGRESS",
"externalData":"externalData:e479-466",
"realisationThreshold":0.8978,
"lineItems":[
{
"quoteLineItemType":"TIME",
"chargeBandId":{
"id":6
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Graphical Design",
"externalData":"externalData:-4167-a7",
"excludeFromInvoice":false,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"billLineItemOrder":-363530613,
"total":{
"currencyType":"GBP",
"amountString":1440
},
"dateCreated":"2016-10-05T10:18:36.788+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"id":6,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":0,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":18,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":100,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":1440
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":0,
"internalNote":"internalNote:-4db7-a5",
"realisationRate":null,
"externalNote":"externalNote:-46cf-85"
},
{
"quoteLineItemType":"THIRD_PARTY",
"chargeBandId":{
"id":3
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Printing of Brochures",
"externalData":"externalData:67653565",
"excludeFromInvoice":false,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"billLineItemOrder":-362376367,
"total":{
"currencyType":"GBP",
"amountString":0
},
"dateCreated":"2016-10-05T10:18:36.782+0000",
"rate":{
"currencyType":"GBP",
"amountString":0
},
"billableNetOtherCurrency":null,
"id":3,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":3,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":1,
"cost":{
"currencyType":"GBP",
"amountString":0
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":25,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":0,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":0
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":3,
"internalNote":"internalNote:e0bc3a00",
"realisationRate":null,
"externalNote":"externalNote:c053bb76"
},
{
"quoteLineItemType":"EXPENSES",
"chargeBandId":{
"id":2
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Transportation",
"externalData":"externalData:2d923121",
"excludeFromInvoice":false,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"billLineItemOrder":-362376367,
"total":{
"currencyType":"GBP",
"amountString":0
},
"dateCreated":"2016-10-05T10:18:36.775+0000",
"rate":{
"currencyType":"GBP",
"amountString":0
},
"billableNetOtherCurrency":null,
"id":1,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":2,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":5,
"cost":{
"currencyType":"GBP",
"amountString":0
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":25,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":0,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":0
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":2,
"internalNote":"internalNote:2f546b72",
"realisationRate":null,
"externalNote":"externalNote:39d3016f"
},
{
"quoteLineItemType":"TIME",
"chargeBandId":{
"id":6
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Document Layout ",
"externalData":"externalData:61335219",
"excludeFromInvoice":false,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"billLineItemOrder":-362376367,
"total":{
"currencyType":"GBP",
"amountString":1920
},
"dateCreated":"2016-10-05T10:18:36.780+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"id":2,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":1,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":24,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":100,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":1920
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":1,
"internalNote":"internalNote:5c650181",
"realisationRate":null,
"externalNote":"externalNote:6e191409"
},
{
"quoteLineItemType":"TIME",
"chargeBandId":{
"id":6
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Copywriting",
"externalData":"externalData:4bfa-8e1",
"excludeFromInvoice":false,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"billLineItemOrder":-362761115,
"total":{
"currencyType":"GBP",
"amountString":640
},
"dateCreated":"2016-10-05T10:18:36.784+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"id":4,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":4,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":8,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":100,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":640
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":4,
"internalNote":"internalNote:4575-a0a",
"realisationRate":null,
"externalNote":"externalNote:4a50-a91"
},
{
"quoteLineItemType":"FEE",
"chargeBandId":{
"id":6
},
"quoteStageUUID":null,
"rateOtherCurrency":null,
"description":"Proof Reading",
"externalData":"externalData:478f-a81",
"excludeFromInvoice":false,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"billLineItemOrder":-362761115,
"total":{
"currencyType":"GBP",
"amountString":800
},
"dateCreated":"2016-10-05T10:18:36.786+0000",
"rate":{
"currencyType":"GBP",
"amountString":80
},
"billableNetOtherCurrency":null,
"id":5,
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"billableNet":{
"currencyType":"GBP",
"amountString":0
},
"hierarchyOrder":5,
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"quantity":10,
"cost":{
"currencyType":"GBP",
"amountString":40
},
"totalOtherCurrency":null,
"taxTypeTwoId":null,
"multiplier":100,
"tenderLineItem":null,
"billType":"ACTUAL",
"realisationPercentage":100,
"dateModified":null,
"optional":false,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":800
},
"quoteId":{
"id":1
},
"taxTypeId":{
"id":1
},
"lineItemOrder":5,
"internalNote":"internalNote:4711-b75",
"realisationRate":null,
"externalNote":"externalNote:4009-b69"
}
],
"lastUpdatedUserId":7,
"otherCurrency":null,
"dateCreated":"2016-10-05T10:18:36.772+0000",
"multicurrencyEnabled":false,
"clientReference":"UPD Reference 0.747446080108055",
"id":1,
"deadline":"2016-12-21T17:00:00.000+0000",
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"realisationPercentage":100,
"dateModified":null,
"quoteUserCategoryListItemId":null,
"freeTags":[
],
"salesStageListItemId":null,
"version":0,
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":4800
},
"quoteNumber":"Q1",
"quoteStages":[
],
"quoteLocked":false,
"probabilityOfProceeding":0.97,
"quoteVersion":0,
"jobDetailId":1,
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"quoteOwnerSnapshotId":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:12 GMT
<quote id="1" version="2" dateCreated="2016-10-05T12:18:36.772+02:00" dateModified="2016-10-05T12:26:12.827+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>Q1</quoteNumber>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems>
<quoteLineItem id="6" version="0" dateCreated="2016-10-05T12:18:36.788+02:00">
<uuid>434ab81d-0219-4719-8e0c-329ef0e292b4</uuid>
<description>Graphical Design</description>
<externalNote>externalNote:-46cf-85</externalNote>
<internalNote>internalNote:-4db7-a5</internalNote>
<quantity>18.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-363530613</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-4167-a7</externalData>
<quoteId>
<id>1</id>
</quoteId>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>0</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="3" version="0" dateCreated="2016-10-05T12:18:36.782+02:00">
<uuid>14dda436-74c8-47f6-87aa-0372e9bcf0ed</uuid>
<description>Printing of Brochures</description>
<externalNote>externalNote:c053bb76</externalNote>
<internalNote>internalNote:e0bc3a00</internalNote>
<quantity>1.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>3</lineItemOrder>
<chargeBandId>
<id>3</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:67653565</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>THIRD_PARTY</quoteLineItemType>
<hierarchyOrder>3</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="1" version="0" dateCreated="2016-10-05T12:18:36.775+02:00">
<uuid>d36f3186-6334-4c61-9d66-cbf1f923ef0f</uuid>
<description>Transportation</description>
<externalNote>externalNote:39d3016f</externalNote>
<internalNote>internalNote:2f546b72</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:2d923121</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>EXPENSES</quoteLineItemType>
<hierarchyOrder>2</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="2" version="0" dateCreated="2016-10-05T12:18:36.780+02:00">
<uuid>786938ae-93d9-41ea-a5ba-e427e8a78af4</uuid>
<description>Document Layout </description>
<externalNote>externalNote:6e191409</externalNote>
<internalNote>internalNote:5c650181</internalNote>
<quantity>24.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362376367</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:61335219</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>1</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="4" version="0" dateCreated="2016-10-05T12:18:36.784+02:00">
<uuid>1bafb774-948f-4723-b838-99f9512bbef6</uuid>
<description>Copywriting</description>
<externalNote>externalNote:4a50-a91</externalNote>
<internalNote>internalNote:4575-a0a</internalNote>
<quantity>8.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>4</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:4bfa-8e1</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>TIME</quoteLineItemType>
<hierarchyOrder>4</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
<quoteLineItem id="5" version="0" dateCreated="2016-10-05T12:18:36.786+02:00">
<uuid>e32f8ad1-3e2e-43f8-bd8a-85c067fd7726</uuid>
<description>Proof Reading</description>
<externalNote>externalNote:4009-b69</externalNote>
<internalNote>internalNote:4711-b75</internalNote>
<quantity>10.00</quantity>
<multiplier>100.00000000</multiplier>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>5</lineItemOrder>
<chargeBandId>
<id>6</id>
</chargeBandId>
<billLineItemOrder>-362761115</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:478f-a81</externalData>
<quoteId reference="../../quoteLineItem/quoteId"/>
<quoteLineItemType>FEE</quoteLineItemType>
<hierarchyOrder>5</hierarchyOrder>
<optional>false</optional>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
</quoteLineItem>
</lineItems>
<quoteStages/>
<jobDetailId>1</jobDetailId>
<clientReference>UPD Reference 0.16165209896311228</clientReference>
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags/>
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:e479-466</externalData>
</quote>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:11 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.772+0000",
"dateModified":"2016-10-05T10:26:12.038+0000",
"lastUpdatedUserId":21,
"quoteStateType":"PROGRESS",
"quoteNumber":"Q1",
"probabilityOfProceeding":0.97,
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"deadline":"2016-12-21T17:00:00.000+0000",
"lineItems":[
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:36.784+0000",
"dateModified":null,
"uuid":"1bafb774-948f-4723-b838-99f9512bbef6",
"description":"Copywriting",
"externalNote":"externalNote:4a50-a91",
"internalNote":"internalNote:4575-a0a",
"quantity":8,
"multiplier":100,
"cost":{
"amountString":40,
"currencyType":"GBP"
},
"rate":{
"amountString":80,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":640,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":4,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:4bfa-8e1",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":4,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":640,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:36.780+0000",
"dateModified":null,
"uuid":"786938ae-93d9-41ea-a5ba-e427e8a78af4",
"description":"Document Layout ",
"externalNote":"externalNote:6e191409",
"internalNote":"internalNote:5c650181",
"quantity":24,
"multiplier":100,
"cost":{
"amountString":40,
"currencyType":"GBP"
},
"rate":{
"amountString":80,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1920,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":1,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:61335219",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":1,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1920,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:36.788+0000",
"dateModified":null,
"uuid":"434ab81d-0219-4719-8e0c-329ef0e292b4",
"description":"Graphical Design",
"externalNote":"externalNote:-46cf-85",
"internalNote":"internalNote:-4db7-a5",
"quantity":18,
"multiplier":100,
"cost":{
"amountString":40,
"currencyType":"GBP"
},
"rate":{
"amountString":80,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":1440,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":0,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-363530613,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:-4167-a7",
"quoteId":{
"id":1
},
"quoteLineItemType":"TIME",
"quoteStageUUID":null,
"hierarchyOrder":0,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":1440,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:36.775+0000",
"dateModified":null,
"uuid":"d36f3186-6334-4c61-9d66-cbf1f923ef0f",
"description":"Transportation",
"externalNote":"externalNote:39d3016f",
"internalNote":"internalNote:2f546b72",
"quantity":5,
"multiplier":25,
"cost":{
"amountString":0,
"currencyType":"GBP"
},
"rate":{
"amountString":0,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":2,
"chargeBandId":{
"id":2
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:2d923121",
"quoteId":{
"id":1
},
"quoteLineItemType":"EXPENSES",
"quoteStageUUID":null,
"hierarchyOrder":2,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:36.786+0000",
"dateModified":null,
"uuid":"e32f8ad1-3e2e-43f8-bd8a-85c067fd7726",
"description":"Proof Reading",
"externalNote":"externalNote:4009-b69",
"internalNote":"internalNote:4711-b75",
"quantity":10,
"multiplier":100,
"cost":{
"amountString":40,
"currencyType":"GBP"
},
"rate":{
"amountString":80,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":800,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":5,
"chargeBandId":{
"id":6
},
"billLineItemOrder":-362761115,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:478f-a81",
"quoteId":{
"id":1
},
"quoteLineItemType":"FEE",
"quoteStageUUID":null,
"hierarchyOrder":5,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":800,
"currencyType":"GBP"
},
"realisationPercentage":100
},
{
"@class":"com.sohnar.trafficlite.transfer.project.QuoteLineItemTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:36.782+0000",
"dateModified":null,
"uuid":"14dda436-74c8-47f6-87aa-0372e9bcf0ed",
"description":"Printing of Brochures",
"externalNote":"externalNote:c053bb76",
"internalNote":"internalNote:e0bc3a00",
"quantity":1,
"multiplier":25,
"cost":{
"amountString":0,
"currencyType":"GBP"
},
"rate":{
"amountString":0,
"currencyType":"GBP"
},
"realisationRate":null,
"rateOtherCurrency":null,
"total":{
"amountString":0,
"currencyType":"GBP"
},
"totalOtherCurrency":null,
"taxTypeId":{
"id":1
},
"taxTypeTwoId":null,
"lineItemOrder":3,
"chargeBandId":{
"id":3
},
"billLineItemOrder":-362376367,
"billType":"ACTUAL",
"billableNet":{
"amountString":0,
"currencyType":"GBP"
},
"billableNetOtherCurrency":null,
"excludeFromInvoice":false,
"externalData":"externalData:67653565",
"quoteId":{
"id":1
},
"quoteLineItemType":"THIRD_PARTY",
"quoteStageUUID":null,
"hierarchyOrder":3,
"optional":false,
"tenderLineItem":null,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0
}
],
"quoteStages":[
],
"jobDetailId":1,
"quoteOwnerSnapshotId":null,
"quoteUserCategoryListItemId":null,
"salesStageListItemId":null,
"clientReference":"UPD Reference 0.747446080108055",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"realisationThreshold":0.8978,
"freeTags":[
],
"quoteLocked":false,
"quoteVersion":0,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":4800,
"currencyType":"GBP"
},
"realisationPercentage":100,
"externalData":"externalData:e479-466",
"multicurrencyEnabled":false
}
Adds submitted quote and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/quote
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/quote HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<quote id="-1" version="-1" dateCreated="2016-10-05T12:18:36.772+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems />
<quoteStages />
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags />
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>4800.00</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>100</realisationPercentage>
<externalData>externalData:e479-466</externalData>
<clientReference>NEW Reference 0.9135621333915781</clientReference>
<jobDetailId>44</jobDetailId>
</quote>
PUT /TrafficLiteServer/openapi/quote HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"quoteStateType":"PROGRESS",
"externalData":"externalData:e479-466",
"realisationThreshold":0.8978,
"lineItems":[
],
"lastUpdatedUserId":7,
"otherCurrency":null,
"dateCreated":"2016-10-05T10:18:36.772+0000",
"multicurrencyEnabled":false,
"clientReference":"NEW Reference 0.8878187568507772",
"id":"-1",
"deadline":"2016-12-21T17:00:00.000+0000",
"potentialValue":{
"currencyType":"GBP",
"amountString":0
},
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"realisationPercentage":100,
"quoteUserCategoryListItemId":null,
"freeTags":[
],
"salesStageListItemId":null,
"version":"-1",
"estimatedSellValue":{
"currencyType":"GBP",
"amountString":4800
},
"quoteStages":[
],
"quoteLocked":false,
"probabilityOfProceeding":0.97,
"quoteVersion":0,
"jobDetailId":"43",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"quoteOwnerSnapshotId":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:10 GMT
<quote id="26" version="0" dateCreated="2016-10-05T12:26:10.003+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<quoteStateType>PROGRESS</quoteStateType>
<quoteNumber>Q14</quoteNumber>
<probabilityOfProceeding>0.97</probabilityOfProceeding>
<anticipatedOrder>2016-10-14T12:18:36.653+02:00</anticipatedOrder>
<deadline>2016-12-21T18:00:00.000+01:00</deadline>
<lineItems/>
<quoteStages/>
<jobDetailId>44</jobDetailId>
<clientReference>NEW Reference 0.9135621333915781</clientReference>
<multicurrencyRate>0.8978</multicurrencyRate>
<multiCurrencyEditMode>NO_MULTI_CURRENCY</multiCurrencyEditMode>
<multiCurrencySyncMode>BASE_TO_OTHER</multiCurrencySyncMode>
<realisationThreshold>0.8978</realisationThreshold>
<freeTags/>
<quoteLocked>false</quoteLocked>
<quoteVersion>0</quoteVersion>
<potentialValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</potentialValue>
<estimatedSellValue>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</estimatedSellValue>
<realisationPercentage>0</realisationPercentage>
<externalData>externalData:e479-466</externalData>
</quote>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:08 GMT
{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:26:08.806+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"quoteStateType":"PROGRESS",
"quoteNumber":"Q13",
"probabilityOfProceeding":0.97,
"anticipatedOrder":"2016-10-14T10:18:36.653+0000",
"deadline":"2016-12-21T17:00:00.000+0000",
"lineItems":[
],
"quoteStages":[
],
"jobDetailId":43,
"quoteOwnerSnapshotId":null,
"quoteUserCategoryListItemId":null,
"salesStageListItemId":null,
"clientReference":"NEW Reference 0.8878187568507772",
"appliedCustomRateSetId":null,
"multicurrencyRate":0.8978,
"otherCurrency":null,
"multiCurrencyEditMode":"NO_MULTI_CURRENCY",
"multiCurrencySyncMode":"BASE_TO_OTHER",
"realisationThresholdListItemId":null,
"realisationThreshold":0.8978,
"freeTags":[
],
"quoteLocked":false,
"quoteVersion":0,
"potentialValue":{
"amountString":0,
"currencyType":"GBP"
},
"estimatedSellValue":{
"amountString":0,
"currencyType":"GBP"
},
"realisationPercentage":0,
"externalData":"externalData:e479-466",
"multicurrencyEnabled":false
}
Returns page of lightweight chargeband objects.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:12 GMT
<pagedResult maxResults="8" windowSize="5" currentPage="1">
<chargeBand id="22" version="0" dateCreated="2016-10-05T12:27:09.577+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<name>NEW CB 0</name>
<description>NEW CB Description 0.6115891979200785</description>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>399.99000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBand id="21" version="0" dateCreated="2016-10-05T12:27:09.207+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<name>NEW CB 0</name>
<description>NEW CB Description 0.16997854361409737</description>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>399.99000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBand id="5" version="0" dateCreated="2016-10-05T12:18:13.366+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Junior Designer</name>
<cost>
<amountString>30.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>80.00000000</multiplier>
<rate>
<amountString>54.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>true</isDefault>
</chargeBand>
<chargeBand id="4" version="0" dateCreated="2016-10-05T12:18:13.364+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Manager</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:12 GMT
{
"maxResults":8,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.financial.ChargeBandTO",
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:27:09.577+0000",
"dateModified":null,
"chargeBandType":"EXPENSES",
"name":"NEW CB 0",
"description":"NEW CB Description 0.6115891979200785",
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"multiplier":25.00000000,
"rate":{
"amountString":399.99000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
{
"@class":"com.sohnar.trafficlite.transfer.financial.ChargeBandTO",
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:27:09.207+0000",
"dateModified":null,
"chargeBandType":"EXPENSES",
"name":"NEW CB 0",
"description":"NEW CB Description 0.16997854361409737",
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"multiplier":25.00000000,
"rate":{
"amountString":399.99000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
{
"@class":"com.sohnar.trafficlite.transfer.financial.ChargeBandTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
{
"@class":"com.sohnar.trafficlite.transfer.financial.ChargeBandTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:13.366+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Junior Designer",
"description":null,
"cost":{
"amountString":30.00,
"currencyType":"GBP"
},
"multiplier":80.00000000,
"rate":{
"amountString":54.00000000,
"currencyType":"GBP"
},
"isDefault":true,
"externalCode":null,
"secondaryExternalCode":null
},
{
"@class":"com.sohnar.trafficlite.transfer.financial.ChargeBandTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.364+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Manager",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
}
],
"windowSize":5,
"currentPage":1
}
Returns single chargeband object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/{id}
| name | description | default |
|---|---|---|
| id | ChargeBand's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/chargeband/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/chargeband/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:09 GMT
<chargeBand id="1" version="0" dateCreated="2016-10-05T12:18:13.356+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<name>Stock Images</name>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:09 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.356+0000",
"dateModified":null,
"chargeBandType":"EXPENSES",
"name":"Stock Images",
"description":null,
"cost":{
"amountString":0.00,
"currencyType":"GBP"
},
"multiplier":25.00000000,
"rate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
}
Deletes a single chargeband object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/{id}
| name | description | default |
|---|---|---|
| id | ChargeBand's id. |
DELETE /TrafficLiteServer/openapi/chargeband/20 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:07 GMT
Updates chargeband with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<chargeBand id="1" version="1" dateCreated="2016-10-05T12:18:13.356+02:00" dateModified="2016-10-05T12:27:11.100+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
<name>UPD Name 0.5515421290947113</name>
</chargeBand>
POST /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"cost":{
"currencyType":"GBP",
"amountString":0
},
"externalCode":null,
"secondaryExternalCode":null,
"multiplier":25,
"description":null,
"dateModified":null,
"version":0,
"isDefault":false,
"dateCreated":"2016-10-05T10:18:13.356+0000",
"rate":{
"currencyType":"GBP",
"amountString":0
},
"chargeBandType":"EXPENSES",
"name":"UPD Name 0.4818552266827364",
"id":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:11 GMT
<chargeBand id="1" version="2" dateCreated="2016-10-05T12:18:13.356+02:00" dateModified="2016-10-05T12:27:11.482+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<name>UPD Name 0.5515421290947113</name>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:10 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.356+0000",
"dateModified":"2016-10-05T10:27:11.100+0000",
"chargeBandType":"EXPENSES",
"name":"UPD Name 0.4818552266827364",
"description":null,
"cost":{
"amountString":0,
"currencyType":"GBP"
},
"multiplier":25,
"rate":{
"amountString":0,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
}
Adds submitted chargeband and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<chargeBand id="-1" version="-1" dateCreated="2016-10-05T12:18:13.356+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<currencyType>GBP</currencyType>
<amountString>100.00</amountString>
</rate>
<name>CB To Delete</name>
<description>Delete Record Description</description>
<isDefault>false</isDefault>
</chargeBand>
PUT /TrafficLiteServer/openapi/chargeband HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"cost":{
"currencyType":"GBP",
"amountString":0
},
"externalCode":null,
"secondaryExternalCode":null,
"multiplier":25,
"description":"Delete Record Description",
"version":"-1",
"isDefault":"false",
"dateCreated":"2016-10-05T10:18:13.356+0000",
"rate":{
"currencyType":"GBP",
"amountString":"100.00"
},
"chargeBandType":"EXPENSES",
"name":"CB To Delete",
"id":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:07 GMT
<chargeBand id="20" version="0" dateCreated="2016-10-05T12:27:08.685+02:00">
<chargeBandType>EXPENSES</chargeBandType>
<name>CB To Delete</name>
<description>Delete Record Description</description>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>25.00000000</multiplier>
<rate>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:07 GMT
{
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:27:08.293+0000",
"dateModified":null,
"chargeBandType":"EXPENSES",
"name":"CB To Delete",
"description":"Delete Record Description",
"cost":{
"amountString":0,
"currencyType":"GBP"
},
"multiplier":25,
"rate":{
"amountString":100.00,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
}
Returns page of lightweight customrateset objects.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/customrateset
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:12 GMT
<pagedResult maxResults="3" windowSize="5" currentPage="1">
<customRateSet id="3" version="0" dateCreated="2016-10-05T12:27:10.764+02:00">
<description>NEW CustomRateSet Description 0.4951482405898997</description>
<customRates/>
</customRateSet>
<customRateSet id="2" version="0" dateCreated="2016-10-05T12:27:10.371+02:00">
<description>NEW CustomRateSet Description 0.7164151175227499</description>
<customRates/>
</customRateSet>
<customRateSet id="1" version="0" dateCreated="2016-10-05T12:18:14.847+02:00">
<description>Default Custom Rates</description>
<customRates>
<customRate id="4" version="0" dateCreated="2016-10-05T12:18:14.855+02:00">
<uuid>9909c74d-3a5b-4b6b-ad0d-d10317884006</uuid>
<chargeBandId>
<id>3</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="6" version="0" dateCreated="2016-10-05T12:18:14.858+02:00">
<uuid>f414bd1c-46b4-41e5-9f65-0e452982cc41</uuid>
<chargeBandId>
<id>4</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="1" version="0" dateCreated="2016-10-05T12:18:14.849+02:00">
<uuid>fb5459c3-9cb7-4004-8ccf-c9d94d863a35</uuid>
<chargeBandId>
<id>1</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="2" version="0" dateCreated="2016-10-05T12:18:14.851+02:00">
<uuid>0b7cac8c-5060-4a9e-868d-21232ebcfef2</uuid>
<chargeBandId>
<id>6</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="3" version="0" dateCreated="2016-10-05T12:18:14.853+02:00">
<uuid>68ba773b-1528-4d29-8ee3-fcd194e1537e</uuid>
<chargeBandId>
<id>2</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="5" version="0" dateCreated="2016-10-05T12:18:14.857+02:00">
<uuid>e4c2d228-71d3-4be0-b142-db3f46b6a518</uuid>
<chargeBandId>
<id>5</id>
</chargeBandId>
<customRate>
<amountString>27.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>90.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
</customRates>
</customRateSet>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:12 GMT
{
"maxResults":3,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.financial.CustomRateSetTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:27:10.764+0000",
"dateModified":null,
"trafficCompanySettingsId":null,
"description":"NEW CustomRateSet Description 0.4951482405898997",
"customRates":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.financial.CustomRateSetTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:27:10.371+0000",
"dateModified":null,
"trafficCompanySettingsId":null,
"description":"NEW CustomRateSet Description 0.7164151175227499",
"customRates":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.financial.CustomRateSetTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:14.847+0000",
"dateModified":null,
"trafficCompanySettingsId":null,
"description":"Default Custom Rates",
"customRates":[
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:14.855+0000",
"dateModified":null,
"uuid":"9909c74d-3a5b-4b6b-ad0d-d10317884006",
"chargeBandId":{
"id":3
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.858+0000",
"dateModified":null,
"uuid":"f414bd1c-46b4-41e5-9f65-0e452982cc41",
"chargeBandId":{
"id":4
},
"customRate":{
"amountString":40.00000000,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:14.849+0000",
"dateModified":null,
"uuid":"fb5459c3-9cb7-4004-8ccf-c9d94d863a35",
"chargeBandId":{
"id":1
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:14.851+0000",
"dateModified":null,
"uuid":"0b7cac8c-5060-4a9e-868d-21232ebcfef2",
"chargeBandId":{
"id":6
},
"customRate":{
"amountString":40.00000000,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:14.853+0000",
"dateModified":null,
"uuid":"68ba773b-1528-4d29-8ee3-fcd194e1537e",
"chargeBandId":{
"id":2
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:14.857+0000",
"dateModified":null,
"uuid":"e4c2d228-71d3-4be0-b142-db3f46b6a518",
"chargeBandId":{
"id":5
},
"customRate":{
"amountString":27.00000000,
"currencyType":"GBP"
},
"multiplier":90.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
}
]
}
],
"windowSize":5,
"currentPage":1
}
Returns single customrateset object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/customrateset/{id}
| name | description | default |
|---|---|---|
| id | CustomRateSet's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/chargeband/customrateset/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/chargeband/customrateset/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:13 GMT
<customRateSet id="1" version="0" dateCreated="2016-10-05T12:18:14.847+02:00">
<description>Default Custom Rates</description>
<customRates>
<customRate id="4" version="0" dateCreated="2016-10-05T12:18:14.855+02:00">
<uuid>9909c74d-3a5b-4b6b-ad0d-d10317884006</uuid>
<chargeBandId>
<id>3</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="6" version="0" dateCreated="2016-10-05T12:18:14.858+02:00">
<uuid>f414bd1c-46b4-41e5-9f65-0e452982cc41</uuid>
<chargeBandId>
<id>4</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="1" version="0" dateCreated="2016-10-05T12:18:14.849+02:00">
<uuid>fb5459c3-9cb7-4004-8ccf-c9d94d863a35</uuid>
<chargeBandId>
<id>1</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="2" version="0" dateCreated="2016-10-05T12:18:14.851+02:00">
<uuid>0b7cac8c-5060-4a9e-868d-21232ebcfef2</uuid>
<chargeBandId>
<id>6</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="3" version="0" dateCreated="2016-10-05T12:18:14.853+02:00">
<uuid>68ba773b-1528-4d29-8ee3-fcd194e1537e</uuid>
<chargeBandId>
<id>2</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="5" version="0" dateCreated="2016-10-05T12:18:14.857+02:00">
<uuid>e4c2d228-71d3-4be0-b142-db3f46b6a518</uuid>
<chargeBandId>
<id>5</id>
</chargeBandId>
<customRate>
<amountString>27.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>90.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
</customRates>
</customRateSet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:12 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:14.847+0000",
"dateModified":null,
"trafficCompanySettingsId":null,
"description":"Default Custom Rates",
"customRates":[
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:14.855+0000",
"dateModified":null,
"uuid":"9909c74d-3a5b-4b6b-ad0d-d10317884006",
"chargeBandId":{
"id":3
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.858+0000",
"dateModified":null,
"uuid":"f414bd1c-46b4-41e5-9f65-0e452982cc41",
"chargeBandId":{
"id":4
},
"customRate":{
"amountString":40.00000000,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:14.849+0000",
"dateModified":null,
"uuid":"fb5459c3-9cb7-4004-8ccf-c9d94d863a35",
"chargeBandId":{
"id":1
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:14.851+0000",
"dateModified":null,
"uuid":"0b7cac8c-5060-4a9e-868d-21232ebcfef2",
"chargeBandId":{
"id":6
},
"customRate":{
"amountString":40.00000000,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:14.853+0000",
"dateModified":null,
"uuid":"68ba773b-1528-4d29-8ee3-fcd194e1537e",
"chargeBandId":{
"id":2
},
"customRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:14.857+0000",
"dateModified":null,
"uuid":"e4c2d228-71d3-4be0-b142-db3f46b6a518",
"chargeBandId":{
"id":5
},
"customRate":{
"amountString":27.00000000,
"currencyType":"GBP"
},
"multiplier":90.00000000,
"exclude":false,
"customRateCurrencyOverrides":[
]
}
]
}
Deletes a single customrateset object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/customrateset/{id}
| name | description | default |
|---|---|---|
| id | CustomRateSet's id. |
DELETE /TrafficLiteServer/openapi/chargeband/customrateset/5 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:12 GMT
Updates customrateset with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/customrateset
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<customRateSet id="1" version="1" dateCreated="2016-10-05T12:18:14.847+02:00" dateModified="2016-10-05T12:27:13.871+02:00">
<customRates>
<customRate id="4" version="0" dateCreated="2016-10-05T12:18:14.855+02:00">
<uuid>9909c74d-3a5b-4b6b-ad0d-d10317884006</uuid>
<chargeBandId>
<id>3</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
<customRate id="6" version="0" dateCreated="2016-10-05T12:18:14.858+02:00">
<uuid>f414bd1c-46b4-41e5-9f65-0e452982cc41</uuid>
<chargeBandId>
<id>4</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
<customRate id="1" version="0" dateCreated="2016-10-05T12:18:14.849+02:00">
<uuid>fb5459c3-9cb7-4004-8ccf-c9d94d863a35</uuid>
<chargeBandId>
<id>1</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
<customRate id="2" version="0" dateCreated="2016-10-05T12:18:14.851+02:00">
<uuid>0b7cac8c-5060-4a9e-868d-21232ebcfef2</uuid>
<chargeBandId>
<id>6</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
<customRate id="3" version="0" dateCreated="2016-10-05T12:18:14.853+02:00">
<uuid>68ba773b-1528-4d29-8ee3-fcd194e1537e</uuid>
<chargeBandId>
<id>2</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
<customRate id="5" version="0" dateCreated="2016-10-05T12:18:14.857+02:00">
<uuid>e4c2d228-71d3-4be0-b142-db3f46b6a518</uuid>
<chargeBandId>
<id>5</id>
</chargeBandId>
<customRate>
<amountString>27.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>90.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides />
</customRate>
</customRates>
<description>CustomRateSet Description 0.7196610685560101</description>
</customRateSet>
POST /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:14.847+0000",
"description":"CustomRateSet Description 0.9895240155895937",
"dateModified":null,
"id":1,
"trafficCompanySettingsId":null,
"version":0,
"customRates":[
{
"dateCreated":"2016-10-05T10:18:14.855+0000",
"chargeBandId":{
"id":3
},
"multiplier":null,
"customRate":{
"currencyType":"GBP",
"amountString":0
},
"dateModified":null,
"exclude":false,
"id":4,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"9909c74d-3a5b-4b6b-ad0d-d10317884006"
},
{
"dateCreated":"2016-10-05T10:18:14.858+0000",
"chargeBandId":{
"id":4
},
"multiplier":100,
"customRate":{
"currencyType":"GBP",
"amountString":40
},
"dateModified":null,
"exclude":false,
"id":6,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"f414bd1c-46b4-41e5-9f65-0e452982cc41"
},
{
"dateCreated":"2016-10-05T10:18:14.849+0000",
"chargeBandId":{
"id":1
},
"multiplier":null,
"customRate":{
"currencyType":"GBP",
"amountString":0
},
"dateModified":null,
"exclude":false,
"id":1,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"fb5459c3-9cb7-4004-8ccf-c9d94d863a35"
},
{
"dateCreated":"2016-10-05T10:18:14.851+0000",
"chargeBandId":{
"id":6
},
"multiplier":100,
"customRate":{
"currencyType":"GBP",
"amountString":40
},
"dateModified":null,
"exclude":false,
"id":2,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"0b7cac8c-5060-4a9e-868d-21232ebcfef2"
},
{
"dateCreated":"2016-10-05T10:18:14.853+0000",
"chargeBandId":{
"id":2
},
"multiplier":null,
"customRate":{
"currencyType":"GBP",
"amountString":0
},
"dateModified":null,
"exclude":false,
"id":3,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"68ba773b-1528-4d29-8ee3-fcd194e1537e"
},
{
"dateCreated":"2016-10-05T10:18:14.857+0000",
"chargeBandId":{
"id":5
},
"multiplier":90,
"customRate":{
"currencyType":"GBP",
"amountString":27
},
"dateModified":null,
"exclude":false,
"id":5,
"customRateCurrencyOverrides":[
],
"version":0,
"uuid":"e4c2d228-71d3-4be0-b142-db3f46b6a518"
}
]
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:13 GMT
<customRateSet id="1" version="2" dateCreated="2016-10-05T12:18:14.847+02:00" dateModified="2016-10-05T12:27:14.316+02:00">
<description>CustomRateSet Description 0.7196610685560101</description>
<customRates>
<customRate id="4" version="0" dateCreated="2016-10-05T12:18:14.855+02:00">
<uuid>9909c74d-3a5b-4b6b-ad0d-d10317884006</uuid>
<chargeBandId>
<id>3</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="6" version="0" dateCreated="2016-10-05T12:18:14.858+02:00">
<uuid>f414bd1c-46b4-41e5-9f65-0e452982cc41</uuid>
<chargeBandId>
<id>4</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="1" version="0" dateCreated="2016-10-05T12:18:14.849+02:00">
<uuid>fb5459c3-9cb7-4004-8ccf-c9d94d863a35</uuid>
<chargeBandId>
<id>1</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="2" version="0" dateCreated="2016-10-05T12:18:14.851+02:00">
<uuid>0b7cac8c-5060-4a9e-868d-21232ebcfef2</uuid>
<chargeBandId>
<id>6</id>
</chargeBandId>
<customRate>
<amountString>40.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>100.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="3" version="0" dateCreated="2016-10-05T12:18:14.853+02:00">
<uuid>68ba773b-1528-4d29-8ee3-fcd194e1537e</uuid>
<chargeBandId>
<id>2</id>
</chargeBandId>
<customRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</customRate>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
<customRate id="5" version="0" dateCreated="2016-10-05T12:18:14.857+02:00">
<uuid>e4c2d228-71d3-4be0-b142-db3f46b6a518</uuid>
<chargeBandId>
<id>5</id>
</chargeBandId>
<customRate>
<amountString>27.00000000</amountString>
<currencyType>GBP</currencyType>
</customRate>
<multiplier>90.00000000</multiplier>
<exclude>false</exclude>
<customRateCurrencyOverrides/>
</customRate>
</customRates>
</customRateSet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:13 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:14.847+0000",
"dateModified":"2016-10-05T10:27:13.871+0000",
"trafficCompanySettingsId":null,
"description":"CustomRateSet Description 0.9895240155895937",
"customRates":[
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:14.849+0000",
"dateModified":null,
"uuid":"fb5459c3-9cb7-4004-8ccf-c9d94d863a35",
"chargeBandId":{
"id":1
},
"customRate":{
"amountString":0,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:14.858+0000",
"dateModified":null,
"uuid":"f414bd1c-46b4-41e5-9f65-0e452982cc41",
"chargeBandId":{
"id":4
},
"customRate":{
"amountString":40,
"currencyType":"GBP"
},
"multiplier":100,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:14.853+0000",
"dateModified":null,
"uuid":"68ba773b-1528-4d29-8ee3-fcd194e1537e",
"chargeBandId":{
"id":2
},
"customRate":{
"amountString":0,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:14.851+0000",
"dateModified":null,
"uuid":"0b7cac8c-5060-4a9e-868d-21232ebcfef2",
"chargeBandId":{
"id":6
},
"customRate":{
"amountString":40,
"currencyType":"GBP"
},
"multiplier":100,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:14.855+0000",
"dateModified":null,
"uuid":"9909c74d-3a5b-4b6b-ad0d-d10317884006",
"chargeBandId":{
"id":3
},
"customRate":{
"amountString":0,
"currencyType":"GBP"
},
"multiplier":null,
"exclude":false,
"customRateCurrencyOverrides":[
]
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:14.857+0000",
"dateModified":null,
"uuid":"e4c2d228-71d3-4be0-b142-db3f46b6a518",
"chargeBandId":{
"id":5
},
"customRate":{
"amountString":27,
"currencyType":"GBP"
},
"multiplier":90,
"exclude":false,
"customRateCurrencyOverrides":[
]
}
]
}
Adds submitted customrateset and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/chargeband/customrateset
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<customRateSet id="-1" version="-1" dateCreated="2016-10-05T12:18:14.847+02:00">
<customRates />
<description>NEW CustomRateSet Description 0.4951482405898997</description>
</customRateSet>
PUT /TrafficLiteServer/openapi/chargeband/customrateset HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:14.847+0000",
"description":"NEW CustomRateSet Description 0.7164151175227499",
"id":"-1",
"trafficCompanySettingsId":null,
"version":"-1",
"customRates":[
]
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:10 GMT
<customRateSet id="3" version="0" dateCreated="2016-10-05T12:27:10.764+02:00">
<description>NEW CustomRateSet Description 0.4951482405898997</description>
<customRates/>
</customRateSet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:10 GMT
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:27:10.371+0000",
"dateModified":null,
"trafficCompanySettingsId":null,
"description":"NEW CustomRateSet Description 0.7164151175227499",
"customRates":[
]
}
Returns page of lightweight timeentry objects.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries
| name | description | default |
|---|---|---|
| startDate | Specifies date range. | |
| endDate | Specifies date range. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter for list values. | |
| order | Result's order property. | endTime |
| searchWrapper | Different representation of the data that include more details. | false |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeentries?startDate=2010-01-01&endDate=2017-01-01 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeentries?startDate=2010-01-01&endDate=2017-01-01 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:16 GMT
<pagedResult maxResults="145" windowSize="5" currentPage="1">
<jobTaskTimeEntry id="1" version="2" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:15.567+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.03585451996515432</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="6" version="2" dateCreated="2016-10-05T12:18:57.965+02:00" dateModified="2016-10-05T12:27:15.668+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8092050787228244</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="11" version="2" dateCreated="2016-10-05T12:18:58.077+02:00" dateModified="2016-10-05T12:27:15.787+02:00">
<jobTaskId>
<id>560</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.17641156780746947</comment>
<endTime>2016-09-26T12:18:58.070+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>24</id>
</trafficEmployeeId>
<taskDescription>Evgeni Pavlov - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>3</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="16" version="2" dateCreated="2016-10-05T12:18:58.164+02:00" dateModified="2016-10-05T12:27:15.929+02:00">
<jobTaskId>
<id>561</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.3226195170292331</comment>
<endTime>2016-09-26T12:18:58.159+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>22</id>
</trafficEmployeeId>
<taskDescription>Pierpaolo Iannici - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>4</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="21" version="2" dateCreated="2016-10-05T12:18:58.279+02:00" dateModified="2016-10-05T12:27:16.014+02:00">
<jobTaskId>
<id>97</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.2885987208892431</comment>
<endTime>2016-09-26T12:18:58.275+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>16</id>
</trafficEmployeeId>
<taskDescription>Nathaniel Sawit - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>5</id>
</jobId>
<allocationGroupId>
<id>5</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:16 GMT
{
"maxResults":145,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":"2016-10-05T10:27:15.567+0000",
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.03585451996515432",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":6,
"version":2,
"dateCreated":"2016-10-05T10:18:57.965+0000",
"dateModified":"2016-10-05T10:27:15.668+0000",
"jobTaskId":{
"id":433
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.8092050787228244",
"endTime":"2016-09-26T10:18:57.958+0000",
"minutes":120,
"trafficEmployeeId":{
"id":5
},
"taskDescription":"Louis Almeida - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":20
},
"allocationGroupId":{
"id":2
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":80.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.958+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":11,
"version":2,
"dateCreated":"2016-10-05T10:18:58.077+0000",
"dateModified":"2016-10-05T10:27:15.787+0000",
"jobTaskId":{
"id":560
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.17641156780746947",
"endTime":"2016-09-26T10:18:58.070+0000",
"minutes":120,
"trafficEmployeeId":{
"id":24
},
"taskDescription":"Evgeni Pavlov - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":3
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.070+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":16,
"version":2,
"dateCreated":"2016-10-05T10:18:58.164+0000",
"dateModified":"2016-10-05T10:27:15.929+0000",
"jobTaskId":{
"id":561
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.3226195170292331",
"endTime":"2016-09-26T10:18:58.159+0000",
"minutes":120,
"trafficEmployeeId":{
"id":22
},
"taskDescription":"Pierpaolo Iannici - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":4
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.159+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":21,
"version":2,
"dateCreated":"2016-10-05T10:18:58.279+0000",
"dateModified":"2016-10-05T10:27:16.014+0000",
"jobTaskId":{
"id":97
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.2885987208892431",
"endTime":"2016-09-26T10:18:58.275+0000",
"minutes":120,
"trafficEmployeeId":{
"id":16
},
"taskDescription":"Nathaniel Sawit - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":5
},
"allocationGroupId":{
"id":5
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.275+0000"
}
],
"windowSize":5,
"currentPage":1
}
Returns single timeentry object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries/{id}
| name | description | default |
|---|---|---|
| id | TimeEntry's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeentries/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeentries/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:21 GMT
<jobTaskTimeEntry id="1" version="2" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:15.567+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.03585451996515432</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:21 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":"2016-10-05T10:27:15.567+0000",
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.03585451996515432",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
}
Deletes single timeentry object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries/{id}
| name | description | default |
|---|---|---|
| forceUpdate | Allow changes even when locked by approval flag is set or the task is complete. Also allows user to change lockedByApproval flag. | false |
| id | TimeEntry's id. |
DELETE /TrafficLiteServer/openapi/timeentries/157 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:21 GMT
Updates timeentry with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries
| name | description | default |
|---|---|---|
| forceUpdate | Allow changes even when locked by approval flag is set or the task is complete. Also allows user to change lockedByApproval flag. | false |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/timeentries HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTaskTimeEntry id="1" version="3" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:22.038+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
<comment>UPD Comment 0.4655955486976012</comment>
</jobTaskTimeEntry>
POST /TrafficLiteServer/openapi/timeentries HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"taskComplete":false,
"exportError":null,
"trafficEmployeeId":{
"id":1
},
"externalCode":null,
"readyForExport":false,
"chargeBandId":{
"id":6
},
"secondaryExternalCode":null,
"rejected":false,
"taskDescription":"Simon Stewart - Task",
"taskRate":{
"currencyType":"GBP",
"amountString":80
},
"lockedByApproval":false,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000",
"id":1,
"exported":false,
"lockedByApprovalEmployeeId":null,
"jobTaskId":{
"id":332
},
"minutes":120,
"dateModified":"2016-10-05T10:27:15.567+0000",
"version":2,
"billable":false,
"jobId":{
"id":15
},
"valueOfTimeEntry":{
"currencyType":"GBP",
"amountString":0
},
"submitted":false,
"workPoints":null,
"timeEntryPersonalRate":{
"currencyType":"GBP",
"amountString":0
},
"jobStageDescription":null,
"comment":"UPD Comment 0.2677773754392969",
"allocationGroupId":{
"id":1
},
"endTime":"2016-09-26T10:18:57.785+0000",
"timeEntryCost":{
"currencyType":"GBP",
"amountString":90
},
"lockedByApprovalDate":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:22 GMT
<jobTaskTimeEntry id="1" version="4" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:22.451+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>UPD Comment 0.4655955486976012</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:21 GMT
{
"id":1,
"version":3,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":"2016-10-05T10:27:22.038+0000",
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"UPD Comment 0.2677773754392969",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
}
Updates page of sent time entries and returns page of their's updated versions
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries/batch
| name | description | default |
|---|---|---|
| forceUpdate | Allow changes even when locked by approval flag is set or the task is complete. Also allows user to change lockedByApproval flag. | false |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/timeentries/batch HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<list>
<jobTaskTimeEntry id="1" version="1" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:14.889+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.03585451996515432</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="6" version="1" dateCreated="2016-10-05T12:18:57.965+02:00" dateModified="2016-10-05T12:27:14.970+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8092050787228244</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="11" version="1" dateCreated="2016-10-05T12:18:58.077+02:00" dateModified="2016-10-05T12:27:15.031+02:00">
<jobTaskId>
<id>560</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.17641156780746947</comment>
<endTime>2016-09-26T12:18:58.070+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>24</id>
</trafficEmployeeId>
<taskDescription>Evgeni Pavlov - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>3</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="16" version="1" dateCreated="2016-10-05T12:18:58.164+02:00" dateModified="2016-10-05T12:27:15.108+02:00">
<jobTaskId>
<id>561</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.3226195170292331</comment>
<endTime>2016-09-26T12:18:58.159+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>22</id>
</trafficEmployeeId>
<taskDescription>Pierpaolo Iannici - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>4</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="21" version="1" dateCreated="2016-10-05T12:18:58.279+02:00" dateModified="2016-10-05T12:27:15.176+02:00">
<jobTaskId>
<id>97</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.2885987208892431</comment>
<endTime>2016-09-26T12:18:58.275+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>16</id>
</trafficEmployeeId>
<taskDescription>Nathaniel Sawit - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>5</id>
</jobId>
<allocationGroupId>
<id>5</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
</list>
POST /TrafficLiteServer/openapi/timeentries/batch HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.8717790714781171",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:57.965+0000",
"dateModified":null,
"jobTaskId":{
"id":433
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.873416152645682",
"endTime":"2016-09-26T10:18:57.958+0000",
"minutes":120,
"trafficEmployeeId":{
"id":5
},
"taskDescription":"Louis Almeida - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":20
},
"allocationGroupId":{
"id":2
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":80.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.958+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:58.077+0000",
"dateModified":null,
"jobTaskId":{
"id":560
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.32288098118106845",
"endTime":"2016-09-26T10:18:58.070+0000",
"minutes":120,
"trafficEmployeeId":{
"id":24
},
"taskDescription":"Evgeni Pavlov - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":3
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.070+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:58.164+0000",
"dateModified":null,
"jobTaskId":{
"id":561
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.33472135248772683",
"endTime":"2016-09-26T10:18:58.159+0000",
"minutes":120,
"trafficEmployeeId":{
"id":22
},
"taskDescription":"Pierpaolo Iannici - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":4
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.159+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:18:58.279+0000",
"dateModified":null,
"jobTaskId":{
"id":97
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.6785460975927875",
"endTime":"2016-09-26T10:18:58.275+0000",
"minutes":120,
"trafficEmployeeId":{
"id":16
},
"taskDescription":"Nathaniel Sawit - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":5
},
"allocationGroupId":{
"id":5
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.275+0000"
}
]
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:16 GMT
<list>
<jobTaskTimeEntry id="1" version="2" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:15.567+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.03585451996515432</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="6" version="2" dateCreated="2016-10-05T12:18:57.965+02:00" dateModified="2016-10-05T12:27:15.668+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8092050787228244</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="11" version="2" dateCreated="2016-10-05T12:18:58.077+02:00" dateModified="2016-10-05T12:27:15.787+02:00">
<jobTaskId>
<id>560</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.17641156780746947</comment>
<endTime>2016-09-26T12:18:58.070+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>24</id>
</trafficEmployeeId>
<taskDescription>Evgeni Pavlov - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>3</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="16" version="2" dateCreated="2016-10-05T12:18:58.164+02:00" dateModified="2016-10-05T12:27:15.929+02:00">
<jobTaskId>
<id>561</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.3226195170292331</comment>
<endTime>2016-09-26T12:18:58.159+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>22</id>
</trafficEmployeeId>
<taskDescription>Pierpaolo Iannici - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>4</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="21" version="2" dateCreated="2016-10-05T12:18:58.279+02:00" dateModified="2016-10-05T12:27:16.014+02:00">
<jobTaskId>
<id>97</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.2885987208892431</comment>
<endTime>2016-09-26T12:18:58.275+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>16</id>
</trafficEmployeeId>
<taskDescription>Nathaniel Sawit - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>5</id>
</jobId>
<allocationGroupId>
<id>5</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
</list>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:14 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":"2016-10-05T10:27:14.889+0000",
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.8717790714781171",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:18:57.965+0000",
"dateModified":"2016-10-05T10:27:14.970+0000",
"jobTaskId":{
"id":433
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.873416152645682",
"endTime":"2016-09-26T10:18:57.958+0000",
"minutes":120,
"trafficEmployeeId":{
"id":5
},
"taskDescription":"Louis Almeida - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":20
},
"allocationGroupId":{
"id":2
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":80.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.958+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":11,
"version":1,
"dateCreated":"2016-10-05T10:18:58.077+0000",
"dateModified":"2016-10-05T10:27:15.031+0000",
"jobTaskId":{
"id":560
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.32288098118106845",
"endTime":"2016-09-26T10:18:58.070+0000",
"minutes":120,
"trafficEmployeeId":{
"id":24
},
"taskDescription":"Evgeni Pavlov - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":3
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.070+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":16,
"version":1,
"dateCreated":"2016-10-05T10:18:58.164+0000",
"dateModified":"2016-10-05T10:27:15.108+0000",
"jobTaskId":{
"id":561
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.33472135248772683",
"endTime":"2016-09-26T10:18:58.159+0000",
"minutes":120,
"trafficEmployeeId":{
"id":22
},
"taskDescription":"Pierpaolo Iannici - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":4
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.159+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":21,
"version":1,
"dateCreated":"2016-10-05T10:18:58.279+0000",
"dateModified":"2016-10-05T10:27:15.176+0000",
"jobTaskId":{
"id":97
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.6785460975927875",
"endTime":"2016-09-26T10:18:58.275+0000",
"minutes":120,
"trafficEmployeeId":{
"id":16
},
"taskDescription":"Nathaniel Sawit - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":5
},
"allocationGroupId":{
"id":5
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.275+0000"
}
]
Adds submitted timeentry and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries
| name | description | default |
|---|---|---|
| forceUpdate | Allow changes even when locked by approval flag is set or the task is complete. Also allows user to change lockedByApproval flag. | false |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/timeentries HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTaskTimeEntry id="-1" version="-1" dateCreated="2016-10-05T12:18:57.803+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
<comment>NEW Comment 0.9856311693465443</comment>
</jobTaskTimeEntry>
PUT /TrafficLiteServer/openapi/timeentries HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"taskComplete":false,
"exportError":null,
"trafficEmployeeId":{
"id":1
},
"externalCode":null,
"readyForExport":false,
"chargeBandId":{
"id":6
},
"secondaryExternalCode":null,
"rejected":false,
"taskDescription":"Simon Stewart - Task",
"taskRate":{
"currencyType":"GBP",
"amountString":80
},
"lockedByApproval":false,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000",
"id":"-1",
"exported":false,
"lockedByApprovalEmployeeId":null,
"jobTaskId":{
"id":332
},
"minutes":120,
"version":"-1",
"billable":false,
"jobId":{
"id":15
},
"valueOfTimeEntry":{
"currencyType":"GBP",
"amountString":0
},
"submitted":false,
"workPoints":null,
"timeEntryPersonalRate":{
"currencyType":"GBP",
"amountString":0
},
"jobStageDescription":null,
"comment":"NEW Comment 0.5572634576619765",
"allocationGroupId":{
"id":1
},
"endTime":"2016-09-26T10:18:57.785+0000",
"timeEntryCost":{
"currencyType":"GBP",
"amountString":90
},
"lockedByApprovalDate":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:20 GMT
<jobTaskTimeEntry id="157" version="0" dateCreated="2016-10-05T12:27:21.056+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.9856311693465443</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:20 GMT
{
"id":156,
"version":0,
"dateCreated":"2016-10-05T10:27:20.441+0000",
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.5572634576619765",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
}
Creates page of sent time entries.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries/batch
| name | description | default |
|---|---|---|
| forceUpdate | Allow changes even when locked by approval flag is set or the task is complete. Also allows user to change lockedByApproval flag. | false |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/timeentries/batch HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<list>
<jobTaskTimeEntry id="1" version="2" dateCreated="2016-10-05T12:18:57.803+02:00" dateModified="2016-10-05T12:27:15.567+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.1888361137896054</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="146" version="0" dateCreated="2016-10-05T12:27:16.880+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.63632703559412</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="6" version="2" dateCreated="2016-10-05T12:18:57.965+02:00" dateModified="2016-10-05T12:27:15.668+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.6146344892259459</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="147" version="0" dateCreated="2016-10-05T12:27:17.041+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8563308268904375</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="11" version="2" dateCreated="2016-10-05T12:18:58.077+02:00" dateModified="2016-10-05T12:27:15.787+02:00">
<jobTaskId>
<id>560</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.7255902870480188</comment>
<endTime>2016-09-26T12:18:58.070+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>24</id>
</trafficEmployeeId>
<taskDescription>Evgeni Pavlov - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>3</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
</list>
PUT /TrafficLiteServer/openapi/timeentries/batch HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:57.803+0000",
"dateModified":"2016-10-05T10:27:15.567+0000",
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.20672127173778732",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":6,
"version":2,
"dateCreated":"2016-10-05T10:18:57.965+0000",
"dateModified":"2016-10-05T10:27:15.668+0000",
"jobTaskId":{
"id":433
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.46444072256333957",
"endTime":"2016-09-26T10:18:57.958+0000",
"minutes":120,
"trafficEmployeeId":{
"id":5
},
"taskDescription":"Louis Almeida - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":20
},
"allocationGroupId":{
"id":2
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":80.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.958+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":11,
"version":2,
"dateCreated":"2016-10-05T10:18:58.077+0000",
"dateModified":"2016-10-05T10:27:15.787+0000",
"jobTaskId":{
"id":560
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.6966338993165295",
"endTime":"2016-09-26T10:18:58.070+0000",
"minutes":120,
"trafficEmployeeId":{
"id":24
},
"taskDescription":"Evgeni Pavlov - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":3
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.070+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":16,
"version":2,
"dateCreated":"2016-10-05T10:18:58.164+0000",
"dateModified":"2016-10-05T10:27:15.929+0000",
"jobTaskId":{
"id":561
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.49731102150100126",
"endTime":"2016-09-26T10:18:58.159+0000",
"minutes":120,
"trafficEmployeeId":{
"id":22
},
"taskDescription":"Pierpaolo Iannici - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":4
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.159+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":21,
"version":2,
"dateCreated":"2016-10-05T10:18:58.279+0000",
"dateModified":"2016-10-05T10:27:16.014+0000",
"jobTaskId":{
"id":97
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.028822331190458628",
"endTime":"2016-09-26T10:18:58.275+0000",
"minutes":120,
"trafficEmployeeId":{
"id":16
},
"taskDescription":"Nathaniel Sawit - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":5
},
"allocationGroupId":{
"id":5
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.275+0000"
}
]
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:19 GMT
<list>
<jobTaskTimeEntry id="151" version="0" dateCreated="2016-10-05T12:27:18.458+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.1888361137896054</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="152" version="0" dateCreated="2016-10-05T12:27:18.597+02:00">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.63632703559412</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="153" version="0" dateCreated="2016-10-05T12:27:18.744+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.6146344892259459</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="154" version="0" dateCreated="2016-10-05T12:27:18.916+02:00">
<jobTaskId>
<id>433</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8563308268904375</comment>
<endTime>2016-09-26T12:18:57.958+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<taskDescription>Louis Almeida - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>20</id>
</jobId>
<allocationGroupId>
<id>2</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>80.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
<jobTaskTimeEntry id="155" version="0" dateCreated="2016-10-05T12:27:19.074+02:00">
<jobTaskId>
<id>560</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.7255902870480188</comment>
<endTime>2016-09-26T12:18:58.070+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>24</id>
</trafficEmployeeId>
<taskDescription>Evgeni Pavlov - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>25</id>
</jobId>
<allocationGroupId>
<id>3</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
</jobTaskTimeEntry>
</list>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:18 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":146,
"version":0,
"dateCreated":"2016-10-05T10:27:16.880+0000",
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.20672127173778732",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":147,
"version":0,
"dateCreated":"2016-10-05T10:27:17.041+0000",
"dateModified":null,
"jobTaskId":{
"id":433
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.46444072256333957",
"endTime":"2016-09-26T10:18:57.958+0000",
"minutes":120,
"trafficEmployeeId":{
"id":5
},
"taskDescription":"Louis Almeida - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":20
},
"allocationGroupId":{
"id":2
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":80.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:57.958+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":148,
"version":0,
"dateCreated":"2016-10-05T10:27:17.195+0000",
"dateModified":null,
"jobTaskId":{
"id":560
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.6966338993165295",
"endTime":"2016-09-26T10:18:58.070+0000",
"minutes":120,
"trafficEmployeeId":{
"id":24
},
"taskDescription":"Evgeni Pavlov - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":3
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.070+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":149,
"version":0,
"dateCreated":"2016-10-05T10:27:17.644+0000",
"dateModified":null,
"jobTaskId":{
"id":561
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.49731102150100126",
"endTime":"2016-09-26T10:18:58.159+0000",
"minutes":120,
"trafficEmployeeId":{
"id":22
},
"taskDescription":"Pierpaolo Iannici - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":25
},
"allocationGroupId":{
"id":4
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.159+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeEntryTO",
"id":150,
"version":0,
"dateCreated":"2016-10-05T10:27:17.955+0000",
"dateModified":null,
"jobTaskId":{
"id":97
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.028822331190458628",
"endTime":"2016-09-26T10:18:58.275+0000",
"minutes":120,
"trafficEmployeeId":{
"id":16
},
"taskDescription":"Nathaniel Sawit - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":5
},
"allocationGroupId":{
"id":5
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":40.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"startTime":"2016-09-26T08:18:58.275+0000"
}
]
Returns audit records for timeentry by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeentries/audit/{id}
| name | description | default |
|---|---|---|
| id | TimeEntry's id. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeentries/audit/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeentries/audit/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:19 GMT
<pagedResult maxResults="3" windowSize="5" currentPage="1">
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="jobTaskTimeEntrySearchWrapper" id="1" version="-1">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.03585451996515432</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
<jobName>Data Analysis</jobName>
<projectName>2009 Jobs</projectName>
<clientName>Marketing Store</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J15</jobNumberSearchField>
<trafficEmployeeFirstName>Simon</trafficEmployeeFirstName>
<trafficEmployeeLastName>Stewart</trafficEmployeeLastName>
<externalUserCode>UPDATED Code 0.3673335157054175</externalUserCode>
<externalCompanyCode>externalCode:3bc4-615</externalCompanyCode>
<externalJobCode>externalCode:4e9d-40e</externalJobCode>
<chargeBand id="6" version="-1">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobTaskDeadline>2016-10-14T18:00:00.000+02:00</jobTaskDeadline>
<jobTaskHappyRating>HAPPY</jobTaskHappyRating>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</auditRecord>
<userRevision>
<id>233</id>
<customTimestamp>2016-10-05 10:27:15.589 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>MOD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="jobTaskTimeEntrySearchWrapper" id="1" version="-1">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>NEW Comment 0.8717790714781171</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
<jobName>Data Analysis</jobName>
<projectName>2009 Jobs</projectName>
<clientName>Marketing Store</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J15</jobNumberSearchField>
<trafficEmployeeFirstName>Simon</trafficEmployeeFirstName>
<trafficEmployeeLastName>Stewart</trafficEmployeeLastName>
<externalUserCode>UPDATED Code 0.3673335157054175</externalUserCode>
<externalCompanyCode>externalCode:3bc4-615</externalCompanyCode>
<externalJobCode>externalCode:4e9d-40e</externalJobCode>
<chargeBand id="6" version="-1">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobTaskDeadline>2016-10-14T18:00:00.000+02:00</jobTaskDeadline>
<jobTaskHappyRating>HAPPY</jobTaskHappyRating>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</auditRecord>
<userRevision>
<id>228</id>
<customTimestamp>2016-10-05 10:27:14.908 UTC</customTimestamp>
<userId>21</userId>
<userName>aleshavlik@deltek.com</userName>
</userRevision>
<revisionType>MOD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
<auditRecord class="jobTaskTimeEntrySearchWrapper" id="1" version="-1">
<jobTaskId>
<id>332</id>
</jobTaskId>
<billable>false</billable>
<exported>false</exported>
<lockedByApproval>false</lockedByApproval>
<comment>TimeEntry for day: 2 Taskid: 332</comment>
<endTime>2016-09-26T12:18:57.785+02:00</endTime>
<minutes>120</minutes>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<taskDescription>Simon Stewart - Task</taskDescription>
<taskComplete>false</taskComplete>
<taskRate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRate>
<valueOfTimeEntry>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</valueOfTimeEntry>
<jobId>
<id>15</id>
</jobId>
<allocationGroupId>
<id>1</id>
</allocationGroupId>
<chargeBandId>
<id>6</id>
</chargeBandId>
<timeEntryCost>
<amountString>90.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryCost>
<timeEntryPersonalRate>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</timeEntryPersonalRate>
<submitted>false</submitted>
<rejected>false</rejected>
<readyForExport>false</readyForExport>
<jobName>Data Analysis</jobName>
<projectName>2009 Jobs</projectName>
<clientName>Marketing Store</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J15</jobNumberSearchField>
<trafficEmployeeFirstName>Simon</trafficEmployeeFirstName>
<trafficEmployeeLastName>Stewart</trafficEmployeeLastName>
<externalUserCode>externalCode:93328fca</externalUserCode>
<externalCompanyCode>externalCode:3bc4-615</externalCompanyCode>
<externalJobCode>externalCode:4e9d-40e</externalJobCode>
<chargeBand id="6" version="-1">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobTaskDeadline>2016-10-14T18:00:00.000+02:00</jobTaskDeadline>
<jobTaskHappyRating>HAPPY</jobTaskHappyRating>
<trafficEmployeeDepartmentName>Development</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>Hammersmith</trafficEmployeeLocationName>
</auditRecord>
<userRevision>
<id>124</id>
<customTimestamp>2016-10-05 10:19:01.405 UTC</customTimestamp>
<userId>7</userId>
<userName>simonstewart@deltek.com</userName>
</userRevision>
<revisionType>ADD</revisionType>
</com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:19 GMT
{
"maxResults":3,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.03585451996515432",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"jobName":"Data Analysis",
"projectName":"2009 Jobs",
"clientName":"Marketing Store",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J15",
"trafficEmployeeFirstName":"Simon",
"trafficEmployeeLastName":"Stewart",
"externalUserCode":"UPDATED Code 0.3673335157054175",
"externalCompanyCode":"externalCode:3bc4-615",
"externalJobCode":"externalCode:4e9d-40e",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":-1,
"dateCreated":null,
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"lockedByApprovalEmployeeFirstName":null,
"lockedByApprovalEmployeeLastName":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskUserCategoryListItemDescription":null,
"jobTaskCompletionDate":null,
"jobTaskDeadline":"2016-10-14T16:00:00.000+0000",
"jobTaskHappyRating":"HAPPY",
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
"userRevision":{
"id":233,
"customTimestamp":"2016-10-05T10:27:15.589+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"MOD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"NEW Comment 0.8717790714781171",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"jobName":"Data Analysis",
"projectName":"2009 Jobs",
"clientName":"Marketing Store",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J15",
"trafficEmployeeFirstName":"Simon",
"trafficEmployeeLastName":"Stewart",
"externalUserCode":"UPDATED Code 0.3673335157054175",
"externalCompanyCode":"externalCode:3bc4-615",
"externalJobCode":"externalCode:4e9d-40e",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":-1,
"dateCreated":null,
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"lockedByApprovalEmployeeFirstName":null,
"lockedByApprovalEmployeeLastName":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskUserCategoryListItemDescription":null,
"jobTaskCompletionDate":null,
"jobTaskDeadline":"2016-10-14T16:00:00.000+0000",
"jobTaskHappyRating":"HAPPY",
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
"userRevision":{
"id":228,
"customTimestamp":"2016-10-05T10:27:14.908+0000",
"userId":21,
"userName":"aleshavlik@deltek.com"
},
"revisionType":"MOD"
},
{
"@class":"com.sohnar.trafficlite.transfer.auditing.EntityAuditRecordTO",
"auditRecord":{
"id":1,
"version":-1,
"dateCreated":null,
"dateModified":null,
"jobTaskId":{
"id":332
},
"billable":false,
"exported":false,
"lockedByApproval":false,
"comment":"TimeEntry for day: 2 Taskid: 332",
"endTime":"2016-09-26T10:18:57.785+0000",
"minutes":120,
"trafficEmployeeId":{
"id":1
},
"taskDescription":"Simon Stewart - Task",
"taskComplete":false,
"taskRate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"valueOfTimeEntry":{
"amountString":0,
"currencyType":"GBP"
},
"jobId":{
"id":15
},
"allocationGroupId":{
"id":1
},
"chargeBandId":{
"id":6
},
"timeEntryCost":{
"amountString":90.00,
"currencyType":"GBP"
},
"timeEntryPersonalRate":{
"amountString":0.00,
"currencyType":"GBP"
},
"jobStageDescription":null,
"lockedByApprovalEmployeeId":null,
"lockedByApprovalDate":null,
"exportError":null,
"workPoints":null,
"externalCode":null,
"secondaryExternalCode":null,
"submitted":false,
"rejected":false,
"readyForExport":false,
"rejectedComment":null,
"jobName":"Data Analysis",
"projectName":"2009 Jobs",
"clientName":"Marketing Store",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J15",
"trafficEmployeeFirstName":"Simon",
"trafficEmployeeLastName":"Stewart",
"externalUserCode":"externalCode:93328fca",
"externalCompanyCode":"externalCode:3bc4-615",
"externalJobCode":"externalCode:4e9d-40e",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":-1,
"dateCreated":null,
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"lockedByApprovalEmployeeFirstName":null,
"lockedByApprovalEmployeeLastName":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobTaskUserCategoryListItemId":null,
"jobTaskUserCategoryListItemDescription":null,
"jobTaskCompletionDate":null,
"jobTaskDeadline":"2016-10-14T16:00:00.000+0000",
"jobTaskHappyRating":"HAPPY",
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"Development",
"trafficEmployeeLocationName":"Hammersmith",
"trafficEmployeeGroups":null,
"startTime":"2016-09-26T08:18:57.785+0000"
},
"userRevision":{
"id":124,
"customTimestamp":"2016-10-05T10:19:01.405+0000",
"userId":7,
"userName":"simonstewart@deltek.com"
},
"revisionType":"ADD"
}
],
"windowSize":5,
"currentPage":1
}
Returns page of timeallocationgroup objects.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeallocations/jobtasks?comparators=jobId|LE|50 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeallocations/jobtasks?comparators=jobId|LE|50 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:24 GMT
<pagedResult maxResults="29" windowSize="5" currentPage="1">
<jobTaskTimeAllocationGroupSearchWrapper id="29" version="0" dateCreated="2016-10-05T12:19:01.294+02:00" dateModified="2016-10-05T12:19:01.384+02:00">
<trafficEmployeeId>
<id>25</id>
</trafficEmployeeId>
<uuid>d30f4dee-3256-4888-8cf5-fade4ef059b7</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="57" version="0" dateCreated="2016-10-05T12:19:01.295+02:00">
<uuid>28a5a260-e8b6-4df7-b59e-55bd244af427</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="58" version="0" dateCreated="2016-10-05T12:19:01.296+02:00">
<uuid>ebf5dce1-41cd-4cee-b6df-8eaaf8430234</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>559</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Jarad Kopf - Task</taskDescription>
<jobId>
<id>25</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Copywriting</jobName>
<clientName>UPD Name 0.32633</clientName>
<jobNumberSearchWrapper>J25</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>Design Work</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Jarad</trafficEmployeeFirstName>
<trafficEmployeeLastName>Kopf</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J25</jobNumberSearchField>
<externalUserCode>externalCode:-02c3-4b</externalUserCode>
<externalCompanyCode>externalCode:-a380-48</externalCompanyCode>
<externalJobCode>externalCode:549b9b-4</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-07T12:18:52.543+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
<jobTaskTimeAllocationGroupSearchWrapper id="28" version="0" dateCreated="2016-10-05T12:19:01.189+02:00" dateModified="2016-10-05T12:19:01.272+02:00">
<trafficEmployeeId>
<id>4</id>
</trafficEmployeeId>
<uuid>60ff68d6-bdd4-4fc1-aab1-b5fbb1cc2b03</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="55" version="0" dateCreated="2016-10-05T12:19:01.190+02:00">
<uuid>216a89aa-9ebe-4241-beed-6cb658857384</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="56" version="0" dateCreated="2016-10-05T12:19:01.191+02:00">
<uuid>c2eea695-38fd-4794-96a5-df4ead490452</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>99</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Marcus Wilkinson - Task</taskDescription>
<jobId>
<id>5</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Proof Reading</jobName>
<clientName>McDonalds</clientName>
<jobNumberSearchWrapper>J5</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>2009 Jobs</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Marcus</trafficEmployeeFirstName>
<trafficEmployeeLastName>Wilkinson</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J5</jobNumberSearchField>
<externalUserCode>externalCode:-2a449d9</externalUserCode>
<externalCompanyCode>externalCode:fc-b813-</externalCompanyCode>
<externalJobCode>externalCode:e-28ae38</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-27T12:18:40.132+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
<jobTaskTimeAllocationGroupSearchWrapper id="27" version="0" dateCreated="2016-10-05T12:19:01.082+02:00" dateModified="2016-10-05T12:19:01.166+02:00">
<trafficEmployeeId>
<id>9</id>
</trafficEmployeeId>
<uuid>12a46890-62c2-4d1f-be01-9564d01d1941</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="54" version="0" dateCreated="2016-10-05T12:19:01.084+02:00">
<uuid>e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="53" version="0" dateCreated="2016-10-05T12:19:01.083+02:00">
<uuid>bf71002c-2bb4-4bd9-be65-7f30b539e2dd</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>574</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Francesco Carbone - Task</taskDescription>
<jobId>
<id>25</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Copywriting</jobName>
<clientName>UPD Name 0.32633</clientName>
<jobNumberSearchWrapper>J25</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>Design Work</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Francesco</trafficEmployeeFirstName>
<trafficEmployeeLastName>Carbone</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J25</jobNumberSearchField>
<externalUserCode>externalCode:-80e986c</externalUserCode>
<externalCompanyCode>externalCode:-a380-48</externalCompanyCode>
<externalJobCode>externalCode:549b9b-4</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-07T12:18:52.543+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
<jobTaskTimeAllocationGroupSearchWrapper id="26" version="0" dateCreated="2016-10-05T12:19:00.984+02:00" dateModified="2016-10-05T12:19:01.060+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>01688cdc-5fd5-4525-9276-36f9a473e45c</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="52" version="0" dateCreated="2016-10-05T12:19:00.986+02:00">
<uuid>fe564954-e961-4486-bc20-aeef9f64184a</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="51" version="0" dateCreated="2016-10-05T12:19:00.985+02:00">
<uuid>19e73a1d-9f27-487e-b378-9891d5093f7d</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>438</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Charlotte Charlotte - Task</taskDescription>
<jobId>
<id>20</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Logo Design</jobName>
<clientName>Redgum Consulting</clientName>
<jobNumberSearchWrapper>J20</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>360.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>Internal</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Charlotte</trafficEmployeeFirstName>
<trafficEmployeeLastName>Charlotte</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J20</jobNumberSearchField>
<externalUserCode>externalCode:2-dc4f81</externalUserCode>
<externalCompanyCode>externalCode:fd8-be98</externalCompanyCode>
<externalJobCode>externalCode:a6-834e-</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>Translations</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>Paris</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-24T12:18:49.535+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
<jobTaskTimeAllocationGroupSearchWrapper id="25" version="0" dateCreated="2016-10-05T12:19:00.880+02:00" dateModified="2016-10-05T12:19:00.963+02:00">
<trafficEmployeeId>
<id>27</id>
</trafficEmployeeId>
<uuid>61e66331-33e2-48a4-abc7-6e2f47773a7c</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="49" version="0" dateCreated="2016-10-05T12:19:00.881+02:00">
<uuid>01ec2b76-bf33-4f64-a76a-9715a2459551</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="50" version="0" dateCreated="2016-10-05T12:19:00.881+02:00">
<uuid>5bd92178-a3d7-4e1a-9ec6-a7bcdbc52206</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>563</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Scott Musson - Task</taskDescription>
<jobId>
<id>25</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Copywriting</jobName>
<clientName>UPD Name 0.32633</clientName>
<jobNumberSearchWrapper>J25</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>Design Work</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId>
<id>1</id>
</jobOwnerId>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Scott</trafficEmployeeFirstName>
<trafficEmployeeLastName>Musson</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J25</jobNumberSearchField>
<externalUserCode>externalCode:-77d6-4e</externalUserCode>
<externalCompanyCode>externalCode:-a380-48</externalCompanyCode>
<externalJobCode>externalCode:549b9b-4</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-07T12:18:52.543+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:23 GMT
{
"maxResults":29,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:01.294+0000",
"dateModified":"2016-10-05T10:19:01.384+0000",
"trafficEmployeeId":{
"id":25
},
"uuid":"d30f4dee-3256-4888-8cf5-fade4ef059b7",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:19:01.295+0000",
"dateModified":null,
"uuid":"28a5a260-e8b6-4df7-b59e-55bd244af427",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:19:01.296+0000",
"dateModified":null,
"uuid":"ebf5dce1-41cd-4cee-b6df-8eaaf8430234",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":559
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Jarad Kopf - Task",
"jobId":{
"id":25
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Copywriting",
"clientName":"UPD Name 0.32633",
"jobNumberSearchWrapper":"J25",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"Design Work",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Jarad",
"trafficEmployeeLastName":"Kopf",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J25",
"externalUserCode":"externalCode:-02c3-4b",
"externalCompanyCode":"externalCode:-a380-48",
"externalJobCode":"externalCode:549b9b-4",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-07T10:18:52.543+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:01.189+0000",
"dateModified":"2016-10-05T10:19:01.272+0000",
"trafficEmployeeId":{
"id":4
},
"uuid":"60ff68d6-bdd4-4fc1-aab1-b5fbb1cc2b03",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:19:01.190+0000",
"dateModified":null,
"uuid":"216a89aa-9ebe-4241-beed-6cb658857384",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:19:01.191+0000",
"dateModified":null,
"uuid":"c2eea695-38fd-4794-96a5-df4ead490452",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":99
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Marcus Wilkinson - Task",
"jobId":{
"id":5
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Proof Reading",
"clientName":"McDonalds",
"jobNumberSearchWrapper":"J5",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"2009 Jobs",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Marcus",
"trafficEmployeeLastName":"Wilkinson",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J5",
"externalUserCode":"externalCode:-2a449d9",
"externalCompanyCode":"externalCode:fc-b813-",
"externalJobCode":"externalCode:e-28ae38",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-27T10:18:40.132+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:01.082+0000",
"dateModified":"2016-10-05T10:19:01.166+0000",
"trafficEmployeeId":{
"id":9
},
"uuid":"12a46890-62c2-4d1f-be01-9564d01d1941",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:19:01.084+0000",
"dateModified":null,
"uuid":"e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:19:01.083+0000",
"dateModified":null,
"uuid":"bf71002c-2bb4-4bd9-be65-7f30b539e2dd",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":574
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Francesco Carbone - Task",
"jobId":{
"id":25
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Copywriting",
"clientName":"UPD Name 0.32633",
"jobNumberSearchWrapper":"J25",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"Design Work",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Francesco",
"trafficEmployeeLastName":"Carbone",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J25",
"externalUserCode":"externalCode:-80e986c",
"externalCompanyCode":"externalCode:-a380-48",
"externalJobCode":"externalCode:549b9b-4",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-07T10:18:52.543+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:00.984+0000",
"dateModified":"2016-10-05T10:19:01.060+0000",
"trafficEmployeeId":{
"id":21
},
"uuid":"01688cdc-5fd5-4525-9276-36f9a473e45c",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:19:00.986+0000",
"dateModified":null,
"uuid":"fe564954-e961-4486-bc20-aeef9f64184a",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:19:00.985+0000",
"dateModified":null,
"uuid":"19e73a1d-9f27-487e-b378-9891d5093f7d",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":438
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Charlotte Charlotte - Task",
"jobId":{
"id":20
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Logo Design",
"clientName":"Redgum Consulting",
"jobNumberSearchWrapper":"J20",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":360.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":200.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"Internal",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Charlotte",
"trafficEmployeeLastName":"Charlotte",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J20",
"externalUserCode":"externalCode:2-dc4f81",
"externalCompanyCode":"externalCode:fd8-be98",
"externalJobCode":"externalCode:a6-834e-",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"Translations",
"trafficEmployeeLocationName":"Paris",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-24T10:18:49.535+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:19:00.880+0000",
"dateModified":"2016-10-05T10:19:00.963+0000",
"trafficEmployeeId":{
"id":27
},
"uuid":"61e66331-33e2-48a4-abc7-6e2f47773a7c",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:19:00.881+0000",
"dateModified":null,
"uuid":"01ec2b76-bf33-4f64-a76a-9715a2459551",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":50,
"version":0,
"dateCreated":"2016-10-05T10:19:00.881+0000",
"dateModified":null,
"uuid":"5bd92178-a3d7-4e1a-9ec6-a7bcdbc52206",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":563
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Scott Musson - Task",
"jobId":{
"id":25
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Copywriting",
"clientName":"UPD Name 0.32633",
"jobNumberSearchWrapper":"J25",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"Design Work",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Scott",
"trafficEmployeeLastName":"Musson",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J25",
"externalUserCode":"externalCode:-77d6-4e",
"externalCompanyCode":"externalCode:-a380-48",
"externalJobCode":"externalCode:549b9b-4",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-07T10:18:52.543+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
}
],
"windowSize":5,
"currentPage":1
}
Returns page of timeallocationgroup objects belonging to certain job.
https://api.sohnar.com/TrafficLiteServer/openapi/job/{jobId}/jobtaskallocations
| name | description | default |
|---|---|---|
| jobId | Job's id. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/job/1/jobtaskallocations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/job/1/jobtaskallocations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:23 GMT
<pagedResult maxResults="0" windowSize="5" currentPage="1"/>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:22 GMT
{
"maxResults":0,
"resultList":[
],
"windowSize":5,
"currentPage":1
}
Returns page of timeallocationgroup objects belonging to certain employee.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{employeeId}/jobtaskallocations
| name | description | default |
|---|---|---|
| employeeId | Employee's id. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/1/jobtaskallocations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/1/jobtaskallocations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:24 GMT
<pagedResult maxResults="1" windowSize="5" currentPage="1">
<jobTaskTimeAllocationGroupSearchWrapper id="1" version="0" dateCreated="2016-10-05T12:18:57.749+02:00" dateModified="2016-10-05T12:27:21.292+02:00">
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<uuid>4af06085-1009-477d-b4ce-81d5292503e2</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="2" version="0" dateCreated="2016-10-05T12:18:57.754+02:00">
<uuid>60b56e30-f555-427d-874d-2dce5d583004</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="1" version="0" dateCreated="2016-10-05T12:18:57.752+02:00">
<uuid>3011e634-2b80-4cff-b616-aee37cd53809</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>332</id>
</jobTaskId>
<totalTimeLoggedMinutes>960</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Simon Stewart - Task</taskDescription>
<jobId>
<id>15</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Data Analysis</jobName>
<clientName>Marketing Store</clientName>
<jobNumberSearchWrapper>J15</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>1280.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>810.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<projectName>2009 Jobs</projectName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobOwnerId reference="../trafficEmployeeId"/>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<trafficEmployeeFirstName>Simon</trafficEmployeeFirstName>
<trafficEmployeeLastName>Stewart</trafficEmployeeLastName>
<trafficEmployeeEnabled>true</trafficEmployeeEnabled>
<trafficEmployeeIsResource>false</trafficEmployeeIsResource>
<jobNumberSearchField>J15</jobNumberSearchField>
<externalUserCode>UPDATED Code 0.3673335157054175</externalUserCode>
<externalCompanyCode>externalCode:3bc4-615</externalCompanyCode>
<externalJobCode>externalCode:4e9d-40e</externalJobCode>
<chargeBand id="6" version="0" dateCreated="2016-10-05T12:18:13.368+02:00">
<chargeBandType>TIME_FEE</chargeBandType>
<name>Senior Designer</name>
<cost>
<amountString>40.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<multiplier>100.00000000</multiplier>
<rate>
<amountString>80.00000000</amountString>
<currencyType>GBP</currencyType>
</rate>
<isDefault>false</isDefault>
</chargeBand>
<chargeBandId>6</chargeBandId>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
<jobFreeTags/>
<jobStateType>PROGRESS</jobStateType>
<jobStartDate>2016-10-14T12:18:46.765+02:00</jobStartDate>
<inhouseJob>true</inhouseJob>
</jobTaskTimeAllocationGroupSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:22 GMT
{
"maxResults":1,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.JobTaskTimeAllocationGroupSearchWrapperTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.749+0000",
"dateModified":"2016-10-05T10:27:21.292+0000",
"trafficEmployeeId":{
"id":1
},
"uuid":"4af06085-1009-477d-b4ce-81d5292503e2",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:57.754+0000",
"dateModified":null,
"uuid":"60b56e30-f555-427d-874d-2dce5d583004",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.752+0000",
"dateModified":null,
"uuid":"3011e634-2b80-4cff-b616-aee37cd53809",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":332
},
"totalTimeLoggedMinutes":960,
"happyRating":"HAPPY",
"taskDescription":"Simon Stewart - Task",
"jobId":{
"id":15
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Data Analysis",
"clientName":"Marketing Store",
"jobNumberSearchWrapper":"J15",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":1280.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":640.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":810.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":720.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"projectName":"2009 Jobs",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobOwnerId":{
"id":1
},
"jobTypeListItemId":{
"id":1
},
"trafficEmployeeFirstName":"Simon",
"trafficEmployeeLastName":"Stewart",
"trafficEmployeeEnabled":true,
"trafficEmployeeIsResource":false,
"jobNumberSearchField":"J15",
"externalUserCode":"UPDATED Code 0.3673335157054175",
"externalCompanyCode":"externalCode:3bc4-615",
"externalJobCode":"externalCode:4e9d-40e",
"externalChargeBandCode":null,
"chargeBand":{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:13.368+0000",
"dateModified":null,
"chargeBandType":"TIME_FEE",
"name":"Senior Designer",
"description":null,
"cost":{
"amountString":40.00,
"currencyType":"GBP"
},
"multiplier":100.00000000,
"rate":{
"amountString":80.00000000,
"currencyType":"GBP"
},
"isDefault":false,
"externalCode":null,
"secondaryExternalCode":null
},
"chargeBandId":6,
"personalChargeBandId":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null,
"jobFreeTags":[
],
"jobStateType":"PROGRESS",
"jobUserCategoryListItemId":null,
"jobStartDate":"2016-10-14T10:18:46.765+0000",
"jobModifiedDate":null,
"inhouseJob":true,
"jobTaskExternalCategoryListItemId":null,
"jobTaskPriorityListItemId":null,
"durationInMinutes":1080
}
],
"windowSize":5,
"currentPage":1
}
Returns single JobTaskTimeAllocationGroup object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks/{id}
| name | description | default |
|---|---|---|
| id | TimeAllocationGroup's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeallocations/jobtasks/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeallocations/jobtasks/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:23 GMT
<jobTaskTimeAllocationGroup id="1" version="0" dateCreated="2016-10-05T12:18:57.749+02:00" dateModified="2016-10-05T12:27:21.292+02:00">
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<uuid>4af06085-1009-477d-b4ce-81d5292503e2</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="2" version="0" dateCreated="2016-10-05T12:18:57.754+02:00">
<uuid>60b56e30-f555-427d-874d-2dce5d583004</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="1" version="0" dateCreated="2016-10-05T12:18:57.752+02:00">
<uuid>3011e634-2b80-4cff-b616-aee37cd53809</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>332</id>
</jobTaskId>
<totalTimeLoggedMinutes>960</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Simon Stewart - Task</taskDescription>
<jobId>
<id>15</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Data Analysis</jobName>
<clientName>Marketing Store</clientName>
<jobNumberSearchWrapper>J15</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>1280.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>810.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
</jobTaskTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:22 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.749+0000",
"dateModified":"2016-10-05T10:27:21.292+0000",
"trafficEmployeeId":{
"id":1
},
"uuid":"4af06085-1009-477d-b4ce-81d5292503e2",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:57.754+0000",
"dateModified":null,
"uuid":"60b56e30-f555-427d-874d-2dce5d583004",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.752+0000",
"dateModified":null,
"uuid":"3011e634-2b80-4cff-b616-aee37cd53809",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":332
},
"totalTimeLoggedMinutes":960,
"happyRating":"HAPPY",
"taskDescription":"Simon Stewart - Task",
"jobId":{
"id":15
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Data Analysis",
"clientName":"Marketing Store",
"jobNumberSearchWrapper":"J15",
"employeePersonalRate":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":1280.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":640.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":810.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":720.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"durationInMinutes":1080
}
Updates timeallocationgroup with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/timeallocations/jobtasks HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTaskTimeAllocationGroup id="27" version="1" dateCreated="2016-10-05T12:19:01.082+02:00" dateModified="2016-10-05T12:27:31.120+02:00">
<trafficEmployeeId>
<id>9</id>
</trafficEmployeeId>
<uuid>12a46890-62c2-4d1f-be01-9564d01d1941</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="53" version="1" dateCreated="2016-10-05T12:19:01.083+02:00" dateModified="2016-10-05T12:27:31.120+02:00">
<uuid>bf71002c-2bb4-4bd9-be65-7f30b539e2dd</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="54" version="1" dateCreated="2016-10-05T12:19:01.084+02:00" dateModified="2016-10-05T12:27:31.120+02:00">
<uuid>e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>574</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Francesco Carbone - Task</taskDescription>
<jobId>
<id>25</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Copywriting</jobName>
<clientName>UPD Name 0.32633</clientName>
<jobNumberSearchWrapper>J25</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<externalCalendarTag>UPDATED Calendar tag 0.02708863461867772</externalCalendarTag>
</jobTaskTimeAllocationGroup>
POST /TrafficLiteServer/openapi/timeallocations/jobtasks HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"isTaskMilesone":false,
"trafficEmployeeId":{
"id":9
},
"personalRateAllocated":{
"currencyType":"GBP",
"amountString":0
},
"clientName":"UPD Name 0.32633",
"allocationIntervals":[
{
"dateCreated":"2016-10-05T10:19:01.084+0000",
"durationInSeconds":32400,
"dateModified":null,
"startTime":"2016-10-14T07:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"id":54,
"endTime":"2016-10-14T16:00:00.000+0000",
"version":0,
"uuid":"e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3"
},
{
"dateCreated":"2016-10-05T10:19:01.083+0000",
"durationInSeconds":32400,
"dateModified":null,
"startTime":"2016-10-13T07:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"id":53,
"endTime":"2016-10-13T16:00:00.000+0000",
"version":0,
"uuid":"bf71002c-2bb4-4bd9-be65-7f30b539e2dd"
}
],
"taskDescription":"Francesco Carbone - Task",
"externalData":null,
"externalCalendarTag":"UPDATED Calendar tag 0.7133303403515164",
"employeeCostTimeLogged":{
"currencyType":"GBP",
"amountString":400
},
"realisationRateAllocated":{
"currencyType":"GBP",
"amountString":0
},
"uuid":"12a46890-62c2-4d1f-be01-9564d01d1941",
"externalCalendarUUID":null,
"employeeCostAllocated":{
"currencyType":"GBP",
"amountString":720
},
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"dateCreated":"2016-10-05T10:19:01.082+0000",
"taskCostAllocated":{
"currencyType":"GBP",
"amountString":720
},
"isTaskComplete":false,
"id":27,
"taskCostTimeLogged":{
"currencyType":"GBP",
"amountString":400
},
"personalRateTimeLogged":{
"currencyType":"GBP",
"amountString":0
},
"happyRating":"HAPPY",
"jobName":"Copywriting",
"jobTaskId":{
"id":574
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"dependancyTaskDeadline":null,
"durationInMinutes":1080,
"employeePersonalRate":{
"currencyType":"GBP",
"amountString":0
},
"dateModified":"2016-10-05T10:19:01.166+0000",
"version":0,
"taskRateAllocated":{
"currencyType":"GBP",
"amountString":1440
},
"jobNumberSearchWrapper":"J25",
"taskRateTimeLogged":{
"currencyType":"GBP",
"amountString":800
},
"totalTimeLoggedMinutes":600,
"jobId":{
"id":25
},
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"realistaionRateTimeLogged":{
"currencyType":"GBP",
"amountString":0
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:31 GMT
<jobTaskTimeAllocationGroup id="27" version="2" dateCreated="2016-10-05T12:19:01.082+02:00" dateModified="2016-10-05T12:27:31.914+02:00">
<trafficEmployeeId>
<id>9</id>
</trafficEmployeeId>
<uuid>12a46890-62c2-4d1f-be01-9564d01d1941</uuid>
<externalCalendarTag>UPDATED Calendar tag 0.02708863461867772</externalCalendarTag>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<jobTaskTimeAllocationInterval id="53" version="1" dateCreated="2016-10-05T12:19:01.083+02:00" dateModified="2016-10-05T12:27:31.120+02:00">
<uuid>bf71002c-2bb4-4bd9-be65-7f30b539e2dd</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
<jobTaskTimeAllocationInterval id="54" version="1" dateCreated="2016-10-05T12:19:01.084+02:00" dateModified="2016-10-05T12:27:31.120+02:00">
<uuid>e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
<allocationIntervalStatus>PENDING</allocationIntervalStatus>
</jobTaskTimeAllocationInterval>
</allocationIntervals>
<jobTaskId>
<id>574</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Francesco Carbone - Task</taskDescription>
<jobId>
<id>25</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Copywriting</jobName>
<clientName>UPD Name 0.32633</clientName>
<jobNumberSearchWrapper>J25</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
</jobTaskTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:31 GMT
{
"id":27,
"version":1,
"dateCreated":"2016-10-05T10:19:01.082+0000",
"dateModified":"2016-10-05T10:27:31.120+0000",
"trafficEmployeeId":{
"id":9
},
"uuid":"12a46890-62c2-4d1f-be01-9564d01d1941",
"externalCalendarUUID":null,
"externalCalendarTag":"UPDATED Calendar tag 0.7133303403515164",
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":54,
"version":1,
"dateCreated":"2016-10-05T10:19:01.084+0000",
"dateModified":"2016-10-05T10:27:31.120+0000",
"uuid":"e9a77c66-66e4-4c2e-bdb4-7e9236cb55f3",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
},
{
"id":53,
"version":1,
"dateCreated":"2016-10-05T10:19:01.083+0000",
"dateModified":"2016-10-05T10:27:31.120+0000",
"uuid":"bf71002c-2bb4-4bd9-be65-7f30b539e2dd",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"allocationIntervalStatus":"PENDING",
"durationInSeconds":32400
}
],
"jobTaskId":{
"id":574
},
"totalTimeLoggedMinutes":600,
"happyRating":"HAPPY",
"taskDescription":"Francesco Carbone - Task",
"jobId":{
"id":25
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Copywriting",
"clientName":"UPD Name 0.32633",
"jobNumberSearchWrapper":"J25",
"employeePersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":1440.00000000,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":800.00000000,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":720.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":400.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"durationInMinutes":1080
}
Adds submitted timeallocationgroup and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/timeallocations/jobtasks HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTaskTimeAllocationGroup id="-1" version="-1" dateCreated="2016-10-05T12:19:00.984+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>01688cdc-5fd5-4525-9276-36f9a473e45c</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals />
<jobTaskId>
<id>438</id>
</jobTaskId>
<totalTimeLoggedMinutes>600</totalTimeLoggedMinutes>
<happyRating>HAPPY</happyRating>
<taskDescription>Charlotte Charlotte - Task</taskDescription>
<jobId>
<id>20</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Logo Design</jobName>
<clientName>Redgum Consulting</clientName>
<jobNumberSearchWrapper>J20</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>1440.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>720.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>800.00000000</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>360.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
<externalCalendarTag>NEW Calendar tag 0.12364870130940975</externalCalendarTag>
</jobTaskTimeAllocationGroup>
PUT /TrafficLiteServer/openapi/timeallocations/jobtasks HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"isTaskMilesone":false,
"trafficEmployeeId":{
"id":27
},
"personalRateAllocated":{
"currencyType":"GBP",
"amountString":0
},
"clientName":"UPD Name 0.32633",
"allocationIntervals":[
],
"taskDescription":"Scott Musson - Task",
"externalData":null,
"externalCalendarTag":"NEW Calendar tag 0.1041328362622469",
"employeeCostTimeLogged":{
"currencyType":"GBP",
"amountString":400
},
"realisationRateAllocated":{
"currencyType":"GBP",
"amountString":0
},
"uuid":"61e66331-33e2-48a4-abc7-6e2f47773a7c",
"externalCalendarUUID":null,
"employeeCostAllocated":{
"currencyType":"GBP",
"amountString":720
},
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"dateCreated":"2016-10-05T10:19:00.880+0000",
"taskCostAllocated":{
"currencyType":"GBP",
"amountString":720
},
"isTaskComplete":false,
"id":"-1",
"taskCostTimeLogged":{
"currencyType":"GBP",
"amountString":400
},
"personalRateTimeLogged":{
"currencyType":"GBP",
"amountString":0
},
"happyRating":"HAPPY",
"jobName":"Copywriting",
"jobTaskId":{
"id":563
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"dependancyTaskDeadline":null,
"durationInMinutes":1080,
"employeePersonalRate":{
"currencyType":"GBP",
"amountString":0
},
"version":"-1",
"taskRateAllocated":{
"currencyType":"GBP",
"amountString":1440
},
"jobNumberSearchWrapper":"J25",
"taskRateTimeLogged":{
"currencyType":"GBP",
"amountString":800
},
"totalTimeLoggedMinutes":600,
"jobId":{
"id":25
},
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"jobStageUUID":null,
"jobStageDescription":null,
"realistaionRateTimeLogged":{
"currencyType":"GBP",
"amountString":0
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:29 GMT
<jobTaskTimeAllocationGroup id="31" version="0" dateCreated="2016-10-05T12:27:30.345+02:00" dateModified="2016-10-05T12:27:30.344+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>01688cdc-5fd5-4525-9276-36f9a473e45c</uuid>
<externalCalendarTag>NEW Calendar tag 0.12364870130940975</externalCalendarTag>
<allocationIntervals/>
<jobTaskId>
<id>438</id>
</jobTaskId>
<happyRating>HAPPY</happyRating>
<taskDescription>Charlotte Charlotte - Task</taskDescription>
<jobId>
<id>20</id>
</jobId>
<taskDeadline>2016-10-14T18:00:00.000+02:00</taskDeadline>
<isTaskMilesone>false</isTaskMilesone>
<isTaskComplete>false</isTaskComplete>
<happyRatingWasChanged>false</happyRatingWasChanged>
<jobName>Logo Design</jobName>
<clientName>Redgum Consulting</clientName>
<jobNumberSearchWrapper>J20</jobNumberSearchWrapper>
<employeePersonalRate>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</employeePersonalRate>
<taskRateAllocated>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</taskRateAllocated>
<taskCostAllocated>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</taskCostAllocated>
<taskRateTimeLogged>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</taskRateTimeLogged>
<taskCostTimeLogged>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</taskCostTimeLogged>
<personalRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</personalRateAllocated>
<personalRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</personalRateTimeLogged>
<employeeCostAllocated>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostAllocated>
<employeeCostTimeLogged>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</employeeCostTimeLogged>
<realisationRateAllocated>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realisationRateAllocated>
<realistaionRateTimeLogged>
<amountString>0</amountString>
<currencyType>GBP</currencyType>
</realistaionRateTimeLogged>
</jobTaskTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:28 GMT
{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:27:29.699+0000",
"dateModified":"2016-10-05T10:27:29.697+0000",
"trafficEmployeeId":{
"id":27
},
"uuid":"61e66331-33e2-48a4-abc7-6e2f47773a7c",
"externalCalendarUUID":null,
"externalCalendarTag":"NEW Calendar tag 0.1041328362622469",
"earliestIntervalStart":null,
"latestIntervalEnd":null,
"allocationIntervals":[
],
"jobTaskId":{
"id":563
},
"totalTimeLoggedMinutes":null,
"happyRating":"HAPPY",
"taskDescription":"Scott Musson - Task",
"jobId":{
"id":25
},
"taskDeadline":"2016-10-14T16:00:00.000+0000",
"isTaskMilesone":false,
"isTaskComplete":false,
"jobStageUUID":null,
"jobStageDescription":null,
"dependancyTaskDeadline":null,
"jobName":"Copywriting",
"clientName":"UPD Name 0.32633",
"jobNumberSearchWrapper":"J25",
"employeePersonalRate":{
"amountString":0,
"currencyType":"GBP"
},
"taskRateAllocated":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskCostAllocated":{
"amountString":0.00,
"currencyType":"GBP"
},
"taskRateTimeLogged":{
"amountString":0E-8,
"currencyType":"GBP"
},
"taskCostTimeLogged":{
"amountString":0.00,
"currencyType":"GBP"
},
"personalRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"personalRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"employeeCostAllocated":{
"amountString":0.00,
"currencyType":"GBP"
},
"employeeCostTimeLogged":{
"amountString":0.00,
"currencyType":"GBP"
},
"realisationRateAllocated":{
"amountString":0,
"currencyType":"GBP"
},
"realistaionRateTimeLogged":{
"amountString":0,
"currencyType":"GBP"
},
"externalData":null,
"durationInMinutes":0
}
Removes timeallocationgroup object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/jobtasks/{id}
| name | description | default |
|---|---|---|
| id | TimeAllocationGroup's id. |
DELETE /TrafficLiteServer/openapi/timeallocations/jobtasks/26 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:29 GMT
Returns page of calendarallocationgroup objects.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/calendarblocks
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeallocations/calendarblocks?comparators=trafficEmployeeId|LE|50 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeallocations/calendarblocks?comparators=trafficEmployeeId|LE|50 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:27 GMT
<pagedResult maxResults="29" windowSize="5" currentPage="1">
<calendarBlockTimeAllocationGroupSearchWrapper id="29" version="0" dateCreated="2016-10-05T12:19:01.392+02:00" dateModified="2016-10-05T12:19:01.392+02:00">
<trafficEmployeeId>
<id>25</id>
</trafficEmployeeId>
<uuid>3bfce452-d608-4820-a45f-d9643d39ff63</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="57" version="0" dateCreated="2016-10-05T12:19:01.393+02:00">
<uuid>bacbe3ad-9694-4712-812a-625654205b8f</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="58" version="0" dateCreated="2016-10-05T12:19:01.394+02:00">
<uuid>5ebcdeee-1ae2-4daa-aa3a-0af1b8d15f37</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAJarad Kopf - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Jarad</trafficEmployeeFirstName>
<trafficEmployeeLastName>Kopf</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
<calendarBlockTimeAllocationGroupSearchWrapper id="28" version="0" dateCreated="2016-10-05T12:19:01.281+02:00" dateModified="2016-10-05T12:19:01.281+02:00">
<trafficEmployeeId>
<id>4</id>
</trafficEmployeeId>
<uuid>24a37a4a-9cda-492e-ab6d-26ff54bba6a6</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="56" version="0" dateCreated="2016-10-05T12:19:01.282+02:00">
<uuid>da0eb80a-ff60-4767-afe1-8986092e627b</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="55" version="0" dateCreated="2016-10-05T12:19:01.281+02:00">
<uuid>092c2a56-b586-4b6b-87e4-81a580854897</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAMarcus Wilkinson - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Marcus</trafficEmployeeFirstName>
<trafficEmployeeLastName>Wilkinson</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
<calendarBlockTimeAllocationGroupSearchWrapper id="27" version="0" dateCreated="2016-10-05T12:19:01.175+02:00" dateModified="2016-10-05T12:19:01.175+02:00">
<trafficEmployeeId>
<id>9</id>
</trafficEmployeeId>
<uuid>bf79aba6-31a4-45ce-90d7-caec3bda8362</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="54" version="0" dateCreated="2016-10-05T12:19:01.177+02:00">
<uuid>10d452e3-56b5-4591-a33f-b475fba588e3</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="53" version="0" dateCreated="2016-10-05T12:19:01.176+02:00">
<uuid>9066ce13-b577-4b3f-8ba1-065702af7f58</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAFrancesco Carbone - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Francesco</trafficEmployeeFirstName>
<trafficEmployeeLastName>Carbone</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
<calendarBlockTimeAllocationGroupSearchWrapper id="26" version="0" dateCreated="2016-10-05T12:19:01.068+02:00" dateModified="2016-10-05T12:19:01.068+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>0a0ccadb-26a0-448c-8c4a-439720f6b2f5</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="52" version="0" dateCreated="2016-10-05T12:19:01.070+02:00">
<uuid>0bd5e06b-6470-4883-9357-fecfd30cdbfb</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="51" version="0" dateCreated="2016-10-05T12:19:01.069+02:00">
<uuid>312b53cf-09cf-4937-87b6-45c0725fccf9</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CACharlotte Charlotte - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Charlotte</trafficEmployeeFirstName>
<trafficEmployeeLastName>Charlotte</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>Translations</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>Paris</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
<calendarBlockTimeAllocationGroupSearchWrapper id="25" version="2" dateCreated="2016-10-05T12:19:00.971+02:00" dateModified="2016-10-05T12:27:25.890+02:00">
<trafficEmployeeId>
<id>27</id>
</trafficEmployeeId>
<uuid>fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d</uuid>
<externalCalendarTag>UPDATED Calendar tag 0.782184674212095</externalCalendarTag>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="49" version="1" dateCreated="2016-10-05T12:19:00.972+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>e6b73aa8-eb87-4b0a-8f10-3cb87cccc050</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="50" version="1" dateCreated="2016-10-05T12:19:00.973+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>417710a0-850b-4ff2-baa6-bc19a75346c4</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAScott Musson - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Scott</trafficEmployeeFirstName>
<trafficEmployeeLastName>Musson</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:26 GMT
{
"maxResults":29,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:01.392+0000",
"dateModified":"2016-10-05T10:19:01.392+0000",
"trafficEmployeeId":{
"id":25
},
"uuid":"3bfce452-d608-4820-a45f-d9643d39ff63",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:19:01.393+0000",
"dateModified":null,
"uuid":"bacbe3ad-9694-4712-812a-625654205b8f",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:19:01.394+0000",
"dateModified":null,
"uuid":"5ebcdeee-1ae2-4daa-aa3a-0af1b8d15f37",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CAJarad Kopf - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Jarad",
"trafficEmployeeLastName":"Kopf",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:01.281+0000",
"dateModified":"2016-10-05T10:19:01.281+0000",
"trafficEmployeeId":{
"id":4
},
"uuid":"24a37a4a-9cda-492e-ab6d-26ff54bba6a6",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:19:01.282+0000",
"dateModified":null,
"uuid":"da0eb80a-ff60-4767-afe1-8986092e627b",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:19:01.281+0000",
"dateModified":null,
"uuid":"092c2a56-b586-4b6b-87e4-81a580854897",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CAMarcus Wilkinson - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Marcus",
"trafficEmployeeLastName":"Wilkinson",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:01.175+0000",
"dateModified":"2016-10-05T10:19:01.175+0000",
"trafficEmployeeId":{
"id":9
},
"uuid":"bf79aba6-31a4-45ce-90d7-caec3bda8362",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:19:01.177+0000",
"dateModified":null,
"uuid":"10d452e3-56b5-4591-a33f-b475fba588e3",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:19:01.176+0000",
"dateModified":null,
"uuid":"9066ce13-b577-4b3f-8ba1-065702af7f58",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CAFrancesco Carbone - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Francesco",
"trafficEmployeeLastName":"Carbone",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:01.068+0000",
"dateModified":"2016-10-05T10:19:01.068+0000",
"trafficEmployeeId":{
"id":21
},
"uuid":"0a0ccadb-26a0-448c-8c4a-439720f6b2f5",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:19:01.070+0000",
"dateModified":null,
"uuid":"0bd5e06b-6470-4883-9357-fecfd30cdbfb",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:19:01.069+0000",
"dateModified":null,
"uuid":"312b53cf-09cf-4937-87b6-45c0725fccf9",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CACharlotte Charlotte - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Charlotte",
"trafficEmployeeLastName":"Charlotte",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"Translations",
"trafficEmployeeLocationName":"Paris",
"trafficEmployeeGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":25,
"version":2,
"dateCreated":"2016-10-05T10:19:00.971+0000",
"dateModified":"2016-10-05T10:27:25.890+0000",
"trafficEmployeeId":{
"id":27
},
"uuid":"fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d",
"externalCalendarUUID":null,
"externalCalendarTag":"UPDATED Calendar tag 0.782184674212095",
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":49,
"version":1,
"dateCreated":"2016-10-05T10:19:00.972+0000",
"dateModified":"2016-10-05T10:27:25.399+0000",
"uuid":"e6b73aa8-eb87-4b0a-8f10-3cb87cccc050",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":50,
"version":1,
"dateCreated":"2016-10-05T10:19:00.973+0000",
"dateModified":"2016-10-05T10:27:25.399+0000",
"uuid":"417710a0-850b-4ff2-baa6-bc19a75346c4",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CAScott Musson - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Scott",
"trafficEmployeeLastName":"Musson",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null
}
],
"windowSize":5,
"currentPage":1
}
Returns page of calendarallocationgroup objects belonging to certain employee.
https://api.sohnar.com/TrafficLiteServer/openapi/staff/employee/{employeeId}/calendarblockallocations
| name | description | default |
|---|---|---|
| employeeId | Employee's id. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/staff/employee/1/calendarblockallocations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/staff/employee/1/calendarblockallocations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:27 GMT
<pagedResult maxResults="1" windowSize="5" currentPage="1">
<calendarBlockTimeAllocationGroupSearchWrapper id="1" version="0" dateCreated="2016-10-05T12:18:57.907+02:00" dateModified="2016-10-05T12:18:57.907+02:00">
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<uuid>e18ae65d-e126-49e9-987e-b0988f5c5e0c</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="2" version="0" dateCreated="2016-10-05T12:18:57.909+02:00">
<uuid>99be8203-f3f2-4ae6-9279-8e6246a85dc9</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="1" version="0" dateCreated="2016-10-05T12:18:57.908+02:00">
<uuid>e957dae0-ead1-4676-a111-692af5c46711</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CASimon Stewart - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<trafficEmployeeFirstName>Simon</trafficEmployeeFirstName>
<trafficEmployeeLastName>Stewart</trafficEmployeeLastName>
<trafficEmployeeDepartmentName>UPDATED Name 0.5537237104864949</trafficEmployeeDepartmentName>
<trafficEmployeeLocationName>UPD Name 0.2899567023143218</trafficEmployeeLocationName>
</calendarBlockTimeAllocationGroupSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:25 GMT
{
"maxResults":1,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.scheduling.CalendarBlockTimeAllocationGroupSearchWrapperTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.907+0000",
"dateModified":"2016-10-05T10:18:57.907+0000",
"trafficEmployeeId":{
"id":1
},
"uuid":"e18ae65d-e126-49e9-987e-b0988f5c5e0c",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:57.909+0000",
"dateModified":null,
"uuid":"99be8203-f3f2-4ae6-9279-8e6246a85dc9",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.908+0000",
"dateModified":null,
"uuid":"e957dae0-ead1-4676-a111-692af5c46711",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CASimon Stewart - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null,
"trafficEmployeeFirstName":"Simon",
"trafficEmployeeLastName":"Stewart",
"calendarBlockListItemDescription":null,
"trafficEmployeeDepartment":null,
"trafficEmployeeLocation":null,
"trafficEmployeeDepartmentName":"UPDATED Name 0.5537237104864949",
"trafficEmployeeLocationName":"UPD Name 0.2899567023143218",
"trafficEmployeeGroups":null
}
],
"windowSize":5,
"currentPage":1
}
Returns single JobTaskcalendarallocationGroup object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/calendarblocks/{id}
| name | description | default |
|---|---|---|
| id | CalendarAllocationGroup's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/timeallocations/calendarblocks/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/timeallocations/calendarblocks/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:26 GMT
<calendarBlockTimeAllocationGroup id="1" version="0" dateCreated="2016-10-05T12:18:57.907+02:00" dateModified="2016-10-05T12:18:57.907+02:00">
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<uuid>e18ae65d-e126-49e9-987e-b0988f5c5e0c</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="2" version="0" dateCreated="2016-10-05T12:18:57.909+02:00">
<uuid>99be8203-f3f2-4ae6-9279-8e6246a85dc9</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="1" version="0" dateCreated="2016-10-05T12:18:57.908+02:00">
<uuid>e957dae0-ead1-4676-a111-692af5c46711</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CASimon Stewart - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
</calendarBlockTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:25 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.907+0000",
"dateModified":"2016-10-05T10:18:57.907+0000",
"trafficEmployeeId":{
"id":1
},
"uuid":"e18ae65d-e126-49e9-987e-b0988f5c5e0c",
"externalCalendarUUID":null,
"externalCalendarTag":null,
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:57.909+0000",
"dateModified":null,
"uuid":"99be8203-f3f2-4ae6-9279-8e6246a85dc9",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:57.908+0000",
"dateModified":null,
"uuid":"e957dae0-ead1-4676-a111-692af5c46711",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CASimon Stewart - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null
}
Updates calendarallocationgroup with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/calendarblocks
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/timeallocations/calendarblocks HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<calendarBlockTimeAllocationGroup id="25" version="1" dateCreated="2016-10-05T12:19:00.971+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<trafficEmployeeId>
<id>27</id>
</trafficEmployeeId>
<uuid>fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="49" version="1" dateCreated="2016-10-05T12:19:00.972+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>e6b73aa8-eb87-4b0a-8f10-3cb87cccc050</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="50" version="1" dateCreated="2016-10-05T12:19:00.973+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>417710a0-850b-4ff2-baa6-bc19a75346c4</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAScott Musson - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<externalCalendarTag>UPDATED Calendar tag 0.782184674212095</externalCalendarTag>
</calendarBlockTimeAllocationGroup>
POST /TrafficLiteServer/openapi/timeallocations/calendarblocks HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"trafficEmployeeId":{
"id":27
},
"createdByUserId":{
"id":1
},
"calendarBlockListItemId":null,
"createdInExternalCalendar":false,
"externalCode":null,
"allocationIntervals":[
{
"dateCreated":"2016-10-05T10:19:00.973+0000",
"durationInSeconds":32400,
"dateModified":null,
"startTime":"2016-10-14T07:00:00.000+0000",
"externalCalendarTag":null,
"id":50,
"endTime":"2016-10-14T16:00:00.000+0000",
"version":0,
"uuid":"417710a0-850b-4ff2-baa6-bc19a75346c4"
},
{
"dateCreated":"2016-10-05T10:19:00.972+0000",
"durationInSeconds":32400,
"dateModified":null,
"startTime":"2016-10-13T07:00:00.000+0000",
"externalCalendarTag":null,
"id":49,
"endTime":"2016-10-13T16:00:00.000+0000",
"version":0,
"uuid":"e6b73aa8-eb87-4b0a-8f10-3cb87cccc050"
}
],
"description":"CAScott Musson - Task",
"dateModified":"2016-10-05T10:19:00.971+0000",
"externalCalendarTag":"UPDATED Calendar tag 0.5028631796294611",
"version":0,
"uuid":"fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d",
"externalCalendarUUID":null,
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"openToEdit":true,
"dateCreated":"2016-10-05T10:19:00.971+0000",
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"externalRecurringEvent":false,
"id":25
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:25 GMT
<calendarBlockTimeAllocationGroup id="25" version="2" dateCreated="2016-10-05T12:19:00.971+02:00" dateModified="2016-10-05T12:27:25.890+02:00">
<trafficEmployeeId>
<id>27</id>
</trafficEmployeeId>
<uuid>fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d</uuid>
<externalCalendarTag>UPDATED Calendar tag 0.782184674212095</externalCalendarTag>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals>
<calendarBlockTimeAllocationInterval id="49" version="1" dateCreated="2016-10-05T12:19:00.972+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>e6b73aa8-eb87-4b0a-8f10-3cb87cccc050</uuid>
<startTime>2016-10-13T09:00:00.000+02:00</startTime>
<endTime>2016-10-13T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
<calendarBlockTimeAllocationInterval id="50" version="1" dateCreated="2016-10-05T12:19:00.973+02:00" dateModified="2016-10-05T12:27:25.399+02:00">
<uuid>417710a0-850b-4ff2-baa6-bc19a75346c4</uuid>
<startTime>2016-10-14T09:00:00.000+02:00</startTime>
<endTime>2016-10-14T18:00:00.000+02:00</endTime>
</calendarBlockTimeAllocationInterval>
</allocationIntervals>
<description>CAScott Musson - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
</calendarBlockTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:24 GMT
{
"id":25,
"version":1,
"dateCreated":"2016-10-05T10:19:00.971+0000",
"dateModified":"2016-10-05T10:27:25.399+0000",
"trafficEmployeeId":{
"id":27
},
"uuid":"fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d",
"externalCalendarUUID":null,
"externalCalendarTag":"UPDATED Calendar tag 0.5028631796294611",
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"allocationIntervals":[
{
"id":49,
"version":1,
"dateCreated":"2016-10-05T10:19:00.972+0000",
"dateModified":"2016-10-05T10:27:25.399+0000",
"uuid":"e6b73aa8-eb87-4b0a-8f10-3cb87cccc050",
"startTime":"2016-10-13T07:00:00.000+0000",
"endTime":"2016-10-13T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
},
{
"id":50,
"version":1,
"dateCreated":"2016-10-05T10:19:00.973+0000",
"dateModified":"2016-10-05T10:27:25.399+0000",
"uuid":"417710a0-850b-4ff2-baa6-bc19a75346c4",
"startTime":"2016-10-14T07:00:00.000+0000",
"endTime":"2016-10-14T16:00:00.000+0000",
"externalCalendarTag":null,
"durationInSeconds":32400
}
],
"calendarBlockListItemId":null,
"description":"CAScott Musson - Task",
"createdByUserId":{
"id":1
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null
}
Adds submitted calendarallocationgroup and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/calendarblocks
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/timeallocations/calendarblocks HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<calendarBlockTimeAllocationGroup id="-1" version="-1" dateCreated="2016-10-05T12:19:01.068+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>0a0ccadb-26a0-448c-8c4a-439720f6b2f5</uuid>
<earliestIntervalStart>2016-10-13T09:00:00.000+02:00</earliestIntervalStart>
<latestIntervalEnd>2016-10-14T18:00:00.000+02:00</latestIntervalEnd>
<allocationIntervals />
<description>CACharlotte Charlotte - Task</description>
<createdByUserId>
<id>1</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
<externalCalendarTag>NEW Calendar tag 0.8007686853880988</externalCalendarTag>
</calendarBlockTimeAllocationGroup>
PUT /TrafficLiteServer/openapi/timeallocations/calendarblocks HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"trafficEmployeeId":{
"id":27
},
"createdByUserId":{
"id":1
},
"calendarBlockListItemId":null,
"createdInExternalCalendar":false,
"externalCode":null,
"allocationIntervals":[
],
"description":"CAScott Musson - Task",
"externalCalendarTag":"NEW Calendar tag 0.4598690750729826",
"version":"-1",
"uuid":"fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d",
"externalCalendarUUID":null,
"latestIntervalEnd":"2016-10-14T16:00:00.000+0000",
"openToEdit":true,
"dateCreated":"2016-10-05T10:19:00.971+0000",
"earliestIntervalStart":"2016-10-13T07:00:00.000+0000",
"externalRecurringEvent":false,
"id":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:28 GMT
<calendarBlockTimeAllocationGroup id="31" version="0" dateCreated="2016-10-05T12:27:28.942+02:00" dateModified="2016-10-05T12:27:28.942+02:00">
<trafficEmployeeId>
<id>21</id>
</trafficEmployeeId>
<uuid>0a0ccadb-26a0-448c-8c4a-439720f6b2f5</uuid>
<externalCalendarTag>NEW Calendar tag 0.8007686853880988</externalCalendarTag>
<allocationIntervals/>
<description>CACharlotte Charlotte - Task</description>
<createdByUserId>
<id>21</id>
</createdByUserId>
<externalRecurringEvent>false</externalRecurringEvent>
<openToEdit>true</openToEdit>
<createdInExternalCalendar>false</createdInExternalCalendar>
</calendarBlockTimeAllocationGroup>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:27 GMT
{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:27:28.418+0000",
"dateModified":"2016-10-05T10:27:28.418+0000",
"trafficEmployeeId":{
"id":27
},
"uuid":"fb3dbd3d-9b97-4c49-8c1f-fc68d747a66d",
"externalCalendarUUID":null,
"externalCalendarTag":"NEW Calendar tag 0.4598690750729826",
"earliestIntervalStart":null,
"latestIntervalEnd":null,
"allocationIntervals":[
],
"calendarBlockListItemId":null,
"description":"CAScott Musson - Task",
"createdByUserId":{
"id":21
},
"externalRecurringEvent":false,
"openToEdit":true,
"createdInExternalCalendar":false,
"externalCode":null
}
Removes calendarallocationgroup object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/timeallocations/calendarblocks/{id}
| name | description | default |
|---|---|---|
| id | CalendarAllocationGroup's id. |
DELETE /TrafficLiteServer/openapi/timeallocations/calendarblocks/26 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:28 GMT
Returns page of client objects.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/client
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/client?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/client?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:57 GMT
<pagedResult maxResults="8" windowSize="2" currentPage="1">
<clientCRMEntry id="8" version="0" dateCreated="2016-10-05T12:26:56.157+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Client 0.36024566675207415</name>
<website>http://www.aardvark.co.uk</website>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags/>
</clientCRMEntry>
<clientCRMEntry id="7" version="0" dateCreated="2016-10-05T12:26:55.851+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Client 0.7559366232787198</name>
<website>http://www.aardvark.co.uk</website>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags/>
</clientCRMEntry>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:57 GMT
{
"maxResults":8,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.ClientCRMEntryTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:26:56.157+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Client 0.36024566675207415",
"website":"http://www.aardvark.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"CLIENT",
"industryType":"INTERNET_SERVICES",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-1,
"externalCode":"externalCode:-a380-48",
"clientState":"PROSPECT",
"defaultCustomRateSetId":null,
"preferredCurrencyId":null,
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.ClientCRMEntryTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:26:55.851+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Client 0.7559366232787198",
"website":"http://www.aardvark.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"CLIENT",
"industryType":"INTERNET_SERVICES",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-1,
"externalCode":"externalCode:-a380-48",
"clientState":"PROSPECT",
"defaultCustomRateSetId":null,
"preferredCurrencyId":null,
"freeTags":[
]
}
],
"windowSize":2,
"currentPage":1
}
Returns single client object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/client/{id}
| name | description | default |
|---|---|---|
| id | Client's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/client/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/client/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:54 GMT
<clientCRMEntry id="1" version="3" dateCreated="2016-10-05T12:18:35.368+02:00" dateModified="2016-10-05T12:26:47.311+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Name 0.32633</name>
<website>http://www.aardvark.co.uk</website>
<billingLocation id="1" version="1" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:18:35.413+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Aardvark HQ</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags/>
</clientCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:54 GMT
{
"id":1,
"version":3,
"dateCreated":"2016-10-05T10:18:35.368+0000",
"dateModified":"2016-10-05T10:26:47.311+0000",
"lastUpdatedUserId":21,
"name":"UPD Name 0.32633",
"website":"http://www.aardvark.co.uk",
"description":null,
"billingLocation":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"CLIENT",
"industryType":"INTERNET_SERVICES",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-1,
"externalCode":"externalCode:-a380-48",
"clientState":"PROSPECT",
"defaultCustomRateSetId":null,
"preferredCurrencyId":null,
"freeTags":[
]
}
Returns set of locations for client object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/client/{id}/locations
| name | description | default |
|---|---|---|
| id | Client's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/client/1/locations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/client/1/locations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:58 GMT
<set>
<locationAlias id="17" version="0" dateCreated="2016-10-05T12:26:57.638+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW 0.6324029833153673</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="30" version="0" dateCreated="2016-10-05T12:26:57.636+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags/>
</locationAlias>
<locationAlias id="1" version="1" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:18:35.413+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Aardvark HQ</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags/>
</locationAlias>
<locationAlias id="16" version="0" dateCreated="2016-10-05T12:26:56.567+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW 0.03916117152751275</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="29" version="0" dateCreated="2016-10-05T12:26:56.565+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags/>
</locationAlias>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:58 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:26:57.638+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW 0.6324029833153673",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:26:57.636+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":null,
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:26:56.567+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW 0.03916117152751275",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:26:56.565+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":null,
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
}
]
Updates client with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/client
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/crm/client HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<clientCRMEntry id="1" version="2" dateCreated="2016-10-05T12:18:35.368+02:00" dateModified="2016-10-05T12:26:46.729+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.aardvark.co.uk</website>
<billingLocation id="1" version="1" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:18:35.413+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Aardvark HQ</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree />
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00" />
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags />
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags />
</billingLocation>
<primaryLocation reference="../billingLocation" />
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags />
<name>UPD Name 0.32633</name>
</clientCRMEntry>
POST /TrafficLiteServer/openapi/crm/client HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"CLIENT",
"website":"http://www.aardvark.co.uk",
"externalCode":"externalCode:-a380-48",
"defaultCustomRateSetId":null,
"crmClientClassificationListItemId":null,
"description":null,
"dateModified":"2016-10-05T10:18:35.412+0000",
"freeTags":[
],
"version":1,
"billingLocation":{
"parentCRMEntryId":null,
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.400+0000",
"lineTwo":"Second Floor",
"city":"city:9f-87ac-",
"lineOne":"3/1 Mount Mills",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"postCode":"EC1V 3NX",
"id":10,
"lineThree":"",
"version":0
},
"phone2":"phone2:7d-932f-",
"dateModified":"2016-10-05T10:18:35.413+0000",
"freeTags":[
],
"version":1,
"phone1":"190226-3456",
"parentCRMEntryType":"CLIENT",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"CLIENT",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":1,
"sport":null,
"favDrink":null
},
"ownerAliasId":1,
"personalDetails":{
"titleType":null,
"lastName":"Murdoch",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Stuart",
"emailAddress":"admin@aardvark.co.uk",
"dateCreated":"2016-10-05T10:18:35.401+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":32
},
"id":1,
"department":null
},
"name":"Aardvark HQ",
"id":1,
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk"
},
"preferredCurrencyId":null,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.368+0000",
"industryType":"INTERNET_SERVICES",
"primaryLocation":{
"parentCRMEntryId":null,
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.400+0000",
"lineTwo":"Second Floor",
"city":"city:9f-87ac-",
"lineOne":"3/1 Mount Mills",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"postCode":"EC1V 3NX",
"id":10,
"lineThree":"",
"version":0
},
"phone2":"phone2:7d-932f-",
"dateModified":"2016-10-05T10:18:35.413+0000",
"freeTags":[
],
"version":1,
"phone1":"190226-3456",
"parentCRMEntryType":"CLIENT",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"CLIENT",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":1,
"sport":null,
"favDrink":null
},
"ownerAliasId":1,
"personalDetails":{
"titleType":null,
"lastName":"Murdoch",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Stuart",
"emailAddress":"admin@aardvark.co.uk",
"dateCreated":"2016-10-05T10:18:35.401+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":32
},
"id":1,
"department":null
},
"name":"Aardvark HQ",
"id":1,
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk"
},
"name":"UPD Name 0.38364",
"colorCode":-1,
"clientState":"PROSPECT",
"id":1,
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:46 GMT
<clientCRMEntry id="1" version="3" dateCreated="2016-10-05T12:18:35.368+02:00" dateModified="2016-10-05T12:26:47.311+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Name 0.32633</name>
<website>http://www.aardvark.co.uk</website>
<billingLocation id="1" version="1" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:18:35.413+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Aardvark HQ</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="-1"/>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags/>
</clientCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:46 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:35.368+0000",
"dateModified":"2016-10-05T10:26:46.729+0000",
"lastUpdatedUserId":21,
"name":"UPD Name 0.38364",
"website":"http://www.aardvark.co.uk",
"description":null,
"billingLocation":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"CLIENT",
"industryType":"INTERNET_SERVICES",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-1,
"externalCode":"externalCode:-a380-48",
"clientState":"PROSPECT",
"defaultCustomRateSetId":null,
"preferredCurrencyId":null,
"freeTags":[
]
}
Adds submitted client and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/client
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/crm/client HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<clientCRMEntry id="-1" version="-1" dateCreated="2016-10-05T12:18:35.368+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.aardvark.co.uk</website>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags />
<name>NEW Client 0.36024566675207415</name>
</clientCRMEntry>
PUT /TrafficLiteServer/openapi/crm/client HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"CLIENT",
"website":"http://www.aardvark.co.uk",
"externalCode":"externalCode:-a380-48",
"defaultCustomRateSetId":null,
"crmClientClassificationListItemId":null,
"description":null,
"freeTags":[
],
"version":"-1",
"preferredCurrencyId":null,
"lastUpdatedUserId":21,
"dateCreated":"2016-10-05T10:18:35.368+0000",
"industryType":"INTERNET_SERVICES",
"name":"NEW Client 0.7559366232787198",
"colorCode":-1,
"clientState":"PROSPECT",
"id":"-1",
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:56 GMT
<clientCRMEntry id="8" version="0" dateCreated="2016-10-05T12:26:56.157+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Client 0.36024566675207415</name>
<website>http://www.aardvark.co.uk</website>
<crmEntryType>CLIENT</crmEntryType>
<industryType>INTERNET_SERVICES</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-1</colorCode>
<externalCode>externalCode:-a380-48</externalCode>
<clientState>PROSPECT</clientState>
<freeTags/>
</clientCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:54 GMT
{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:26:55.851+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Client 0.7559366232787198",
"website":"http://www.aardvark.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"CLIENT",
"industryType":"INTERNET_SERVICES",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-1,
"externalCode":"externalCode:-a380-48",
"clientState":"PROSPECT",
"defaultCustomRateSetId":null,
"preferredCurrencyId":null,
"freeTags":[
]
}
Returns page of supplier objects.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/supplier
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/supplier?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/supplier?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:48 GMT
<pagedResult maxResults="7" windowSize="2" currentPage="1">
<supplierCRMEntry id="7" version="0" dateCreated="2016-10-05T12:26:49.198+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Supplier 0.15990726802212374</name>
<website>http://www.gettyimages.co.uk</website>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags/>
</supplierCRMEntry>
<supplierCRMEntry id="6" version="0" dateCreated="2016-10-05T12:26:48.907+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Supplier 0.3170694430941875</name>
<website>http://www.gettyimages.co.uk</website>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags/>
</supplierCRMEntry>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:48 GMT
{
"maxResults":7,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.SupplierCRMEntryTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:26:49.198+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Supplier 0.15990726802212374",
"website":"http://www.gettyimages.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"SUPPLIER",
"industryType":"PRINTING_AND_PUBLISHING",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":67003406,
"externalCode":"externalCode:da-4c23-",
"supplierCRMStateType":"SUPPLIER",
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.SupplierCRMEntryTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:26:48.907+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Supplier 0.3170694430941875",
"website":"http://www.gettyimages.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"SUPPLIER",
"industryType":"PRINTING_AND_PUBLISHING",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":67003406,
"externalCode":"externalCode:da-4c23-",
"supplierCRMStateType":"SUPPLIER",
"freeTags":[
]
}
],
"windowSize":2,
"currentPage":1
}
Returns single supplier object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/supplier/{id}
| name | description | default |
|---|---|---|
| id | Supplier's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/supplier/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/supplier/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:50 GMT
<supplierCRMEntry id="1" version="3" dateCreated="2016-10-05T12:18:35.858+02:00" dateModified="2016-10-05T12:26:48.410+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Name 0.15961</name>
<website>http://www.gettyimages.co.uk</website>
<billingLocation id="8" version="1" dateCreated="2016-10-05T12:18:35.885+02:00" dateModified="2016-10-05T12:18:35.898+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Central London Gallery</name>
<phone1>0207 120 3600</phone1>
<phone2>phone2:729fe-bc</phone2>
<phoneFax>phoneFax:a768c-2b</phoneFax>
<email>gallery@gettyimages.co.uk</email>
<website>http://www.gettyimages.co.uk</website>
<notes>Default Notes for Location Named: Central London Gallery</notes>
<address id="17" version="0" dateCreated="2016-10-05T12:18:35.882+02:00">
<addressName>addressName:0d857-7a</addressName>
<lineOne>46 Eastcastle St</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:c06ed-ad</city>
<postCode>W1W 8DX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="18" version="0" dateCreated="2016-10-05T12:18:35.885+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="49" version="0" dateCreated="2016-10-05T12:18:35.883+02:00">
<firstName>Sandy</firstName>
<lastName>Peterson</lastName>
<emailAddress>sandy.peterson@gettyimages.co.uk</emailAddress>
</personalDetails>
<personalProfile id="18" version="0" dateCreated="2016-10-05T12:18:35.884+02:00"/>
<ownerAliasId>8</ownerAliasId>
<crmEntryType>SUPPLIER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>SUPPLIER</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags/>
</supplierCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:50 GMT
{
"id":1,
"version":3,
"dateCreated":"2016-10-05T10:18:35.858+0000",
"dateModified":"2016-10-05T10:26:48.410+0000",
"lastUpdatedUserId":21,
"name":"UPD Name 0.15961",
"website":"http://www.gettyimages.co.uk",
"description":null,
"billingLocation":{
"id":8,
"version":1,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":"2016-10-05T10:18:35.898+0000",
"lastUpdatedUserId":7,
"name":"Central London Gallery",
"phone1":"0207 120 3600",
"phone2":"phone2:729fe-bc",
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk",
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:35.882+0000",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"lineOne":"46 Eastcastle St",
"lineTwo":"",
"lineThree":"",
"city":"city:c06ed-ad",
"postCode":"W1W 8DX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:35.883+0000",
"dateModified":null,
"titleType":null,
"firstName":"Sandy",
"middleName":null,
"lastName":"Peterson",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":8,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"SUPPLIER"
},
"parentCRMEntryType":"SUPPLIER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":8,
"version":1,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":"2016-10-05T10:18:35.898+0000",
"lastUpdatedUserId":7,
"name":"Central London Gallery",
"phone1":"0207 120 3600",
"phone2":"phone2:729fe-bc",
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk",
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:35.882+0000",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"lineOne":"46 Eastcastle St",
"lineTwo":"",
"lineThree":"",
"city":"city:c06ed-ad",
"postCode":"W1W 8DX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:35.883+0000",
"dateModified":null,
"titleType":null,
"firstName":"Sandy",
"middleName":null,
"lastName":"Peterson",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":8,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"SUPPLIER"
},
"parentCRMEntryType":"SUPPLIER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"SUPPLIER",
"industryType":"PRINTING_AND_PUBLISHING",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":67003406,
"externalCode":"externalCode:da-4c23-",
"supplierCRMStateType":"SUPPLIER",
"freeTags":[
]
}
Returns set of locations for supplier object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/supplier/{id}/locations
| name | description | default |
|---|---|---|
| id | Supplier's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/supplier/1/locations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/supplier/1/locations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:54 GMT
<set>
<locationAlias id="8" version="1" dateCreated="2016-10-05T12:18:35.885+02:00" dateModified="2016-10-05T12:18:35.898+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Central London Gallery</name>
<phone1>0207 120 3600</phone1>
<phone2>phone2:729fe-bc</phone2>
<phoneFax>phoneFax:a768c-2b</phoneFax>
<email>gallery@gettyimages.co.uk</email>
<website>http://www.gettyimages.co.uk</website>
<notes>Default Notes for Location Named: Central London Gallery</notes>
<address id="17" version="0" dateCreated="2016-10-05T12:18:35.882+02:00">
<addressName>addressName:0d857-7a</addressName>
<lineOne>46 Eastcastle St</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:c06ed-ad</city>
<postCode>W1W 8DX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="18" version="0" dateCreated="2016-10-05T12:18:35.885+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="49" version="0" dateCreated="2016-10-05T12:18:35.883+02:00">
<firstName>Sandy</firstName>
<lastName>Peterson</lastName>
<emailAddress>sandy.peterson@gettyimages.co.uk</emailAddress>
</personalDetails>
<personalProfile id="18" version="0" dateCreated="2016-10-05T12:18:35.884+02:00"/>
<ownerAliasId>8</ownerAliasId>
<crmEntryType>SUPPLIER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>SUPPLIER</parentCRMEntryType>
<freeTags/>
</locationAlias>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:54 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":8,
"version":1,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":"2016-10-05T10:18:35.898+0000",
"lastUpdatedUserId":7,
"name":"Central London Gallery",
"phone1":"0207 120 3600",
"phone2":"phone2:729fe-bc",
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk",
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:35.882+0000",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"lineOne":"46 Eastcastle St",
"lineTwo":"",
"lineThree":"",
"city":"city:c06ed-ad",
"postCode":"W1W 8DX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:35.883+0000",
"dateModified":null,
"titleType":null,
"firstName":"Sandy",
"middleName":null,
"lastName":"Peterson",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":8,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"SUPPLIER"
},
"parentCRMEntryType":"SUPPLIER",
"parentCRMEntryId":null,
"freeTags":[
]
}
]
Updates supplier with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/supplier
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/crm/supplier HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<supplierCRMEntry id="1" version="2" dateCreated="2016-10-05T12:18:35.858+02:00" dateModified="2016-10-05T12:26:47.901+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.gettyimages.co.uk</website>
<billingLocation id="8" version="1" dateCreated="2016-10-05T12:18:35.885+02:00" dateModified="2016-10-05T12:18:35.898+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Central London Gallery</name>
<phone1>0207 120 3600</phone1>
<phone2>phone2:729fe-bc</phone2>
<phoneFax>phoneFax:a768c-2b</phoneFax>
<email>gallery@gettyimages.co.uk</email>
<website>http://www.gettyimages.co.uk</website>
<notes>Default Notes for Location Named: Central London Gallery</notes>
<address id="17" version="0" dateCreated="2016-10-05T12:18:35.882+02:00">
<addressName>addressName:0d857-7a</addressName>
<lineOne>46 Eastcastle St</lineOne>
<lineTwo />
<lineThree />
<city>city:c06ed-ad</city>
<postCode>W1W 8DX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="18" version="0" dateCreated="2016-10-05T12:18:35.885+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="49" version="0" dateCreated="2016-10-05T12:18:35.883+02:00">
<firstName>Sandy</firstName>
<lastName>Peterson</lastName>
<emailAddress>sandy.peterson@gettyimages.co.uk</emailAddress>
</personalDetails>
<personalProfile id="18" version="0" dateCreated="2016-10-05T12:18:35.884+02:00" />
<ownerAliasId>8</ownerAliasId>
<crmEntryType>SUPPLIER</crmEntryType>
<freeTags />
</primaryContact>
<parentCRMEntryType>SUPPLIER</parentCRMEntryType>
<freeTags />
</billingLocation>
<primaryLocation reference="../billingLocation" />
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags />
<name>UPD Name 0.15961</name>
</supplierCRMEntry>
POST /TrafficLiteServer/openapi/crm/supplier HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"SUPPLIER",
"website":"http://www.gettyimages.co.uk",
"externalCode":"externalCode:da-4c23-",
"crmClientClassificationListItemId":null,
"description":null,
"dateModified":"2016-10-05T10:18:35.898+0000",
"freeTags":[
],
"version":1,
"billingLocation":{
"parentCRMEntryId":null,
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.882+0000",
"lineTwo":"",
"city":"city:c06ed-ad",
"lineOne":"46 Eastcastle St",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"postCode":"W1W 8DX",
"id":17,
"lineThree":"",
"version":0
},
"phone2":"phone2:729fe-bc",
"dateModified":"2016-10-05T10:18:35.898+0000",
"freeTags":[
],
"version":1,
"phone1":"0207 120 3600",
"parentCRMEntryType":"SUPPLIER",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"SUPPLIER",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":18,
"sport":null,
"favDrink":null
},
"ownerAliasId":8,
"personalDetails":{
"titleType":null,
"lastName":"Peterson",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Sandy",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"dateCreated":"2016-10-05T10:18:35.883+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":49
},
"id":18,
"department":null
},
"name":"Central London Gallery",
"id":8,
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk"
},
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.858+0000",
"industryType":"PRINTING_AND_PUBLISHING",
"supplierCRMStateType":"SUPPLIER",
"primaryLocation":{
"parentCRMEntryId":null,
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.882+0000",
"lineTwo":"",
"city":"city:c06ed-ad",
"lineOne":"46 Eastcastle St",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"postCode":"W1W 8DX",
"id":17,
"lineThree":"",
"version":0
},
"phone2":"phone2:729fe-bc",
"dateModified":"2016-10-05T10:18:35.898+0000",
"freeTags":[
],
"version":1,
"phone1":"0207 120 3600",
"parentCRMEntryType":"SUPPLIER",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"SUPPLIER",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":18,
"sport":null,
"favDrink":null
},
"ownerAliasId":8,
"personalDetails":{
"titleType":null,
"lastName":"Peterson",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Sandy",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"dateCreated":"2016-10-05T10:18:35.883+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":49
},
"id":18,
"department":null
},
"name":"Central London Gallery",
"id":8,
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk"
},
"name":"UPD Name 0.52830",
"colorCode":67003406,
"id":1,
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:47 GMT
<supplierCRMEntry id="1" version="3" dateCreated="2016-10-05T12:18:35.858+02:00" dateModified="2016-10-05T12:26:48.410+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Name 0.15961</name>
<website>http://www.gettyimages.co.uk</website>
<billingLocation id="8" version="1" dateCreated="2016-10-05T12:18:35.885+02:00" dateModified="2016-10-05T12:18:35.898+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Central London Gallery</name>
<phone1>0207 120 3600</phone1>
<phone2>phone2:729fe-bc</phone2>
<phoneFax>phoneFax:a768c-2b</phoneFax>
<email>gallery@gettyimages.co.uk</email>
<website>http://www.gettyimages.co.uk</website>
<notes>Default Notes for Location Named: Central London Gallery</notes>
<address id="17" version="0" dateCreated="2016-10-05T12:18:35.882+02:00">
<addressName>addressName:0d857-7a</addressName>
<lineOne>46 Eastcastle St</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:c06ed-ad</city>
<postCode>W1W 8DX</postCode>
<country id="225" version="-1"/>
</address>
<primaryContact id="18" version="0" dateCreated="2016-10-05T12:18:35.885+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="49" version="0" dateCreated="2016-10-05T12:18:35.883+02:00">
<firstName>Sandy</firstName>
<lastName>Peterson</lastName>
<emailAddress>sandy.peterson@gettyimages.co.uk</emailAddress>
</personalDetails>
<personalProfile id="18" version="0" dateCreated="2016-10-05T12:18:35.884+02:00"/>
<ownerAliasId>8</ownerAliasId>
<crmEntryType>SUPPLIER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>SUPPLIER</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags/>
</supplierCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:47 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:35.858+0000",
"dateModified":"2016-10-05T10:26:47.901+0000",
"lastUpdatedUserId":21,
"name":"UPD Name 0.52830",
"website":"http://www.gettyimages.co.uk",
"description":null,
"billingLocation":{
"id":8,
"version":1,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":"2016-10-05T10:18:35.898+0000",
"lastUpdatedUserId":7,
"name":"Central London Gallery",
"phone1":"0207 120 3600",
"phone2":"phone2:729fe-bc",
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk",
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:35.882+0000",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"lineOne":"46 Eastcastle St",
"lineTwo":"",
"lineThree":"",
"city":"city:c06ed-ad",
"postCode":"W1W 8DX",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:35.883+0000",
"dateModified":null,
"titleType":null,
"firstName":"Sandy",
"middleName":null,
"lastName":"Peterson",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":8,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"SUPPLIER"
},
"parentCRMEntryType":"SUPPLIER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":8,
"version":1,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":"2016-10-05T10:18:35.898+0000",
"lastUpdatedUserId":7,
"name":"Central London Gallery",
"phone1":"0207 120 3600",
"phone2":"phone2:729fe-bc",
"phoneFax":"phoneFax:a768c-2b",
"email":"gallery@gettyimages.co.uk",
"website":"http://www.gettyimages.co.uk",
"notes":"Default Notes for Location Named: Central London Gallery",
"address":{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:35.882+0000",
"dateModified":null,
"addressName":"addressName:0d857-7a",
"lineOne":"46 Eastcastle St",
"lineTwo":"",
"lineThree":"",
"city":"city:c06ed-ad",
"postCode":"W1W 8DX",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.885+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:35.883+0000",
"dateModified":null,
"titleType":null,
"firstName":"Sandy",
"middleName":null,
"lastName":"Peterson",
"emailAddress":"sandy.peterson@gettyimages.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:35.884+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":8,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"SUPPLIER"
},
"parentCRMEntryType":"SUPPLIER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"SUPPLIER",
"industryType":"PRINTING_AND_PUBLISHING",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":67003406,
"externalCode":"externalCode:da-4c23-",
"supplierCRMStateType":"SUPPLIER",
"freeTags":[
]
}
Adds submitted supplier and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/supplier
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/crm/supplier HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<supplierCRMEntry id="-1" version="-1" dateCreated="2016-10-05T12:18:35.858+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.gettyimages.co.uk</website>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags />
<name>NEW Supplier 0.15990726802212374</name>
</supplierCRMEntry>
PUT /TrafficLiteServer/openapi/crm/supplier HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"SUPPLIER",
"website":"http://www.gettyimages.co.uk",
"externalCode":"externalCode:da-4c23-",
"crmClientClassificationListItemId":null,
"description":null,
"freeTags":[
],
"version":"-1",
"lastUpdatedUserId":21,
"dateCreated":"2016-10-05T10:18:35.858+0000",
"industryType":"PRINTING_AND_PUBLISHING",
"supplierCRMStateType":"SUPPLIER",
"name":"NEW Supplier 0.3170694430941875",
"colorCode":67003406,
"id":"-1",
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:48 GMT
<supplierCRMEntry id="7" version="0" dateCreated="2016-10-05T12:26:49.198+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Supplier 0.15990726802212374</name>
<website>http://www.gettyimages.co.uk</website>
<crmEntryType>SUPPLIER</crmEntryType>
<industryType>PRINTING_AND_PUBLISHING</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>67003406</colorCode>
<externalCode>externalCode:da-4c23-</externalCode>
<supplierCRMStateType>SUPPLIER</supplierCRMStateType>
<freeTags/>
</supplierCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:48 GMT
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:26:48.907+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Supplier 0.3170694430941875",
"website":"http://www.gettyimages.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"SUPPLIER",
"industryType":"PRINTING_AND_PUBLISHING",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":67003406,
"externalCode":"externalCode:da-4c23-",
"supplierCRMStateType":"SUPPLIER",
"freeTags":[
]
}
Returns page of other objects.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/other
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/other?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/other?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:57 GMT
<pagedResult maxResults="5" windowSize="2" currentPage="1">
<otherCRMEntry id="5" version="0" dateCreated="2016-10-05T12:26:54.247+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Other 0.8680006983718368</name>
<website>http://www.supplierone.co.uk</website>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags/>
</otherCRMEntry>
<otherCRMEntry id="4" version="0" dateCreated="2016-10-05T12:26:53.836+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Other 0.21183570389327244</name>
<website>http://www.supplierone.co.uk</website>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags/>
</otherCRMEntry>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:57 GMT
{
"maxResults":5,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.OtherCRMEntryTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:26:54.247+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Other 0.8680006983718368",
"website":"http://www.supplierone.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"OTHER",
"industryType":"OTHER_NOT_CLASSIFIED",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-225790507,
"externalCode":"externalCode:f2-7a24-",
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.refactor.OtherCRMEntryTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:26:53.836+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Other 0.21183570389327244",
"website":"http://www.supplierone.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"OTHER",
"industryType":"OTHER_NOT_CLASSIFIED",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-225790507,
"externalCode":"externalCode:f2-7a24-",
"freeTags":[
]
}
],
"windowSize":2,
"currentPage":1
}
Returns single other object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/other/{id}
| name | description | default |
|---|---|---|
| id | Other's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/other/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/other/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
<otherCRMEntry id="1" version="1" dateCreated="2016-10-05T12:18:36.107+02:00" dateModified="2016-10-05T12:18:36.154+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Other One</name>
<website>http://www.supplierone.co.uk</website>
<billingLocation id="13" version="1" dateCreated="2016-10-05T12:18:36.142+02:00" dateModified="2016-10-05T12:18:36.154+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Primary Location</name>
<phone1>555-4422</phone1>
<phone2>phone2:c0c5e8bd</phone2>
<phoneFax>phoneFax:4e98e7a4</phoneFax>
<email>primary_location@1-2-3.co.uk</email>
<website>http://www.1-2-3.co.uk</website>
<notes>Default Notes for Location Named: Primary Location</notes>
<address id="22" version="0" dateCreated="2016-10-05T12:18:36.136+02:00">
<addressName>addressName:46b89409</addressName>
<lineOne>3/178 Pentonville Road</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:3f02a3e1</city>
<postCode>N1 9JP</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="25" version="0" dateCreated="2016-10-05T12:18:36.141+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="56" version="0" dateCreated="2016-10-05T12:18:36.138+02:00">
<firstName>Primary</firstName>
<lastName>Contact</lastName>
<emailAddress>primary.contact@1-2-3.co.uk</emailAddress>
</personalDetails>
<personalProfile id="25" version="0" dateCreated="2016-10-05T12:18:36.140+02:00"/>
<ownerAliasId>13</ownerAliasId>
<crmEntryType>OTHER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>OTHER</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags/>
</otherCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:36.107+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Other One",
"website":"http://www.supplierone.co.uk",
"description":null,
"billingLocation":{
"id":13,
"version":1,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Primary Location",
"phone1":"555-4422",
"phone2":"phone2:c0c5e8bd",
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk",
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:36.136+0000",
"dateModified":null,
"addressName":"addressName:46b89409",
"lineOne":"3/178 Pentonville Road",
"lineTwo":"",
"lineThree":"",
"city":"city:3f02a3e1",
"postCode":"N1 9JP",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:36.138+0000",
"dateModified":null,
"titleType":null,
"firstName":"Primary",
"middleName":null,
"lastName":"Contact",
"emailAddress":"primary.contact@1-2-3.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":13,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"OTHER"
},
"parentCRMEntryType":"OTHER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":13,
"version":1,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Primary Location",
"phone1":"555-4422",
"phone2":"phone2:c0c5e8bd",
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk",
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:36.136+0000",
"dateModified":null,
"addressName":"addressName:46b89409",
"lineOne":"3/178 Pentonville Road",
"lineTwo":"",
"lineThree":"",
"city":"city:3f02a3e1",
"postCode":"N1 9JP",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:36.138+0000",
"dateModified":null,
"titleType":null,
"firstName":"Primary",
"middleName":null,
"lastName":"Contact",
"emailAddress":"primary.contact@1-2-3.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":13,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"OTHER"
},
"parentCRMEntryType":"OTHER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"OTHER",
"industryType":"OTHER_NOT_CLASSIFIED",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-225790507,
"externalCode":"externalCode:f2-7a24-",
"freeTags":[
]
}
Returns set of locations for other object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/other/{id}/locations
| name | description | default |
|---|---|---|
| id | Other's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/other/1/locations HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/other/1/locations HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
<set>
<locationAlias id="13" version="1" dateCreated="2016-10-05T12:18:36.142+02:00" dateModified="2016-10-05T12:18:36.154+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Primary Location</name>
<phone1>555-4422</phone1>
<phone2>phone2:c0c5e8bd</phone2>
<phoneFax>phoneFax:4e98e7a4</phoneFax>
<email>primary_location@1-2-3.co.uk</email>
<website>http://www.1-2-3.co.uk</website>
<notes>Default Notes for Location Named: Primary Location</notes>
<address id="22" version="0" dateCreated="2016-10-05T12:18:36.136+02:00">
<addressName>addressName:46b89409</addressName>
<lineOne>3/178 Pentonville Road</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:3f02a3e1</city>
<postCode>N1 9JP</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="25" version="0" dateCreated="2016-10-05T12:18:36.141+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="56" version="0" dateCreated="2016-10-05T12:18:36.138+02:00">
<firstName>Primary</firstName>
<lastName>Contact</lastName>
<emailAddress>primary.contact@1-2-3.co.uk</emailAddress>
</personalDetails>
<personalProfile id="25" version="0" dateCreated="2016-10-05T12:18:36.140+02:00"/>
<ownerAliasId>13</ownerAliasId>
<crmEntryType>OTHER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>OTHER</parentCRMEntryType>
<freeTags/>
</locationAlias>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":13,
"version":1,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Primary Location",
"phone1":"555-4422",
"phone2":"phone2:c0c5e8bd",
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk",
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:36.136+0000",
"dateModified":null,
"addressName":"addressName:46b89409",
"lineOne":"3/178 Pentonville Road",
"lineTwo":"",
"lineThree":"",
"city":"city:3f02a3e1",
"postCode":"N1 9JP",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:36.138+0000",
"dateModified":null,
"titleType":null,
"firstName":"Primary",
"middleName":null,
"lastName":"Contact",
"emailAddress":"primary.contact@1-2-3.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":13,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"OTHER"
},
"parentCRMEntryType":"OTHER",
"parentCRMEntryId":null,
"freeTags":[
]
}
]
Updates other with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/other
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/crm/other HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<otherCRMEntry id="1" version="2" dateCreated="2016-10-05T12:18:36.107+02:00" dateModified="2016-10-05T12:26:50.728+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.supplierone.co.uk</website>
<billingLocation id="13" version="1" dateCreated="2016-10-05T12:18:36.142+02:00" dateModified="2016-10-05T12:18:36.154+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Primary Location</name>
<phone1>555-4422</phone1>
<phone2>phone2:c0c5e8bd</phone2>
<phoneFax>phoneFax:4e98e7a4</phoneFax>
<email>primary_location@1-2-3.co.uk</email>
<website>http://www.1-2-3.co.uk</website>
<notes>Default Notes for Location Named: Primary Location</notes>
<address id="22" version="0" dateCreated="2016-10-05T12:18:36.136+02:00">
<addressName>addressName:46b89409</addressName>
<lineOne>3/178 Pentonville Road</lineOne>
<lineTwo />
<lineThree />
<city>city:3f02a3e1</city>
<postCode>N1 9JP</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="25" version="0" dateCreated="2016-10-05T12:18:36.141+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="56" version="0" dateCreated="2016-10-05T12:18:36.138+02:00">
<firstName>Primary</firstName>
<lastName>Contact</lastName>
<emailAddress>primary.contact@1-2-3.co.uk</emailAddress>
</personalDetails>
<personalProfile id="25" version="0" dateCreated="2016-10-05T12:18:36.140+02:00" />
<ownerAliasId>13</ownerAliasId>
<crmEntryType>OTHER</crmEntryType>
<freeTags />
</primaryContact>
<parentCRMEntryType>OTHER</parentCRMEntryType>
<freeTags />
</billingLocation>
<primaryLocation reference="../billingLocation" />
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags />
<name>UPD Other Name 0.036842853015238486</name>
</otherCRMEntry>
POST /TrafficLiteServer/openapi/crm/other HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"OTHER",
"website":"http://www.supplierone.co.uk",
"externalCode":"externalCode:f2-7a24-",
"crmClientClassificationListItemId":null,
"description":null,
"dateModified":"2016-10-05T10:18:36.154+0000",
"freeTags":[
],
"version":1,
"billingLocation":{
"parentCRMEntryId":null,
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:36.136+0000",
"lineTwo":"",
"city":"city:3f02a3e1",
"lineOne":"3/178 Pentonville Road",
"dateModified":null,
"addressName":"addressName:46b89409",
"postCode":"N1 9JP",
"id":22,
"lineThree":"",
"version":0
},
"phone2":"phone2:c0c5e8bd",
"dateModified":"2016-10-05T10:18:36.154+0000",
"freeTags":[
],
"version":1,
"phone1":"555-4422",
"parentCRMEntryType":"OTHER",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"OTHER",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":25,
"sport":null,
"favDrink":null
},
"ownerAliasId":13,
"personalDetails":{
"titleType":null,
"lastName":"Contact",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Primary",
"emailAddress":"primary.contact@1-2-3.co.uk",
"dateCreated":"2016-10-05T10:18:36.138+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":56
},
"id":25,
"department":null
},
"name":"Primary Location",
"id":13,
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk"
},
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.107+0000",
"industryType":"OTHER_NOT_CLASSIFIED",
"primaryLocation":{
"parentCRMEntryId":null,
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:36.136+0000",
"lineTwo":"",
"city":"city:3f02a3e1",
"lineOne":"3/178 Pentonville Road",
"dateModified":null,
"addressName":"addressName:46b89409",
"postCode":"N1 9JP",
"id":22,
"lineThree":"",
"version":0
},
"phone2":"phone2:c0c5e8bd",
"dateModified":"2016-10-05T10:18:36.154+0000",
"freeTags":[
],
"version":1,
"phone1":"555-4422",
"parentCRMEntryType":"OTHER",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"OTHER",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":25,
"sport":null,
"favDrink":null
},
"ownerAliasId":13,
"personalDetails":{
"titleType":null,
"lastName":"Contact",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Primary",
"emailAddress":"primary.contact@1-2-3.co.uk",
"dateCreated":"2016-10-05T10:18:36.138+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":56
},
"id":25,
"department":null
},
"name":"Primary Location",
"id":13,
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk"
},
"name":"UPD Other Name 0.20612786247596215",
"colorCode":-225790507,
"id":1,
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:52 GMT
<otherCRMEntry id="1" version="3" dateCreated="2016-10-05T12:18:36.107+02:00" dateModified="2016-10-05T12:26:52.024+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Other Name 0.036842853015238486</name>
<website>http://www.supplierone.co.uk</website>
<billingLocation id="13" version="1" dateCreated="2016-10-05T12:18:36.142+02:00" dateModified="2016-10-05T12:18:36.154+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Primary Location</name>
<phone1>555-4422</phone1>
<phone2>phone2:c0c5e8bd</phone2>
<phoneFax>phoneFax:4e98e7a4</phoneFax>
<email>primary_location@1-2-3.co.uk</email>
<website>http://www.1-2-3.co.uk</website>
<notes>Default Notes for Location Named: Primary Location</notes>
<address id="22" version="0" dateCreated="2016-10-05T12:18:36.136+02:00">
<addressName>addressName:46b89409</addressName>
<lineOne>3/178 Pentonville Road</lineOne>
<lineTwo>
</lineTwo>
<lineThree>
</lineThree>
<city>city:3f02a3e1</city>
<postCode>N1 9JP</postCode>
<country id="225" version="-1"/>
</address>
<primaryContact id="25" version="0" dateCreated="2016-10-05T12:18:36.141+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="56" version="0" dateCreated="2016-10-05T12:18:36.138+02:00">
<firstName>Primary</firstName>
<lastName>Contact</lastName>
<emailAddress>primary.contact@1-2-3.co.uk</emailAddress>
</personalDetails>
<personalProfile id="25" version="0" dateCreated="2016-10-05T12:18:36.140+02:00"/>
<ownerAliasId>13</ownerAliasId>
<crmEntryType>OTHER</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>OTHER</parentCRMEntryType>
<freeTags/>
</billingLocation>
<primaryLocation reference="../billingLocation"/>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags/>
</otherCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:50 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:36.107+0000",
"dateModified":"2016-10-05T10:26:50.728+0000",
"lastUpdatedUserId":21,
"name":"UPD Other Name 0.20612786247596215",
"website":"http://www.supplierone.co.uk",
"description":null,
"billingLocation":{
"id":13,
"version":1,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Primary Location",
"phone1":"555-4422",
"phone2":"phone2:c0c5e8bd",
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk",
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:36.136+0000",
"dateModified":null,
"addressName":"addressName:46b89409",
"lineOne":"3/178 Pentonville Road",
"lineTwo":"",
"lineThree":"",
"city":"city:3f02a3e1",
"postCode":"N1 9JP",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:36.138+0000",
"dateModified":null,
"titleType":null,
"firstName":"Primary",
"middleName":null,
"lastName":"Contact",
"emailAddress":"primary.contact@1-2-3.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":13,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"OTHER"
},
"parentCRMEntryType":"OTHER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"primaryLocation":{
"id":13,
"version":1,
"dateCreated":"2016-10-05T10:18:36.142+0000",
"dateModified":"2016-10-05T10:18:36.154+0000",
"lastUpdatedUserId":7,
"name":"Primary Location",
"phone1":"555-4422",
"phone2":"phone2:c0c5e8bd",
"phoneFax":"phoneFax:4e98e7a4",
"email":"primary_location@1-2-3.co.uk",
"website":"http://www.1-2-3.co.uk",
"notes":"Default Notes for Location Named: Primary Location",
"address":{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:36.136+0000",
"dateModified":null,
"addressName":"addressName:46b89409",
"lineOne":"3/178 Pentonville Road",
"lineTwo":"",
"lineThree":"",
"city":"city:3f02a3e1",
"postCode":"N1 9JP",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.141+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:36.138+0000",
"dateModified":null,
"titleType":null,
"firstName":"Primary",
"middleName":null,
"lastName":"Contact",
"emailAddress":"primary.contact@1-2-3.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:36.140+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":13,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"OTHER"
},
"parentCRMEntryType":"OTHER",
"parentCRMEntryId":null,
"freeTags":[
]
},
"crmEntryType":"OTHER",
"industryType":"OTHER_NOT_CLASSIFIED",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-225790507,
"externalCode":"externalCode:f2-7a24-",
"freeTags":[
]
}
Adds submitted other and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/other
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/crm/other HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<otherCRMEntry id="-1" version="-1" dateCreated="2016-10-05T12:18:36.107+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<website>http://www.supplierone.co.uk</website>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags />
<name>NEW Other 0.8680006983718368</name>
</otherCRMEntry>
PUT /TrafficLiteServer/openapi/crm/other HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"crmEntryType":"OTHER",
"website":"http://www.supplierone.co.uk",
"externalCode":"externalCode:f2-7a24-",
"crmClientClassificationListItemId":null,
"description":null,
"freeTags":[
],
"version":"-1",
"lastUpdatedUserId":21,
"dateCreated":"2016-10-05T10:18:36.107+0000",
"industryType":"OTHER_NOT_CLASSIFIED",
"name":"NEW Other 0.21183570389327244",
"colorCode":-225790507,
"id":"-1",
"companyProfile":null,
"accountManagerId":1
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:53 GMT
<otherCRMEntry id="5" version="0" dateCreated="2016-10-05T12:26:54.247+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW Other 0.8680006983718368</name>
<website>http://www.supplierone.co.uk</website>
<crmEntryType>OTHER</crmEntryType>
<industryType>OTHER_NOT_CLASSIFIED</industryType>
<accountManagerId>1</accountManagerId>
<colorCode>-225790507</colorCode>
<externalCode>externalCode:f2-7a24-</externalCode>
<freeTags/>
</otherCRMEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:53 GMT
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:26:53.836+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW Other 0.21183570389327244",
"website":"http://www.supplierone.co.uk",
"description":null,
"billingLocation":null,
"primaryLocation":null,
"crmEntryType":"OTHER",
"industryType":"OTHER_NOT_CLASSIFIED",
"accountManagerId":1,
"crmClientClassificationListItemId":null,
"companyProfile":null,
"colorCode":-225790507,
"externalCode":"externalCode:f2-7a24-",
"freeTags":[
]
}
Returns page of address objects.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/address
| name | description | default |
|---|---|---|
| type | Specifies type of the parent CRM object. | CLIENT |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/address?type=CLIENT&windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/address?type=CLIENT&windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:45 GMT
<pagedResult maxResults="7" windowSize="2" currentPage="1">
<locationAlias id="7" version="1" dateCreated="2016-10-05T12:18:35.821+02:00" dateModified="2016-10-05T12:18:35.831+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Euro HQ</name>
<phone1>555-3456</phone1>
<phone2>phone2:8cb-a0fb</phone2>
<phoneFax>phoneFax:5c2-b181</phoneFax>
<email>john@sun.com</email>
<website>http://www.sun.co.uk</website>
<notes>Default Notes for Location Named: Euro HQ</notes>
<address id="16" version="0" dateCreated="2016-10-05T12:18:35.818+02:00">
<addressName>addressName:86f-8bbd</addressName>
<lineOne>1 King William Street</lineOne>
<lineTwo>Building 64</lineTwo>
<lineThree>
</lineThree>
<city>city:4f1-97fe</city>
<postCode>EC3V 3LA</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="16" version="0" dateCreated="2016-10-05T12:18:35.821+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="47" version="0" dateCreated="2016-10-05T12:18:35.819+02:00">
<firstName>Jonathon</firstName>
<lastName>Schwartz</lastName>
<emailAddress>john@sun.com</emailAddress>
</personalDetails>
<personalProfile id="16" version="0" dateCreated="2016-10-05T12:18:35.820+02:00"/>
<ownerAliasId>7</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>6</parentCRMEntryId>
<freeTags/>
</locationAlias>
<locationAlias id="6" version="1" dateCreated="2016-10-05T12:18:35.763+02:00" dateModified="2016-10-05T12:18:35.773+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>East London Branch</name>
<phone1>555-3456</phone1>
<phone2>phone2:5f184736</phone2>
<phoneFax>phoneFax:62f2caa0</phoneFax>
<email>london_office@vandelay.com</email>
<website>http://www.vandelay.com</website>
<notes>Default Notes for Location Named: East London Branch</notes>
<address id="15" version="0" dateCreated="2016-10-05T12:18:35.760+02:00">
<addressName>addressName:689941ed</addressName>
<lineOne>3 Brick Lane</lineOne>
<lineTwo>Floor 2 - Truman Brewery</lineTwo>
<lineThree>
</lineThree>
<city>city:005b988c</city>
<postCode>E1 6SB</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="14" version="0" dateCreated="2016-10-05T12:18:35.763+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="45" version="0" dateCreated="2016-10-05T12:18:35.761+02:00">
<firstName>George</firstName>
<lastName>Constanza</lastName>
<emailAddress>george@vandelay.com</emailAddress>
</personalDetails>
<personalProfile id="14" version="0" dateCreated="2016-10-05T12:18:35.762+02:00"/>
<ownerAliasId>6</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>5</parentCRMEntryId>
<freeTags/>
</locationAlias>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:45 GMT
{
"maxResults":7,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":7,
"version":1,
"dateCreated":"2016-10-05T10:18:35.821+0000",
"dateModified":"2016-10-05T10:18:35.831+0000",
"lastUpdatedUserId":7,
"name":"Euro HQ",
"phone1":"555-3456",
"phone2":"phone2:8cb-a0fb",
"phoneFax":"phoneFax:5c2-b181",
"email":"john@sun.com",
"website":"http://www.sun.co.uk",
"notes":"Default Notes for Location Named: Euro HQ",
"address":{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:35.818+0000",
"dateModified":null,
"addressName":"addressName:86f-8bbd",
"lineOne":"1 King William Street",
"lineTwo":"Building 64",
"lineThree":"",
"city":"city:4f1-97fe",
"postCode":"EC3V 3LA",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:35.821+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":47,
"version":0,
"dateCreated":"2016-10-05T10:18:35.819+0000",
"dateModified":null,
"titleType":null,
"firstName":"Jonathon",
"middleName":null,
"lastName":"Schwartz",
"emailAddress":"john@sun.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:35.820+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":7,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":6,
"freeTags":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.LocationAliasTO",
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:18:35.763+0000",
"dateModified":"2016-10-05T10:18:35.773+0000",
"lastUpdatedUserId":7,
"name":"East London Branch",
"phone1":"555-3456",
"phone2":"phone2:5f184736",
"phoneFax":"phoneFax:62f2caa0",
"email":"london_office@vandelay.com",
"website":"http://www.vandelay.com",
"notes":"Default Notes for Location Named: East London Branch",
"address":{
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:18:35.760+0000",
"dateModified":null,
"addressName":"addressName:689941ed",
"lineOne":"3 Brick Lane",
"lineTwo":"Floor 2 - Truman Brewery",
"lineThree":"",
"city":"city:005b988c",
"postCode":"E1 6SB",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:35.763+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":45,
"version":0,
"dateCreated":"2016-10-05T10:18:35.761+0000",
"dateModified":null,
"titleType":null,
"firstName":"George",
"middleName":null,
"lastName":"Constanza",
"emailAddress":"george@vandelay.com",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:35.762+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":6,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":5,
"freeTags":[
]
}
],
"windowSize":2,
"currentPage":1
}
Returns single other object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/address/{id}
| name | description | default |
|---|---|---|
| id | Address's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/address/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/address/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
<locationAlias id="1" version="1" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:18:35.413+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<name>Aardvark HQ</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>1</parentCRMEntryId>
<freeTags/>
</locationAlias>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:44 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:18:35.413+0000",
"lastUpdatedUserId":7,
"name":"Aardvark HQ",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":1,
"freeTags":[
]
}
Updates crm address with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/address
| name | description | default |
|---|---|---|
| type | Specifies new type of the parent CRM object. | PRIMARY_AND_BILLING |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/crm/address HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<locationAlias id="1" version="2" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:26:59.707+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree />
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00" />
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags />
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>1</parentCRMEntryId>
<freeTags />
<name>UPD Adress Name 0.11812154809761477</name>
</locationAlias>
POST /TrafficLiteServer/openapi/crm/address HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"parentCRMEntryId":1,
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.400+0000",
"lineTwo":"Second Floor",
"city":"city:9f-87ac-",
"lineOne":"3/1 Mount Mills",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"postCode":"EC1V 3NX",
"id":10,
"lineThree":"",
"version":0
},
"phone2":"phone2:7d-932f-",
"dateModified":"2016-10-05T10:18:35.413+0000",
"freeTags":[
],
"version":1,
"phone1":"190226-3456",
"parentCRMEntryType":"CLIENT",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"primaryContact":{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"CLIENT",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"children":null,
"hobbies":null,
"partnersName":null,
"id":1,
"sport":null,
"favDrink":null
},
"ownerAliasId":1,
"personalDetails":{
"titleType":null,
"lastName":"Murdoch",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Stuart",
"emailAddress":"admin@aardvark.co.uk",
"dateCreated":"2016-10-05T10:18:35.401+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":32
},
"id":1,
"department":null
},
"name":"UPD Adress Name 0.08241986096399656",
"id":1,
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:00 GMT
<locationAlias id="1" version="3" dateCreated="2016-10-05T12:18:35.403+02:00" dateModified="2016-10-05T12:27:00.182+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>UPD Adress Name 0.11812154809761477</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="10" version="0" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="-1"/>
</address>
<primaryContact id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</primaryContact>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>1</parentCRMEntryId>
<freeTags/>
</locationAlias>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:58 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":"2016-10-05T10:26:59.707+0000",
"lastUpdatedUserId":21,
"name":"UPD Adress Name 0.08241986096399656",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:35.400+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":-1,
"dateCreated":null,
"dateModified":null,
"iso":null,
"name":null,
"printableName":null,
"iso3":null,
"numCode":null
}
},
"primaryContact":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":1,
"freeTags":[
]
}
Adds submitted crm address and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/address
| name | description | default |
|---|---|---|
| type | Specifies type of the parent CRM object. | PRIMARY_AND_BILLING |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/crm/address?type=PRIMARY_AND_BILLING HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<locationAlias id="-1" version="-1" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="-1" version="-1" dateCreated="2016-10-05T12:18:35.400+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree />
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>1</parentCRMEntryId>
<freeTags />
<name>NEW 0.6324029833153673</name>
</locationAlias>
PUT /TrafficLiteServer/openapi/crm/address?type=PRIMARY_AND_BILLING HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"parentCRMEntryId":1,
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"country":{
"printableName":"United Kingdom",
"dateCreated":null,
"iso":"GB",
"numCode":826,
"name":"UNITED KINGDOM",
"dateModified":null,
"id":225,
"version":0,
"iso3":"GBR"
},
"dateCreated":"2016-10-05T10:18:35.400+0000",
"lineTwo":"Second Floor",
"city":"city:9f-87ac-",
"lineOne":"3/1 Mount Mills",
"addressName":"addressName:a3-9c69-",
"postCode":"EC1V 3NX",
"id":"-1",
"lineThree":"",
"version":"-1"
},
"phone2":"phone2:7d-932f-",
"freeTags":[
],
"version":"-1",
"phone1":"190226-3456",
"parentCRMEntryType":"CLIENT",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"name":"NEW 0.03916117152751275",
"id":"-1",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:57 GMT
<locationAlias id="17" version="0" dateCreated="2016-10-05T12:26:57.638+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<name>NEW 0.6324029833153673</name>
<phone1>190226-3456</phone1>
<phone2>phone2:7d-932f-</phone2>
<phoneFax>phoneFax:aa-85ce-</phoneFax>
<email>admin@aardvark.co.uk</email>
<website>http://www.aardvark.co.uk</website>
<notes>Default Notes for Location Named: Aardvark HQ</notes>
<address id="30" version="0" dateCreated="2016-10-05T12:26:57.636+02:00">
<addressName>addressName:a3-9c69-</addressName>
<lineOne>3/1 Mount Mills</lineOne>
<lineTwo>Second Floor</lineTwo>
<lineThree>
</lineThree>
<city>city:9f-87ac-</city>
<postCode>EC1V 3NX</postCode>
<country id="225" version="0">
<iso>GB</iso>
<name>UNITED KINGDOM</name>
<printableName>United Kingdom</printableName>
<iso3>GBR</iso3>
<numCode>826</numCode>
</country>
</address>
<parentCRMEntryType>CLIENT</parentCRMEntryType>
<parentCRMEntryId>1</parentCRMEntryId>
<freeTags/>
</locationAlias>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:56 GMT
{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:26:56.567+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"name":"NEW 0.03916117152751275",
"phone1":"190226-3456",
"phone2":"phone2:7d-932f-",
"phoneFax":"phoneFax:aa-85ce-",
"email":"admin@aardvark.co.uk",
"website":"http://www.aardvark.co.uk",
"notes":"Default Notes for Location Named: Aardvark HQ",
"address":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:26:56.565+0000",
"dateModified":null,
"addressName":"addressName:a3-9c69-",
"lineOne":"3/1 Mount Mills",
"lineTwo":"Second Floor",
"lineThree":"",
"city":"city:9f-87ac-",
"postCode":"EC1V 3NX",
"country":{
"id":225,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GB",
"name":"UNITED KINGDOM",
"printableName":"United Kingdom",
"iso3":"GBR",
"numCode":826
}
},
"primaryContact":null,
"parentCRMEntryType":"CLIENT",
"parentCRMEntryId":1,
"freeTags":[
]
}
Returns page of employee objects.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/employee
| name | description | default |
|---|---|---|
| type | Specifies type of the parent CRM object. | CLIENT |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/employee?type=CLIENT&windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/employee?type=CLIENT&windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:02 GMT
<pagedResult maxResults="19" windowSize="2" currentPage="1">
<cRMEmployee id="29" version="0" dateCreated="2016-10-05T12:27:02.678+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<personalDetails id="64" version="0" dateCreated="2016-10-05T12:27:02.678+02:00">
<firstName>Name</firstName>
<lastName>Surname</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="29" version="0" dateCreated="2016-10-05T12:27:02.680+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</cRMEmployee>
<cRMEmployee id="28" version="0" dateCreated="2016-10-05T12:27:02.110+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<personalDetails id="63" version="0" dateCreated="2016-10-05T12:27:02.110+02:00">
<firstName>Name</firstName>
<lastName>Surname</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="28" version="0" dateCreated="2016-10-05T12:27:02.112+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</cRMEmployee>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:02 GMT
{
"maxResults":19,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.crm.CRMEmployeeTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:27:02.678+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":64,
"version":0,
"dateCreated":"2016-10-05T10:27:02.678+0000",
"dateModified":null,
"titleType":null,
"firstName":"Name",
"middleName":null,
"lastName":"Surname",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:27:02.680+0000",
"dateModified":null,
"partnersName":"UPD Partners Name 0.8920104848493275",
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
},
{
"@class":"com.sohnar.trafficlite.transfer.crm.CRMEmployeeTO",
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:27:02.110+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:27:02.110+0000",
"dateModified":null,
"titleType":null,
"firstName":"Name",
"middleName":null,
"lastName":"Surname",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:27:02.112+0000",
"dateModified":null,
"partnersName":"UPD Partners Name 0.8920104848493275",
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
}
],
"windowSize":2,
"currentPage":1
}
Returns single other object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/employee/{id}
| name | description | default |
|---|---|---|
| id | Employee's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/crm/employee/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/crm/employee/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:53 GMT
<cRMEmployee id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="0" dateCreated="2016-10-05T12:18:35.402+02:00"/>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</cRMEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:53 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":null,
"partnersName":null,
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
}
Updates crm employee with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/employee
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/crm/employee HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<cRMEmployee id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="1" dateCreated="2016-10-05T12:18:35.402+02:00" dateModified="2016-10-05T12:27:00.944+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags />
</cRMEmployee>
POST /TrafficLiteServer/openapi/crm/employee HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"dateModified":null,
"freeTags":[
],
"version":0,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"CLIENT",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"dateModified":null,
"language":null,
"version":0,
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"children":null,
"hobbies":null,
"partnersName":"UPD Partners Name 0.7781107437729132",
"id":1,
"sport":null,
"favDrink":null
},
"ownerAliasId":1,
"personalDetails":{
"titleType":null,
"lastName":"Murdoch",
"faxPhone":null,
"homePhone":null,
"dateModified":null,
"version":0,
"firstName":"Stuart",
"emailAddress":"admin@aardvark.co.uk",
"dateCreated":"2016-10-05T10:18:35.401+0000",
"mobilePhone":null,
"middleName":null,
"workPhone":null,
"id":32
},
"id":1,
"department":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:01 GMT
<cRMEmployee id="1" version="0" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="32" version="0" dateCreated="2016-10-05T12:18:35.401+02:00">
<firstName>Stuart</firstName>
<lastName>Murdoch</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="1" version="2" dateCreated="2016-10-05T12:18:35.402+02:00" dateModified="2016-10-05T12:27:01.550+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags/>
</cRMEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:00 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"dateModified":null,
"titleType":null,
"firstName":"Stuart",
"middleName":null,
"lastName":"Murdoch",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"dateModified":"2016-10-05T10:27:00.944+0000",
"partnersName":"UPD Partners Name 0.7781107437729132",
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":"CLIENT"
}
Adds submitted crm employee and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/crm/employee
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/crm/employee HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<cRMEmployee id="-1" version="-1" dateCreated="2016-10-05T12:18:35.403+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<personalDetails id="-1" version="-1" dateCreated="2016-10-05T12:18:35.401+02:00">
<emailAddress>admin@aardvark.co.uk</emailAddress>
<firstName>Name</firstName>
<lastName>Surname</lastName>
</personalDetails>
<personalProfile id="-1" version="-1" dateCreated="2016-10-05T12:18:35.402+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<crmEntryType>CLIENT</crmEntryType>
<freeTags />
</cRMEmployee>
PUT /TrafficLiteServer/openapi/crm/employee HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"externalCode":null,
"assistant":null,
"jobTitle":null,
"freeTags":[
],
"version":"-1",
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:18:35.403+0000",
"worksForCrmEmployeeId":null,
"crmentryType":"CLIENT",
"personalProfile":{
"birthday":null,
"favRestaurant":null,
"notes":null,
"language":null,
"version":"-1",
"previousCompany":null,
"dateCreated":"2016-10-05T10:18:35.402+0000",
"children":null,
"hobbies":null,
"partnersName":"UPD Partners Name 0.8920104848493275",
"id":"-1",
"sport":null,
"favDrink":null
},
"ownerAliasId":1,
"personalDetails":{
"titleType":null,
"lastName":"Surname",
"firstName":"Name",
"emailAddress":"admin@aardvark.co.uk",
"faxPhone":null,
"dateCreated":"2016-10-05T10:18:35.401+0000",
"mobilePhone":null,
"homePhone":null,
"middleName":null,
"workPhone":null,
"id":"-1",
"version":"-1"
},
"id":"-1",
"department":null
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:02 GMT
<cRMEmployee id="29" version="0" dateCreated="2016-10-05T12:27:02.678+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<personalDetails id="64" version="0" dateCreated="2016-10-05T12:27:02.678+02:00">
<firstName>Name</firstName>
<lastName>Surname</lastName>
<emailAddress>admin@aardvark.co.uk</emailAddress>
</personalDetails>
<personalProfile id="29" version="0" dateCreated="2016-10-05T12:27:02.680+02:00">
<partnersName>UPD Partners Name 0.8920104848493275</partnersName>
</personalProfile>
<ownerAliasId>1</ownerAliasId>
<freeTags/>
</cRMEmployee>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:02 GMT
{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:27:02.110+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"department":null,
"assistant":null,
"jobTitle":null,
"externalCode":null,
"personalDetails":{
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:27:02.110+0000",
"dateModified":null,
"titleType":null,
"firstName":"Name",
"middleName":null,
"lastName":"Surname",
"emailAddress":"admin@aardvark.co.uk",
"workPhone":null,
"mobilePhone":null,
"faxPhone":null,
"homePhone":null
},
"personalProfile":{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:27:02.112+0000",
"dateModified":null,
"partnersName":"UPD Partners Name 0.8920104848493275",
"children":null,
"sport":null,
"hobbies":null,
"favRestaurant":null,
"favDrink":null,
"language":null,
"birthday":null,
"previousCompany":null,
"notes":null
},
"ownerAliasId":1,
"worksForCrmEmployeeId":null,
"freeTags":[
],
"crmentryType":null
}
Returns page of listitem objects.
https://api.sohnar.com/TrafficLiteServer/openapi/listitem/{type}
| name | description | default |
|---|---|---|
| type | ListItem's type. | |
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:05 GMT
<pagedResult maxResults="4" windowSize="5" currentPage="1">
<jobTypeListItem id="1" version="0" dateCreated="2016-10-05T12:18:13.428+02:00">
<description>Digital</description>
<value>Digital</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
<jobTypeListItem id="2" version="0" dateCreated="2016-10-05T12:18:13.430+02:00">
<description>Design for Print</description>
<value>Design for Print</value>
<isDefault>true</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
<jobTypeListItem id="3" version="0" dateCreated="2016-10-05T12:18:13.432+02:00">
<description>SEO</description>
<value>SEO</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
<jobTypeListItem id="4" version="0" dateCreated="2016-10-05T12:18:13.434+02:00">
<description>Brand</description>
<value>Brand</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:05 GMT
{
"maxResults":4,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.428+0000",
"dateModified":null,
"description":"Digital",
"value":"Digital",
"isDefault":false,
"colorCode":-16776961
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:13.430+0000",
"dateModified":null,
"description":"Design for Print",
"value":"Design for Print",
"isDefault":true,
"colorCode":-16776961
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:13.432+0000",
"dateModified":null,
"description":"SEO",
"value":"SEO",
"isDefault":false,
"colorCode":-16776961
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:13.434+0000",
"dateModified":null,
"description":"Brand",
"value":"Brand",
"isDefault":false,
"colorCode":-16776961
}
],
"windowSize":5,
"currentPage":1
}
Returns single listitem object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/listitem/{type}/{id}
| name | description | default |
|---|---|---|
| type | ListItem's type. | |
| id | ListItem's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:05 GMT
<jobTypeListItem id="1" version="0" dateCreated="2016-10-05T12:18:13.428+02:00">
<description>Digital</description>
<value>Digital</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:05 GMT
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.428+0000",
"dateModified":null,
"description":"Digital",
"value":"Digital",
"isDefault":false,
"colorCode":-16776961
}
Updates listitem with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/listitem/{type}
| name | description | default |
|---|---|---|
| type | ListItem's type. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTypeListItem id="1" version="1" dateCreated="2016-10-05T12:18:13.428+02:00" dateModified="2016-10-05T12:27:07.489+02:00">
<value>Digital</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
<description>UPD Description 0.9694816768780872</description>
</jobTypeListItem>
POST /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"isDefault":false,
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"dateCreated":"2016-10-05T10:18:13.428+0000",
"description":"UPD Description 0.23382397128774923",
"dateModified":null,
"colorCode":-16776961,
"id":1,
"version":0,
"value":"Digital"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:06 GMT
<jobTypeListItem id="1" version="2" dateCreated="2016-10-05T12:18:13.428+02:00" dateModified="2016-10-05T12:27:07.834+02:00">
<description>UPD Description 0.9694816768780872</description>
<value>Digital</value>
<isDefault>false</isDefault>
<colorCode>-16776961</colorCode>
</jobTypeListItem>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:06 GMT
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.428+0000",
"dateModified":"2016-10-05T10:27:07.489+0000",
"description":"UPD Description 0.23382397128774923",
"value":"Digital",
"isDefault":false,
"colorCode":-16776961
}
Adds submitted listitem and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/listitem/{type}
| name | description | default |
|---|---|---|
| type | ListItem's type. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobTypeListItem id="-1" version="-1" dateCreated="2016-10-05T12:18:13.428+02:00">
<isDefault>false</isDefault>
<value>VALUE 0.</value>
<description>NEW TAX Type Description 0.27307900190021195</description>
<colorCode>111111</colorCode>
</jobTypeListItem>
PUT /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"isDefault":false,
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"dateCreated":"2016-10-05T10:18:13.428+0000",
"description":"NEW TAX Type Description 0.4634721228797063",
"colorCode":"111111",
"id":"-1",
"version":"-1",
"value":"VALUE 0."
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:06 GMT
<jobTypeListItem id="14" version="0" dateCreated="2016-10-05T12:27:07.023+02:00">
<description>NEW TAX Type Description 0.27307900190021195</description>
<value>VALUE 0.</value>
<isDefault>false</isDefault>
<colorCode>111111</colorCode>
</jobTypeListItem>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:05 GMT
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.JobTypeListItemTO",
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:27:06.615+0000",
"dateModified":null,
"description":"NEW TAX Type Description 0.4634721228797063",
"value":"VALUE 0.",
"isDefault":false,
"colorCode":111111
}
Removes listitem object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/listitem/{type}/{id}
| name | description | default |
|---|---|---|
| type | ListItem's type. | |
| id | ListItem's id. |
DELETE /TrafficLiteServer/openapi/listitem/JOB_TYPE_LIST/14 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:06 GMT
Returns page of lightweight tag objects.
https://api.sohnar.com/TrafficLiteServer/openapi/tag
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:44 GMT
<pagedResult maxResults="4" windowSize="5" currentPage="1">
<freeTag id="4" version="0" dateCreated="2016-10-05T12:18:14.803+02:00">
<name>simple</name>
</freeTag>
<freeTag id="3" version="0" dateCreated="2016-10-05T12:18:14.792+02:00">
<name>billed</name>
</freeTag>
<freeTag id="2" version="0" dateCreated="2016-10-05T12:18:14.781+02:00">
<name>draft</name>
</freeTag>
<freeTag id="1" version="2" dateCreated="2016-10-05T12:18:14.770+02:00" dateModified="2016-10-05T12:27:43.848+02:00">
<name>TAG 0.5686961574096585</name>
</freeTag>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:43 GMT
{
"maxResults":4,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.freetag.FreeTagTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:14.803+0000",
"dateModified":null,
"name":"simple",
"data":null
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.freetag.FreeTagTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:14.792+0000",
"dateModified":null,
"name":"billed",
"data":null
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.freetag.FreeTagTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:14.781+0000",
"dateModified":null,
"name":"draft",
"data":null
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.freetag.FreeTagTO",
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:14.770+0000",
"dateModified":"2016-10-05T10:27:43.848+0000",
"name":"TAG 0.5686961574096585",
"data":null
}
],
"windowSize":5,
"currentPage":1
}
Returns single tag object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/tag/{id}
| name | description | default |
|---|---|---|
| id | Tag's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/tag/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/tag/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:43 GMT
<freeTag id="1" version="2" dateCreated="2016-10-05T12:18:14.770+02:00" dateModified="2016-10-05T12:27:43.848+02:00">
<name>TAG 0.5686961574096585</name>
</freeTag>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:43 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:14.770+0000",
"dateModified":"2016-10-05T10:27:43.848+0000",
"name":"TAG 0.5686961574096585",
"data":null
}
Updates tag with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/tag
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<freeTag id="1" version="1" dateCreated="2016-10-05T12:18:14.770+02:00" dateModified="2016-10-05T12:27:43.496+02:00">
<name>TAG 0.5686961574096585</name>
</freeTag>
POST /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:14.770+0000",
"data":null,
"name":"TAG 0.23556141647778384",
"dateModified":null,
"id":1,
"version":0
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:43 GMT
<freeTag id="1" version="2" dateCreated="2016-10-05T12:18:14.770+02:00" dateModified="2016-10-05T12:27:43.848+02:00">
<name>TAG 0.5686961574096585</name>
</freeTag>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:42 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:14.770+0000",
"dateModified":"2016-10-05T10:27:43.496+0000",
"name":"TAG 0.23556141647778384",
"data":null
}
Adds submitted tag and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/tag
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<freeTag id="-1" version="-1" dateCreated="2016-10-05T12:18:14.770+02:00">
<name>todo</name>
</freeTag>
PUT /TrafficLiteServer/openapi/tag HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"dateCreated":"2016-10-05T10:18:14.770+0000",
"data":null,
"name":"todo",
"id":"-1",
"version":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:44 GMT
<freeTag id="6" version="0" dateCreated="2016-10-05T12:27:45.442+02:00">
<name>todo</name>
</freeTag>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:44 GMT
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:27:45.092+0000",
"dateModified":null,
"name":"todo",
"data":null
}
Deletes tag object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/tag/{id}
| name | description | default |
|---|---|---|
| id | Tag's id. |
DELETE /TrafficLiteServer/openapi/tag/6 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:44 GMT
Returns page of lightweight taxtype objects.
https://api.sohnar.com/TrafficLiteServer/openapi/taxtype
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:04 GMT
<pagedResult maxResults="2" windowSize="5" currentPage="1">
<taxType id="1" version="2" dateCreated="2016-10-05T12:18:13.370+02:00" dateModified="2016-10-05T12:27:05.094+02:00">
<name>VAT_0</name>
<description>UPD TaxType Description 0.6996416143680172</description>
<rate>0.0000</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
</taxType>
<taxType id="2" version="0" dateCreated="2016-10-05T12:18:13.372+02:00">
<name>VAT_20</name>
<description>Default VAT Tax rate for the UK</description>
<rate>0.2000</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T1</externalCode>
</taxType>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:04 GMT
{
"maxResults":2,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.financial.TaxTypeTO",
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:18:13.370+0000",
"dateModified":"2016-10-05T10:27:05.094+0000",
"name":"VAT_0",
"description":"UPD TaxType Description 0.6996416143680172",
"rate":0.0000,
"taxRoundingMode":"HALF_EVEN",
"externalCode":"T0"
},
{
"@class":"com.sohnar.trafficlite.transfer.financial.TaxTypeTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:13.372+0000",
"dateModified":null,
"name":"VAT_20",
"description":"Default VAT Tax rate for the UK",
"rate":0.2000,
"taxRoundingMode":"HALF_EVEN",
"externalCode":"T1"
}
],
"windowSize":5,
"currentPage":1
}
Returns single taxtype object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/taxtype/{id}
| name | description | default |
|---|---|---|
| id | TaxType's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/taxtype/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/taxtype/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:03 GMT
<taxType id="1" version="0" dateCreated="2016-10-05T12:18:13.370+02:00">
<name>VAT_0</name>
<description>Nill VAT Tax rate for the UK</description>
<rate>0.0000</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
</taxType>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:03 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.370+0000",
"dateModified":null,
"name":"VAT_0",
"description":"Nill VAT Tax rate for the UK",
"rate":0.0000,
"taxRoundingMode":"HALF_EVEN",
"externalCode":"T0"
}
Updates taxtype with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/taxtype
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<taxType id="1" version="1" dateCreated="2016-10-05T12:18:13.370+02:00" dateModified="2016-10-05T12:27:04.722+02:00">
<name>VAT_0</name>
<rate>0.0000</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
<description>UPD TaxType Description 0.6996416143680172</description>
</taxType>
POST /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"taxRoundingMode":"HALF_EVEN",
"dateCreated":"2016-10-05T10:18:13.370+0000",
"externalCode":"T0",
"rate":0,
"name":"VAT_0",
"description":"UPD TaxType Description 0.5392374543590309",
"dateModified":null,
"id":1,
"version":0
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:04 GMT
<taxType id="1" version="2" dateCreated="2016-10-05T12:18:13.370+02:00" dateModified="2016-10-05T12:27:05.094+02:00">
<name>VAT_0</name>
<description>UPD TaxType Description 0.6996416143680172</description>
<rate>0.0000</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
</taxType>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:04 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:13.370+0000",
"dateModified":"2016-10-05T10:27:04.722+0000",
"name":"VAT_0",
"description":"UPD TaxType Description 0.5392374543590309",
"rate":0,
"taxRoundingMode":"HALF_EVEN",
"externalCode":"T0"
}
Adds submitted taxtype and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/taxtype
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<taxType id="-1" version="-1" dateCreated="2016-10-05T12:18:13.370+02:00">
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
<name>VAT 0.98</name>
<description>NEW TAX Type Description 0.559888854880492</description>
<rate>17.5</rate>
</taxType>
PUT /TrafficLiteServer/openapi/taxtype HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"taxRoundingMode":"HALF_EVEN",
"dateCreated":"2016-10-05T10:18:13.370+0000",
"externalCode":"T0",
"rate":"17.5",
"name":"VAT 0.18",
"description":"NEW TAX Type Description 0.6195861380637011",
"id":"-1",
"version":"-1"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:03 GMT
<taxType id="8" version="0" dateCreated="2016-10-05T12:27:03.901+02:00">
<name>VAT 0.98</name>
<description>NEW TAX Type Description 0.559888854880492</description>
<rate>17.5</rate>
<taxRoundingMode>HALF_EVEN</taxRoundingMode>
<externalCode>T0</externalCode>
</taxType>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:03 GMT
{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:27:03.514+0000",
"dateModified":null,
"name":"VAT 0.18",
"description":"NEW TAX Type Description 0.6195861380637011",
"rate":17.5,
"taxRoundingMode":"HALF_EVEN",
"externalCode":"T0"
}
Deletes taxtype object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/taxtype/{id}
| name | description | default |
|---|---|---|
| id | TaxType's id. |
DELETE /TrafficLiteServer/openapi/taxtype/8 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:03 GMT
Returns page of country objects.
https://api.sohnar.com/TrafficLiteServer/openapi/application/country
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/application/country HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/application/country HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:18 GMT
<pagedResult maxResults="242" windowSize="5" currentPage="1">
<country id="242" version="0">
<iso>GG</iso>
<name>GUERNSEY</name>
<printableName>Guernsey</printableName>
<iso3>GGY</iso3>
<numCode>831</numCode>
</country>
<country id="241" version="0">
<iso>JE</iso>
<name>JERSEY</name>
<printableName>Jersey</printableName>
<iso3>JEY</iso3>
<numCode>832</numCode>
</country>
<country id="240" version="0">
<iso>IM</iso>
<name>ISLE OF MAN</name>
<printableName>Isle of Man</printableName>
<iso3>IMN</iso3>
<numCode>833</numCode>
</country>
<country id="239" version="0">
<iso>ZW</iso>
<name>ZIMBABWE</name>
<printableName>Zimbabwe</printableName>
<iso3>ZWE</iso3>
<numCode>716</numCode>
</country>
<country id="238" version="0">
<iso>ZM</iso>
<name>ZAMBIA</name>
<printableName>Zambia</printableName>
<iso3>ZMB</iso3>
<numCode>894</numCode>
</country>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:18 GMT
{
"maxResults":242,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CountryTO",
"id":242,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"GG",
"name":"GUERNSEY",
"printableName":"Guernsey",
"iso3":"GGY",
"numCode":831
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CountryTO",
"id":241,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"JE",
"name":"JERSEY",
"printableName":"Jersey",
"iso3":"JEY",
"numCode":832
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CountryTO",
"id":240,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"IM",
"name":"ISLE OF MAN",
"printableName":"Isle of Man",
"iso3":"IMN",
"numCode":833
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CountryTO",
"id":239,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"ZW",
"name":"ZIMBABWE",
"printableName":"Zimbabwe",
"iso3":"ZWE",
"numCode":716
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CountryTO",
"id":238,
"version":0,
"dateCreated":null,
"dateModified":null,
"iso":"ZM",
"name":"ZAMBIA",
"printableName":"Zambia",
"iso3":"ZMB",
"numCode":894
}
],
"windowSize":5,
"currentPage":1
}
Return the template Application Permission Groups (and Permissions) used by the application
https://api.sohnar.com/TrafficLiteServer/openapi/application/permissiongroup
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/application/permissiongroup HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/application/permissiongroup HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:16 GMT
<set>
<permissionGroup id="15" version="0" dateCreated="2016-10-05T12:18:11.304+02:00">
<name>Timesheet entries</name>
<groupedPermissions>
<groupedPermission id="157" version="0" dateCreated="2016-10-05T12:18:11.310+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SIGN_OFF_JOB_OWNER</customAction>
<name>Sign Off Time that I am the Job Owner Of</name>
<description>Allows a user to alter the sign off status of any timesheet entries where they are the owner of the job the time was logged against. </description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="156" version="0" dateCreated="2016-10-05T12:18:11.308+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_READY_FOR_EXPORT_ALL</customAction>
<name>Mark any Time Entry as Ready For Export</name>
<description>Allows a user to alter the Ready for Export status of any timesheet entries</description>
<itemOrder>12</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="169" version="0" dateCreated="2016-10-05T12:18:11.328+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SUBMIT_JOB_OWNER</customAction>
<name>Alter Submitted Status of Time that I am the Job Owner Of</name>
<description>Allows a user to alter the submitted status of any timesheet entries where they are the owner of the job the time was logged against. </description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="163" version="0" dateCreated="2016-10-05T12:18:11.319+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_REJECT_ALL</customAction>
<name>Alter Rejected Status of Any Time Entry</name>
<description>Allows a user to alter the rejected status of any timesheet entries. </description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="160" version="0" dateCreated="2016-10-05T12:18:11.315+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_TIME_ENTRY_ADMINISTER</customAction>
<name>Administer Timesheet records</name>
<description>Allows a user to Adminster Timesheets entries by either moving them from one Job, Job Task or Employee to Another or creating on behalf of another user. </description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="155" version="0" dateCreated="2016-10-05T12:18:11.307+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_CAN_SIGN_OFF_REJECTED</customAction>
<name>Sign Off Rejected timesheet entries</name>
<description>Allows the user to sign off timesheet entries that have been rejected.</description>
<itemOrder>14</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="159" version="0" dateCreated="2016-10-05T12:18:11.314+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SIGN_OFF_OWN_SUBMITTER</customAction>
<name>Sign Off timesheet entries You Have Submitted</name>
<description>Allows a user to alter the sign off status of any timesheet entries where they are the Submitter. NOTE: Even if you have Sign Of Any permissions, </description>
<itemOrder>10</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="165" version="0" dateCreated="2016-10-05T12:18:11.322+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_REJECT_OWN_SUBMITTER</customAction>
<name>Alter Rejected Status of Time where you are the Submitter</name>
<description>Allows a user to alter the rejected status of any timesheet entries where they are the Submitter. </description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="164" version="0" dateCreated="2016-10-05T12:18:11.321+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_DESELECT_SIGN_OFF</customAction>
<name>De-Select Signed Off timesheet entries you have Sign Off Access To</name>
<description>Allows a user to deselect the sign off flag from time records they may have previously signed off.</description>
<itemOrder>11</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="167" version="0" dateCreated="2016-10-05T12:18:11.325+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SIGN_OFF_ALL</customAction>
<name>Sign Off Any Time Entry</name>
<description>Allows a user to alter the sign off status of any timesheet entries. </description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="158" version="0" dateCreated="2016-10-05T12:18:11.312+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_REJECT_JOB_OWNER</customAction>
<name>Alter Rejected Status of Time that I am the Job Owner Of</name>
<description>Allows a user to alter the rejected status of any timesheet entries where they are the owner of the job the time was logged against. </description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="168" version="0" dateCreated="2016-10-05T12:18:11.326+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SUBMIT_ALL</customAction>
<name>Alter Submitted Status of Any Time Entry</name>
<description>Allows a user to alter the submitted status of any timesheet entries. </description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="161" version="0" dateCreated="2016-10-05T12:18:11.317+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_DESELECT_REJECT</customAction>
<name>De-Select Rejected Status of timesheet entries you have Reject Status Access To</name>
<description>Allows a user to deselect the rejected flag from time records they may have previously rejected.</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="162" version="0" dateCreated="2016-10-05T12:18:11.318+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_TIME_ENTRY_DELETE</customAction>
<name>Delete Timesheet Entries</name>
<description>Allow users to Delete Timesheet Entries</description>
<itemOrder>13</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="166" version="0" dateCreated="2016-10-05T12:18:11.323+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_DESELECT_SUBMIT</customAction>
<name>De-Select Submitted Status of timesheet entries you have Submitted Status Access To</name>
<description>Allows a user to deselect the submitted flag from time records they may have previously submitted.</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="14" version="0" dateCreated="2016-10-05T12:18:11.285+02:00">
<name>Platform Admin</name>
<groupedPermissions>
<groupedPermission id="152" version="0" dateCreated="2016-10-05T12:18:11.292+02:00">
<destination>Navigation_PLATFORM_ADMIN_VIEW_COMPANY</destination>
<permissionAction>ACCESS</permissionAction>
<name>View Company</name>
<description>Can this user access the View Company tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>true</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="151" version="0" dateCreated="2016-10-05T12:18:11.290+02:00">
<destination>Navigation_PLATFORM_ADMIN_COMPANY_LIST</destination>
<permissionAction>ACCESS</permissionAction>
<name>Company List</name>
<description>Can this user access the Company List tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>true</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="153" version="0" dateCreated="2016-10-05T12:18:11.294+02:00">
<destination>Navigation_PLATFORM_ADMIN_SERVICE_MESSAGES</destination>
<permissionAction>ACCESS</permissionAction>
<name>Service Messages</name>
<description>Can this user access the Service Messages tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>true</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="150" version="0" dateCreated="2016-10-05T12:18:11.286+02:00">
<destination>Navigation_PLATFORM_ADMIN_CREATE_DEMO</destination>
<permissionAction>ACCESS</permissionAction>
<name>Create Demo Company</name>
<description>Can this user access the Create Demo Company tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>true</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="154" version="0" dateCreated="2016-10-05T12:18:11.295+02:00">
<destination>Navigation_PLATFORM_ADMIN_SOHNAR_STAFF</destination>
<permissionAction>ACCESS</permissionAction>
<name>Sohnar Staff</name>
<description>Can this user access the Sohnar Staff tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>true</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="13" version="0" dateCreated="2016-10-05T12:18:11.260+02:00">
<name>Integrations</name>
<groupedPermissions>
<groupedPermission id="149" version="0" dateCreated="2016-10-05T12:18:11.275+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CRM_CONTACTS_SHEET_EXPORT_MAILCHIMP</customAction>
<name>Export To MailChimp From Contacts Sheet</name>
<description>Allow users to Export the Contacts Sheet to MailChimp</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="142" version="0" dateCreated="2016-10-05T12:18:11.263+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_EXPORT_TO_UPDATE_FROM_MACONOMY</customAction>
<name>Allow Exporting To/Updating From Maconomy Expenses</name>
<description>Allow a User To Export Expenses to Maconomy and also Update Previously Exported Expenses with Maconomy Information.</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="146" version="0" dateCreated="2016-10-05T12:18:11.270+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>MACONOMY_ALLOW_LINKED_EMPLOYEE_UPDATE</customAction>
<name>Modify Linked Employee Details</name>
<description>Allow users to Modify all Employee details when Maconomy employee sync is enabled</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="145" version="0" dateCreated="2016-10-05T12:18:11.268+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_TASK_ALLOW_MACONOMY_TIMESHEET_EXPORT</customAction>
<name>Export time to external system.</name>
<description>Allow user to export timesheets to external system (Maconomy)</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="143" version="0" dateCreated="2016-10-05T12:18:11.265+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_MACONOMY_ALLOW_UNASSIGNED_STATUS_CHANGE</customAction>
<name>Maconomy - Status change for unassigned job.</name>
<description>Maconomy integration - Allow user to change System status to values different than DRAFT without being assigned to a Maconomy Job</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="147" version="0" dateCreated="2016-10-05T12:18:11.272+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_SEND_BUDGET_TO_MACONOMY</customAction>
<name>Send Budget to Maconomy.</name>
<description>Allows a user to send a job from trafficLIVE to Maconomy creating a budget, or a budget revision.</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="144" version="0" dateCreated="2016-10-05T12:18:11.267+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>PURCHASING_MACONOMY_ALLOW_UPDATE_OF_EXPORTED</customAction>
<name>Maconomy - Allow changes to exported PO.</name>
<description>Maconomy integration - Allow user to change exported PO</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="148" version="0" dateCreated="2016-10-05T12:18:11.274+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>MACONOMY_ALLOW_MODIFY_JOB_WAITING_LIST</customAction>
<name>Modify a Jon in the waiting list</name>
<description>Allow users to Modify an unlinked Job on the Waiting list</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="12" version="0" dateCreated="2016-10-05T12:18:11.219+02:00">
<name>Correspondence</name>
<groupedPermissions>
<groupedPermission id="139" version="0" dateCreated="2016-10-05T12:18:11.222+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CORRESPONDENCE_REMOVE_ATTACHMENT</customAction>
<name>Remove Attachment from Correspondence</name>
<description>This permission allows a user to remove the link from the Document Store file to the Correspondence Record. NOTE: The File will still exist in the document store after the link has been removed. </description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="140" version="0" dateCreated="2016-10-05T12:18:11.224+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CORRESPONDENCE_ADD_ATTACHMENT</customAction>
<name>Add Attachments to A Correspondence</name>
<description>This permission allows a user to upload a file to Document Store and Link the File to a Correspondence Record. This permission requires Document Store to be configured for the Company.</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="141" version="0" dateCreated="2016-10-05T12:18:11.228+02:00">
<destination>Navigation_CONTACTS_VIEW</destination>
<permissionAction>ACCESS</permissionAction>
<name>View Correspondence</name>
<description>Can this user access the View Correspondence tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="11" version="0" dateCreated="2016-10-05T12:18:11.203+02:00">
<name>Reporting</name>
<groupedPermissions>
<groupedPermission id="138" version="0" dateCreated="2016-10-05T12:18:11.213+02:00">
<destination>Navigation_ReportMaker</destination>
<permissionAction>ACCESS</permissionAction>
<name>ReportMaker</name>
<description>Can this user access the ReportMaker tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="137" version="0" dateCreated="2016-10-05T12:18:11.211+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ACCESS_QUOTE_REPORT</customAction>
<name>Access Quote Report</name>
<description>Allow users to access the Quote Report</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="135" version="0" dateCreated="2016-10-05T12:18:11.207+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ACCESS_JOB_TIME_MONEY_REPORT</customAction>
<name>Access Job Time and Money Report</name>
<description>Allow users to access the Job Time and Money Report</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="136" version="0" dateCreated="2016-10-05T12:18:11.209+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ACCESS_EMPLOYEE_UTILISATION_REPORT</customAction>
<name>Access Employee Utilisation Report</name>
<description>Allow users to access the Employee Utilisation Report</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="133" version="0" dateCreated="2016-10-05T12:18:11.205+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ACCESS_TIME_SCHEDULED_WORK_REPORT</customAction>
<name>Access Time / Scheduled Work With Financials Report</name>
<description>Allow users to access the Time / Scheduled Work With Financials Report</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="134" version="0" dateCreated="2016-10-05T12:18:11.206+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DELETE_SAVED_REPORTS</customAction>
<name>Delete Saved Reports</name>
<description>Allow users to delete saved Reports</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="10" version="0" dateCreated="2016-10-05T12:18:11.193+02:00">
<name>Home</name>
<groupedPermissions>
<groupedPermission id="132" version="0" dateCreated="2016-10-05T12:18:11.195+02:00">
<destination>Navigation_HOME</destination>
<permissionAction>ACCESS</permissionAction>
<name>Home Screen</name>
<description>Can this user access the Home Screen tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="9" version="0" dateCreated="2016-10-05T12:18:11.165+02:00">
<name>Client Admin</name>
<groupedPermissions>
<groupedPermission id="130" version="0" dateCreated="2016-10-05T12:18:11.183+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_PERMISSIONS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Permissions</name>
<description>Can this user access the Admin Permissions tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="126" version="0" dateCreated="2016-10-05T12:18:11.174+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TC_LOCATION_DEPT_STAFF_MODIFY</customAction>
<name>Modify Company Data</name>
<description>Allow users Delete/Edit Data in the Company Management Area.</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="127" version="0" dateCreated="2016-10-05T12:18:11.178+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_LISTS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Manage Lists</name>
<description>Can this user access the Admin Manage Lists tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="123" version="0" dateCreated="2016-10-05T12:18:11.168+02:00">
<destination>Navigation_CLIENT_ADMIN_STAFF_IMPORT</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Staff Import</name>
<description>Can this user access the Admin Staff Import tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="125" version="0" dateCreated="2016-10-05T12:18:11.171+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_LOCKED_TIME</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Locked Time</name>
<description>Can this user access the Admin Locked Time tab?</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="128" version="0" dateCreated="2016-10-05T12:18:11.180+02:00">
<destination>Navigation_CLIENT_ADMIN_EMPLOYEE_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Employee Search</name>
<description>Can this user access the Employee Search tab?</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="124" version="0" dateCreated="2016-10-05T12:18:11.170+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_COMPANY_DETAILS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Company Details</name>
<description>Can this user access the Admin Company Details tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="122" version="0" dateCreated="2016-10-05T12:18:11.166+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_TAGS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Tags</name>
<description>Can this user access the Admin Tags tab?</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="131" version="0" dateCreated="2016-10-05T12:18:11.185+02:00">
<destination>Navigation_CLIENT_ADMIN_OUTPUT_TEMPLATES</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Output Templates</name>
<description>Can this user access the Admin Output Templates tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="129" version="0" dateCreated="2016-10-05T12:18:11.181+02:00">
<destination>Navigation_CLIENT_ADMIN_MANAGE_CHARGE_BANDS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Admin Charge Bands</name>
<description>Can this user access the Admin Charge Bands tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="8" version="0" dateCreated="2016-10-05T12:18:11.148+02:00">
<name>Purchases</name>
<groupedPermissions>
<groupedPermission id="120" version="0" dateCreated="2016-10-05T12:18:11.152+02:00">
<destination>Navigation_PURCHASING_TENDER</destination>
<permissionAction>ACCESS</permissionAction>
<name>Tenders</name>
<description>Can this user access the Tenders tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="121" version="0" dateCreated="2016-10-05T12:18:11.154+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>PURCHASING_MODIFY_PO_NUMBER</customAction>
<name>Modify a PO Number.</name>
<description>Allow users to modify a PO Number</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="118" version="0" dateCreated="2016-10-05T12:18:11.149+02:00">
<destination>Navigation_PURCHASING_PO</destination>
<permissionAction>ACCESS</permissionAction>
<name>Purchase Orders</name>
<description>Can this user access the Purchase Orders tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="119" version="0" dateCreated="2016-10-05T12:18:11.150+02:00">
<destination>Navigation_PURCHASES</destination>
<permissionAction>ACCESS</permissionAction>
<name>Purchases</name>
<description>Can this user access the Purchases tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="7" version="0" dateCreated="2016-10-05T12:18:11.074+02:00">
<name>Manage Agency</name>
<groupedPermissions>
<groupedPermission id="116" version="0" dateCreated="2016-10-05T12:18:11.136+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_EDIT</customAction>
<name>Edit Expense Sheets</name>
<description>Allow users To Edit Expense Sheets</description>
<itemOrder>18</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="96" version="0" dateCreated="2016-10-05T12:18:11.104+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_PAID</customAction>
<name>Edit Expense Sheets in PAID</name>
<description>Allow users To Edit Expense Sheets with a system status of PAID. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>21</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="86" version="0" dateCreated="2016-10-05T12:18:11.079+02:00">
<destination>Navigation_JOB_PROGRESS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Job Progress</name>
<description>Can this user access the Job Progress tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="95" version="0" dateCreated="2016-10-05T12:18:11.102+02:00">
<destination>Navigation_STAFF_SCHEDULE</destination>
<permissionAction>ACCESS</permissionAction>
<name>Staff Scheduler</name>
<description>Can this user access the Staff Scheduler tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="117" version="0" dateCreated="2016-10-05T12:18:11.137+02:00">
<destination>Navigation_EXPENSE_SHEETS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Expense Sheets</name>
<description>Can this user access the Expense Sheets tab?</description>
<itemOrder>12</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="85" version="0" dateCreated="2016-10-05T12:18:11.077+02:00">
<destination>Navigation_RESOURCE_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Resource Search</name>
<description>Can this user access the Resource Search tab?</description>
<itemOrder>32</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="91" version="0" dateCreated="2016-10-05T12:18:11.093+02:00">
<destination>Navigation_EXPENSES_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Expenses Search</name>
<description>Can this user access the Expenses Search tab?</description>
<itemOrder>29</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="107" version="0" dateCreated="2016-10-05T12:18:11.122+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_DENIED</customAction>
<name>Allow transitions to a System Status of DENIED</name>
<description>Allow users To Change the Expense Sheet System Status to DENIED. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>22</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="105" version="0" dateCreated="2016-10-05T12:18:11.119+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_CREATE_JOB_EXPENSE_LINE</customAction>
<name>Allow Create New Expense from the Expense Sheet</name>
<description>Allow a User To Create a New Expense Line on a Job from the Expense Sheet Area.</description>
<itemOrder>28</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="103" version="0" dateCreated="2016-10-05T12:18:11.116+02:00">
<destination>Navigation_DOCUMENT_STORE</destination>
<permissionAction>ACCESS</permissionAction>
<name>Document Store</name>
<description>Can this user access the Document Store tab?</description>
<itemOrder>11</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="88" version="0" dateCreated="2016-10-05T12:18:11.084+02:00">
<destination>Navigation_STUDIO_OVERVIEW</destination>
<permissionAction>ACCESS</permissionAction>
<name>Studio Overview</name>
<description>Can this user access the Studio Overview tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="112" version="0" dateCreated="2016-10-05T12:18:11.130+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_PAID_WHEN_SUBMITTER_IS_CURRENT_USER</customAction>
<name>Allow User Submitted transitions to a System Status of PAID</name>
<description>Allow a User To Change the Expense Sheets status of PAID if they are the Submitter. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>27</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="108" version="0" dateCreated="2016-10-05T12:18:11.124+02:00">
<destination>Navigation_WHATS_HOT</destination>
<permissionAction>ACCESS</permissionAction>
<name>Task Progress</name>
<description>Can this user access the Task Progress tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="100" version="0" dateCreated="2016-10-05T12:18:11.111+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_PAID</customAction>
<name>Allow transitions to a System Status of PAID</name>
<description>Allow users To Change the Expense Sheet System Status to PAID. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>24</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="109" version="0" dateCreated="2016-10-05T12:18:11.125+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>STAFF_SCHEDULE_MODIFY</customAction>
<name>Modify the Staff Schedule</name>
<description>Allow users Modify Data in the Staff Schedule View</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="98" version="0" dateCreated="2016-10-05T12:18:11.108+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_SUBMITTED</customAction>
<name>Edit Expense Sheets in SUBMITTED</name>
<description>Allow users To Edit Expense Sheets with a system status of SUBMITTED. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>19</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="114" version="0" dateCreated="2016-10-05T12:18:11.133+02:00">
<destination>Navigation_CORRESPONDENCE_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Correspondence Search</name>
<description>Can this user access the Correspondence Search tab?</description>
<itemOrder>13</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="115" version="0" dateCreated="2016-10-05T12:18:11.134+02:00">
<destination>Navigation_STAFF_AVAILABILITY</destination>
<permissionAction>ACCESS</permissionAction>
<name>Staff Overview</name>
<description>Can this user access the Staff Overview tab?</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="102" version="0" dateCreated="2016-10-05T12:18:11.114+02:00">
<destination>Navigation_VIEW_TIMESHEETS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Weekly Timesheets</name>
<description>Can this user access the Weekly Timesheets tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="99" version="0" dateCreated="2016-10-05T12:18:11.109+02:00">
<destination>Navigation_TIMESHEETS_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Timesheet Search</name>
<description>Can this user access the Timesheet Search tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="111" version="0" dateCreated="2016-10-05T12:18:11.128+02:00">
<destination>Navigation_TIMESHEETS_AUDIT_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Timesheet Audit Search</name>
<description>Can this user access the Timesheet Audit Search tab?</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="92" version="0" dateCreated="2016-10-05T12:18:11.095+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_APPROVED</customAction>
<name>Edit Expense Sheets in APPROVED</name>
<description>Allow users To Edit Expense Sheets with a system status of APPROVED. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>20</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="94" version="0" dateCreated="2016-10-05T12:18:11.100+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_APPROVED</customAction>
<name>Allow transitions to a System Status of APPROVED</name>
<description>Allow users To Change the Expense Sheet System Status to APPROVED. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>23</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="104" version="0" dateCreated="2016-10-05T12:18:11.118+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>RESOURCE_MANAGER_SEE_DRAFT_JOBS</customAction>
<name>Can see draft jobs</name>
<description>Allow the user to see draft jobs within the Resource Manager view</description>
<itemOrder>14</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="89" version="0" dateCreated="2016-10-05T12:18:11.087+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_DELETE</customAction>
<name>Can delete Expense Sheets</name>
<description>Can this user delete expense sheets?</description>
<itemOrder>17</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="110" version="0" dateCreated="2016-10-05T12:18:11.127+02:00">
<destination>Navigation_WORK_PLANNER</destination>
<permissionAction>ACCESS</permissionAction>
<name>Work Planner</name>
<description>Can this user access the Work Planner tab?</description>
<itemOrder>31</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="113" version="0" dateCreated="2016-10-05T12:18:11.132+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>STAFF_SCHEDULE_FORCE_PENDING_MODE_OFF</customAction>
<name>Disable Force Pending Mode</name>
<description>When this permission is enabled, Force Pending Mode is OFF. When this permission is disabled, Force Pending Mode is ON. With Force Pending Mode ON, modified scheduled work is forced into a Pending State.</description>
<itemOrder>10</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="93" version="0" dateCreated="2016-10-05T12:18:11.099+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>RESOURCE_MANAGER_CAN_EDIT_VALUES</customAction>
<name>Can edit values in work planner</name>
<description>Allows user to create, edit or delete allocations in work planner.</description>
<itemOrder>16</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="97" version="0" dateCreated="2016-10-05T12:18:11.106+02:00">
<destination>Navigation_STAFF_ALLOCATION_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Staff Allocation Search</name>
<description>Can this user access the Staff Allocation Search tab?</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="87" version="0" dateCreated="2016-10-05T12:18:11.081+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_APPROVED_WHEN_SUBMITTER_IS_CURRENT_USER</customAction>
<name>Allow User Submitted transitions to a System Status of APPROVED</name>
<description>Allow a User To Change the Expense Sheets status of APPROVED if they are the Submitter. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>26</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="106" version="0" dateCreated="2016-10-05T12:18:11.121+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>RESOURCE_MANAGER_EDIT_DRAFT_JOBS</customAction>
<name>Can edit draft jobs</name>
<description>Allow the user to create, update or delete allocations which are against a draft job within the Resource Manager view</description>
<itemOrder>15</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="90" version="0" dateCreated="2016-10-05T12:18:11.091+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_DENIED_WHEN_SUBMITTER_IS_CURRENT_USER</customAction>
<name>Allow User Submitted transitions to a System Status of DENIED</name>
<description>Allow a User To Change the Expense Sheets status of DENIED if they are the Submitter. This permission will work in conjuntion with the generic edit permission.</description>
<itemOrder>25</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="101" version="0" dateCreated="2016-10-05T12:18:11.112+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIMESHEET_SEARCH_EXPORTED_FLAG_MODIFY</customAction>
<name>Modify the exported flag in Timesheet Search</name>
<description>Allow users to modify the Exported Flag on the Timesheet Search View.</description>
<itemOrder>30</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="6" version="0" dateCreated="2016-10-05T12:18:11.027+02:00">
<name>Quotes</name>
<groupedPermissions>
<groupedPermission id="82" version="0" dateCreated="2016-10-05T12:18:11.055+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_TEMPLATE_MODIFY</customAction>
<name>Modify Quote Template structure</name>
<description>Allow users to Rename or Delete Templates and Groups from the Quote Template area</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="71" version="0" dateCreated="2016-10-05T12:18:11.028+02:00">
<destination>Navigation_QUOTE_MANAGE</destination>
<permissionAction>ACCESS</permissionAction>
<name>Manage Quotes</name>
<description>Can this user access the Manage Quotes tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="80" version="0" dateCreated="2016-10-05T12:18:11.051+02:00">
<destination>Navigation_QUOTE_ADD</destination>
<permissionAction>ACCESS</permissionAction>
<name>Linking to Add a Quote</name>
<description>Can this user access the Linking to Add a Quote tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="72" version="0" dateCreated="2016-10-05T12:18:11.030+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_MODIFY_ONCE_TRANSITIONED_TO_JOB</customAction>
<name>Modify a Quote once it has been transitioned to a Job.</name>
<description>Allow users to change an existing Quote in the Add/Edit View if it has been transitioned to a Job</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="79" version="0" dateCreated="2016-10-05T12:18:11.049+02:00">
<destination>Navigation_QUOTE_EDIT</destination>
<permissionAction>ACCESS</permissionAction>
<name>Quote Add/Edit</name>
<description>Can this user access the Quote Add/Edit tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="75" version="0" dateCreated="2016-10-05T12:18:11.042+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_MODIFY_VALUE_DERIVED_FROM_CHARGEBAND</customAction>
<name>Edit quote values derived from charge band.</name>
<description>Allow user to modify quote values derived from charge band.</description>
<itemOrder>13</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="81" version="0" dateCreated="2016-10-05T12:18:11.054+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_EDIT_JOB_OWNER</customAction>
<name>Allow editing of the Job Owner field.</name>
<description>Allow user to edit the Job Owner field after the Quote has been created</description>
<itemOrder>10</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="84" version="0" dateCreated="2016-10-05T12:18:11.058+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_TEMPLATE_CREATE</customAction>
<name>Create Template From Quote</name>
<description>Allow users to create a Quote Templates</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="73" version="0" dateCreated="2016-10-05T12:18:11.032+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_MODIFY</customAction>
<name>Modify in Quote Add/Edit</name>
<description>Allow users to add, edit or delete in the Quote Add/Edit View</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="83" version="0" dateCreated="2016-10-05T12:18:11.057+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_MODIFY_LOCKED_STATUS</customAction>
<name>Allow Locking of Quotes and Editing when Locked.</name>
<description>Allow a user to Alter the Locked flag on a quote and also update any quote that is locked.</description>
<itemOrder>11</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="74" version="0" dateCreated="2016-10-05T12:18:11.035+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_ALLOW_VIEW_TIME_FEE</customAction>
<name>View Time and Fee in Quotes</name>
<description>Allow users to view time and fee values in the Quote Add/Edit View</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="78" version="0" dateCreated="2016-10-05T12:18:11.047+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>QUOTE_MODIFY_QUOTE_NUMBER</customAction>
<name>Modify a Quote Number.</name>
<description>Allow users to modify a Quote Number</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="77" version="0" dateCreated="2016-10-05T12:18:11.046+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CAN_EDIT_QUOTES_NOT_OWNED_BY_USER</customAction>
<name>Edit Quotes when no the owner.</name>
<description>Allow users to edit or delete a quote where he is not the owner.</description>
<itemOrder>12</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="76" version="0" dateCreated="2016-10-05T12:18:11.044+02:00">
<destination>Navigation_QUOTE_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Quote Search</name>
<description>Can this user access the Quote Search tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="5" version="0" dateCreated="2016-10-05T12:18:10.951+02:00">
<name>Jobs</name>
<groupedPermissions>
<groupedPermission id="39" version="0" dateCreated="2016-10-05T12:18:10.955+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_RESTRICT_COSTS</customAction>
<name>Access to the Cost Related Job Information</name>
<description>Allow visibility of the Job Financial Analysis Panel, Time Cost Column, Time Markup Column and Cost column in Timesheet Search</description>
<itemOrder>31</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="68" version="0" dateCreated="2016-10-05T12:18:11.011+02:00">
<destination>Navigation_JOB_SCHEDULE</destination>
<permissionAction>ACCESS</permissionAction>
<name>Job Schedule</name>
<description>Can this user access the Job Schedule tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="70" version="0" dateCreated="2016-10-05T12:18:11.014+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_MODIFY</customAction>
<name>Modify in Job Add/Edit</name>
<description>Allow users to edit or delete existing jobs in the Job Add/Edit View</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="41" version="0" dateCreated="2016-10-05T12:18:10.958+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_SCHEDULE_MODIFY</customAction>
<name>Modify in Job Schedule</name>
<description>Allow users to Modify Data in the Job Schedule View</description>
<itemOrder>10</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="67" version="0" dateCreated="2016-10-05T12:18:11.008+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_ACCESS_BILLING_TAB</customAction>
<name>Access to the Job Add/Edit Billing sub-tab</name>
<description>Allow users to access the Billing Sub Tab in the Job Add/Edit view</description>
<itemOrder>12</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="49" version="0" dateCreated="2016-10-05T12:18:10.972+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_CHANGE_DEADLINE_DATES</customAction>
<name>Change Internal/External Job Deadlines</name>
<description>Allow users to modify the Internal or External Deadline Date once the Job has been created in the Job Add/Edit View</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="69" version="0" dateCreated="2016-10-05T12:18:11.012+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ALLOW_LINKING_TO_WAITING_JOB</customAction>
<name>Allow linking to an external job from waiting list.</name>
<description>Allow user to link/unlink Traffic Job to an external job from the Waiting Job List</description>
<itemOrder>21</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="45" version="0" dateCreated="2016-10-05T12:18:10.965+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_EXTERNAL_CODE_MODIFY</customAction>
<name>Allow modifications of Job's external codes.</name>
<description>Allow user to change Job's external codes</description>
<itemOrder>22</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="63" version="0" dateCreated="2016-10-05T12:18:11.001+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_TEMPLATE_MODIFY</customAction>
<name>Modify Job Template Structure</name>
<description>Allow users to Rename or Delete Templates and Groups from the Job Template area</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="50" version="0" dateCreated="2016-10-05T12:18:10.975+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_TEMPLATE_CREATE</customAction>
<name>Create Template From Job</name>
<description>Allow users to create a Job Templates</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="44" version="0" dateCreated="2016-10-05T12:18:10.963+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_MODIFY_VALUE_DERIVED_FROM_CHARGEBAND</customAction>
<name>Edit values derived from charge band.</name>
<description>Allow user to modify values derived from charge band.</description>
<itemOrder>30</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="65" version="0" dateCreated="2016-10-05T12:18:11.005+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ACCESS_EXPENSES</customAction>
<name>View/add new expenses.</name>
<description>Allow user to view and add new expenses.</description>
<itemOrder>19</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="55" version="0" dateCreated="2016-10-05T12:18:10.985+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_POPULATE_BASELINE_FROM_ESTIMATE</customAction>
<name>Populate baseline values from Job estimates</name>
<description>Allow user to populate baseline values from Job estimates</description>
<itemOrder>25</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="43" version="0" dateCreated="2016-10-05T12:18:10.962+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_SEARCH_ALLOW_FINANCIALS</customAction>
<name>View Financial columns in Job Search view</name>
<description>Allow users to view Financial columns in Job Search view</description>
<itemOrder>14</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="59" version="0" dateCreated="2016-10-05T12:18:10.995+02:00">
<destination>Navigation_INVOICE_EXPORT</destination>
<permissionAction>ACCESS</permissionAction>
<name>Invoice Export</name>
<description>Can this user access the Invoice Export tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="58" version="0" dateCreated="2016-10-05T12:18:10.993+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_DELETE_LINE_IF_BASELINED</customAction>
<name>Allow deleting of baselined Time lines</name>
<description>Allow user to delete Time lines if the baseline values are not empty</description>
<itemOrder>27</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="54" version="0" dateCreated="2016-10-05T12:18:10.983+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>INVOICE_MODIFY_INVOICE</customAction>
<name>Modify Invoice Properties (e.g. Number).</name>
<description>Allow users to modify a Invoice Number after it has been issued - BE VERY CAREFUL WITH THIS FEATURE</description>
<itemOrder>16</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="53" version="0" dateCreated="2016-10-05T12:18:10.981+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_CAN_EDIT_METADATA</customAction>
<name>Allow editing of Job details.</name>
<description>Allow user to edit the Job details. When this permission is disabled Job details are read only.</description>
<itemOrder>28</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="46" version="0" dateCreated="2016-10-05T12:18:10.967+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ACCESS_PURCHASES</customAction>
<name>View purchases.</name>
<description>Allow user to view purchases.</description>
<itemOrder>20</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="62" version="0" dateCreated="2016-10-05T12:18:10.999+02:00">
<destination>Navigation_JOB_ADD</destination>
<permissionAction>ACCESS</permissionAction>
<name>Linking to Add a Job</name>
<description>Can this user access the Linking to Add a Job tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="42" version="0" dateCreated="2016-10-05T12:18:10.960+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CAN_EDIT_JOBS_NOT_OWNED_BY_USER</customAction>
<name>Edit Jobs when not the owner.</name>
<description>Allow users to edit or delete a Job where he is not the owner.</description>
<itemOrder>29</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="48" version="0" dateCreated="2016-10-05T12:18:10.971+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ADD_EDIT_ALLOW_SYSTEM_STATUS_COMPLETE</customAction>
<name>Enable Transition in to or Out of Job System Status of COMPLETE.</name>
<description>Allow users to Transition Into a System Status of COMPLETE or out of a COMPLETE Job</description>
<itemOrder>18</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="60" version="0" dateCreated="2016-10-05T12:18:10.996+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>INVOICE_DELETE</customAction>
<name>Delete Issued Invoice</name>
<description>Allow users to delete an issued Invoice</description>
<itemOrder>17</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="51" version="0" dateCreated="2016-10-05T12:18:10.977+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>OUTPUT_JOB_REPORT_DOCUMENT</customAction>
<name>Open Job Report in Job Add/Edit view</name>
<description>Allow users to open Job Report document in the Add/Edit Job view</description>
<itemOrder>13</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="66" version="0" dateCreated="2016-10-05T12:18:11.006+02:00">
<destination>Navigation_TASK_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Task Search</name>
<description>Can this user access the Task Search tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="40" version="0" dateCreated="2016-10-05T12:18:10.957+02:00">
<destination>Navigation_JOB_EDIT</destination>
<permissionAction>ACCESS</permissionAction>
<name>Job Add/Edit</name>
<description>Can this user access the Job Add/Edit tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="47" version="0" dateCreated="2016-10-05T12:18:10.969+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_POPULATE_ESTIMATE_FROM_BASELINE</customAction>
<name>Populate Job estimate values from baseline</name>
<description>Allow user to populate Job estimate values from baseline</description>
<itemOrder>26</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="38" version="0" dateCreated="2016-10-05T12:18:10.953+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_ALLOW_EDIT_IF_SYSTEM_STATUS_COMPLETE</customAction>
<name>Allow modifications of complete Job.</name>
<description>Allow user to change Job which has Status set to Complete</description>
<itemOrder>23</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="52" version="0" dateCreated="2016-10-05T12:18:10.979+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_MODIFY_JOB_NUMBER</customAction>
<name>Modify a Job Number.</name>
<description>Allow users to modify a Job Number</description>
<itemOrder>15</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="61" version="0" dateCreated="2016-10-05T12:18:10.998+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_EDIT_JOB_OWNER</customAction>
<name>Allow editing of the Job Owner field.</name>
<description>Allow user to edit the Job Owner field after the Job has been created</description>
<itemOrder>24</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="56" version="0" dateCreated="2016-10-05T12:18:10.988+02:00">
<destination>Navigation_JOB_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>Job Search</name>
<description>Can this user access the Job Search tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="57" version="0" dateCreated="2016-10-05T12:18:10.991+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>INVOICE_SEARCH_EXPORTED_FLAG_MODIFY</customAction>
<name>Modify the exported flag in Invoice Search</name>
<description>Allow users to modify the Exported Flag on the Invoice Search View.</description>
<itemOrder>32</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="64" version="0" dateCreated="2016-10-05T12:18:11.003+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ALLOW_EXPENSE_DELETION</customAction>
<name>Delete expenses</name>
<description>Allow users to delete expenses from the job add/edit expense grid</description>
<itemOrder>11</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="4" version="0" dateCreated="2016-10-05T12:18:10.922+02:00">
<name>Contacts</name>
<groupedPermissions>
<groupedPermission id="33" version="0" dateCreated="2016-10-05T12:18:10.932+02:00">
<destination>Navigation_VIEW_EMPLOYEE</destination>
<permissionAction>ACCESS</permissionAction>
<name>View Employee</name>
<description>Can this user access the View Employee tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="35" version="0" dateCreated="2016-10-05T12:18:10.936+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CONTACT_MODIFY</customAction>
<name>Modify Contact Data</name>
<description>Allow users to Edit or Delete Companies/Address/Employees from the Contacts Area</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="36" version="0" dateCreated="2016-10-05T12:18:10.938+02:00">
<destination>Navigation_VIEW_COMPANY</destination>
<permissionAction>ACCESS</permissionAction>
<name>View Company</name>
<description>Can this user access the View Company tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="37" version="0" dateCreated="2016-10-05T12:18:10.940+02:00">
<destination>Navigation_VIEW_LOCATION</destination>
<permissionAction>ACCESS</permissionAction>
<name>View Address</name>
<description>Can this user access the View Address tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="30" version="0" dateCreated="2016-10-05T12:18:10.926+02:00">
<destination>Navigation_ORG_CHART</destination>
<permissionAction>ACCESS</permissionAction>
<name>OrgChart</name>
<description>Can this user access the OrgChart tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="32" version="0" dateCreated="2016-10-05T12:18:10.930+02:00">
<destination>Navigation_CONTACTS_SHEET</destination>
<permissionAction>ACCESS</permissionAction>
<name>Contacts Sheet</name>
<description>Can this user access the Contacts Sheet tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="34" version="0" dateCreated="2016-10-05T12:18:10.934+02:00">
<destination>Navigation_CONTACTS</destination>
<permissionAction>ACCESS</permissionAction>
<name>Contacts</name>
<description>Can this user access the Contacts tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="31" version="0" dateCreated="2016-10-05T12:18:10.928+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CRM_CONTACTS_SHEET_EXPORT</customAction>
<name>Export From Contacts Sheet</name>
<description>Allow users to Export the Contacts Sheet to file</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="3" version="0" dateCreated="2016-10-05T12:18:10.887+02:00">
<name>My Traffic</name>
<groupedPermissions>
<groupedPermission id="20" version="0" dateCreated="2016-10-05T12:18:10.896+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>MY_CALENDAR_EDIT_BILLABLE_TIME</customAction>
<name>User can alter the Billable Flag for Calendar timesheet entries</name>
<description>Allow the user to change timesheet entries to be billable or not based when created on My Calendar.</description>
<itemOrder>11</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="29" version="0" dateCreated="2016-10-05T12:18:10.913+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>VIEW_OTHER_PEOPLE_CALENDARS</customAction>
<name>View other people's calendars</name>
<description>Allow users to view other people's calendars</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="18" version="0" dateCreated="2016-10-05T12:18:10.893+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>MY_CALENDAR_SEARCH_BILLABLE_TASKS</customAction>
<name>Show Billable (Non Inhouse) Jobs in my calendar in the Task Search and All Tasks Tabs</name>
<description>If this permission is turned off, then Billable (Non Inhouse) Jobs are filtered from these two areas</description>
<itemOrder>13</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="28" version="0" dateCreated="2016-10-05T12:18:10.912+02:00">
<destination>Navigation_MY_TRAFFIC_TIMESHEETS</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Timesheets</name>
<description>Can this user access the My Timesheets tab?</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="21" version="0" dateCreated="2016-10-05T12:18:10.897+02:00">
<destination>Navigation_MY_TRAFFIC_EXPENSE_SHEETS</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Expense Sheets</name>
<description>Can this user access the My Expense Sheets tab?</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="16" version="0" dateCreated="2016-10-05T12:18:10.889+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>CALENDAR_ALLOCATIONS_MOVE</customAction>
<name>Move Calendar Allocations</name>
<description>Allow users to move their own Calendar Allocations</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="23" version="0" dateCreated="2016-10-05T12:18:10.902+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SUBMIT_OWN_SUBMITTER</customAction>
<name>Alter Submitted Status of Time where you are the Submitter</name>
<description>Allows a user to alter the submitted status of any timesheet entries where they are the Submitter</description>
<itemOrder>12</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="17" version="0" dateCreated="2016-10-05T12:18:10.891+02:00">
<destination>Navigation_MY_TRAFFIC_QUOTES</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Quotes</name>
<description>Can this user access the My Quotes tab?</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="19" version="0" dateCreated="2016-10-05T12:18:10.895+02:00">
<destination>Navigation_MY_TRAFFIC_CALENDAR_ALL_TASKS</destination>
<permissionAction>ACCESS</permissionAction>
<name>All Tasks</name>
<description>Can this user access the All Tasks tab?</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="22" version="0" dateCreated="2016-10-05T12:18:10.898+02:00">
<destination>Navigation_MY_TRAFFIC_MY_SETTINGS</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Settings</name>
<description>Can this user access the My Settings tab?</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="25" version="0" dateCreated="2016-10-05T12:18:10.906+02:00">
<destination>Navigation_MY_TRAFFIC_CALENDAR</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Calendar</name>
<description>Can this user access the My Calendar tab?</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="24" version="0" dateCreated="2016-10-05T12:18:10.904+02:00">
<destination>Navigation_MY_TRAFFIC_MY_TIMESHEET_SEARCH</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Timesheet Search</name>
<description>Can this user access the My Timesheet Search tab?</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="26" version="0" dateCreated="2016-10-05T12:18:10.907+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>SELF_ALLOCATION_OF_WORK</customAction>
<name>User can allocate work to themselves</name>
<description>Allow the user to drag work onto their own calendar in the My Calendar view.</description>
<itemOrder>10</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="27" version="0" dateCreated="2016-10-05T12:18:10.909+02:00">
<destination>Navigation_MY_TRAFFIC_JOBS</destination>
<permissionAction>ACCESS</permissionAction>
<name>My Jobs</name>
<description>Can this user access the My Jobs tab?</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="2" version="0" dateCreated="2016-10-05T12:18:10.849+02:00">
<name>Document Storage</name>
<groupedPermissions>
<groupedPermission id="8" version="0" dateCreated="2016-10-05T12:18:10.862+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_CAN_ACCESS_RESTRICTED</customAction>
<name>Restricted Access</name>
<description>Allow users to access restricted files</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="7" version="0" dateCreated="2016-10-05T12:18:10.860+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_ACCESS_CREATED_BY_OTHERS</customAction>
<name>Can Access Files Added By Others</name>
<description>Allow users Access files uploaded by others</description>
<itemOrder>7</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="15" version="0" dateCreated="2016-10-05T12:18:10.873+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_CAN_MODIFY_READ_ONLY</customAction>
<name>Can Modify Read Only Files</name>
<description>Allow users to Update or Delete files flagged as ReadOnly</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="14" version="0" dateCreated="2016-10-05T12:18:10.872+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_VIEW_LIBRARY_FILES</customAction>
<name>Can View Library Files</name>
<description>Allow users to view Files Added as Library files</description>
<itemOrder>5</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="9" version="0" dateCreated="2016-10-05T12:18:10.863+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_CREATE</customAction>
<name>Create Documents</name>
<description>Allows users to create documents. To allow users to create restricted documents, 'Restricted Access' should be granted</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="13" version="0" dateCreated="2016-10-05T12:18:10.870+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_DELETE</customAction>
<name>Delete Documents</name>
<description>Allows users to delete documents. To allow users to delete restricted documents, 'Restricted Access' should be granted</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="11" version="0" dateCreated="2016-10-05T12:18:10.867+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_READ</customAction>
<name>View Documents</name>
<description>Users can view document storage from anywhere in the application.</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="12" version="0" dateCreated="2016-10-05T12:18:10.869+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_MODIFY_LIBRARY_FILES</customAction>
<name>Can Modify Library Files</name>
<description>Allow users to Update or Delete files added as Library files</description>
<itemOrder>6</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="6" version="0" dateCreated="2016-10-05T12:18:10.858+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_VIEW_ANNOTATIONS</customAction>
<name>Can View Proofs</name>
<description>Allow users to retrieve hypelinks to existing annotations of stored documents</description>
<itemOrder>8</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="10" version="0" dateCreated="2016-10-05T12:18:10.865+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>DOCUMENT_STORAGE_CREATE_ANNOTATIONS</customAction>
<name>Can Create Proofs</name>
<description>Allow users to create annotations from stored documents</description>
<itemOrder>9</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>true</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
<permissionGroup id="1" version="0" dateCreated="2016-10-05T12:18:10.797+02:00">
<name>Application Wide Permissions</name>
<groupedPermissions>
<groupedPermission id="3" version="0" dateCreated="2016-10-05T12:18:10.805+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_ALLOW_DUPLICATES</customAction>
<name>Turn Off Auto-Rejection of duplicate timesheet entries</name>
<description>If a user does not have this permission, then non-signed off duplicate timesheet entries will be auto-rejected whenever they are created or updated.</description>
<itemOrder>4</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="1" version="0" dateCreated="2016-10-05T12:18:10.800+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>JOB_CREATE</customAction>
<name>Create A Job From Anywhere in the Application</name>
<description>Allows a user to Create a new Job. This will apply to all areas of the application where creating a job is possible.</description>
<itemOrder>0</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="4" version="0" dateCreated="2016-10-05T12:18:10.806+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_SHOW_AUDIT_INFORMATION</customAction>
<name>Allow Access to the Time Audit Information Dialog</name>
<description>Allows a User to Open the Time Audit Information Dialog.</description>
<itemOrder>1</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="2" version="0" dateCreated="2016-10-05T12:18:10.803+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>TIME_DISABLE_LOCKED_TIME</customAction>
<name>Disable Locked Time Ranges</name>
<description>Locked Time restrictions will not apply to this User</description>
<itemOrder>2</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
<groupedPermission id="5" version="0" dateCreated="2016-10-05T12:18:10.809+02:00">
<permissionAction>CUSTOM</permissionAction>
<customAction>ACCESS_RESOURCE_COSTING</customAction>
<name>Allow access to resource costing</name>
<description>Allows the user to view time and resource related financial values across the application.</description>
<itemOrder>3</itemOrder>
<uiHidden>false</uiHidden>
<dependsOnDocumentStore>false</dependsOnDocumentStore>
</groupedPermission>
</groupedPermissions>
</permissionGroup>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:16 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:18:11.304+0000",
"dateModified":null,
"name":"Timesheet entries",
"groupedPermissions":[
{
"id":157,
"version":0,
"dateCreated":"2016-10-05T10:18:11.310+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SIGN_OFF_JOB_OWNER",
"name":"Sign Off Time that I am the Job Owner Of",
"description":"Allows a user to alter the sign off status of any timesheet entries where they are the owner of the job the time was logged against. ",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":156,
"version":0,
"dateCreated":"2016-10-05T10:18:11.308+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_READY_FOR_EXPORT_ALL",
"name":"Mark any Time Entry as Ready For Export",
"description":"Allows a user to alter the Ready for Export status of any timesheet entries",
"permissionGroupId":null,
"itemOrder":12,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":169,
"version":0,
"dateCreated":"2016-10-05T10:18:11.328+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SUBMIT_JOB_OWNER",
"name":"Alter Submitted Status of Time that I am the Job Owner Of",
"description":"Allows a user to alter the submitted status of any timesheet entries where they are the owner of the job the time was logged against. ",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":163,
"version":0,
"dateCreated":"2016-10-05T10:18:11.319+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_REJECT_ALL",
"name":"Alter Rejected Status of Any Time Entry",
"description":"Allows a user to alter the rejected status of any timesheet entries. ",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":160,
"version":0,
"dateCreated":"2016-10-05T10:18:11.315+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_TIME_ENTRY_ADMINISTER",
"name":"Administer Timesheet records",
"description":"Allows a user to Adminster Timesheets entries by either moving them from one Job,
Job Task or Employee to Another or creating on behalf of another user. ",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":155,
"version":0,
"dateCreated":"2016-10-05T10:18:11.307+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_CAN_SIGN_OFF_REJECTED",
"name":"Sign Off Rejected timesheet entries",
"description":"Allows the user to sign off timesheet entries that have been rejected.",
"permissionGroupId":null,
"itemOrder":14,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":159,
"version":0,
"dateCreated":"2016-10-05T10:18:11.314+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SIGN_OFF_OWN_SUBMITTER",
"name":"Sign Off timesheet entries You Have Submitted",
"description":"Allows a user to alter the sign off status of any timesheet entries where they are the Submitter. NOTE: Even if you have Sign Of Any permissions,
",
"permissionGroupId":null,
"itemOrder":10,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":165,
"version":0,
"dateCreated":"2016-10-05T10:18:11.322+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_REJECT_OWN_SUBMITTER",
"name":"Alter Rejected Status of Time where you are the Submitter",
"description":"Allows a user to alter the rejected status of any timesheet entries where they are the Submitter. ",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":164,
"version":0,
"dateCreated":"2016-10-05T10:18:11.321+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_DESELECT_SIGN_OFF",
"name":"De-Select Signed Off timesheet entries you have Sign Off Access To",
"description":"Allows a user to deselect the sign off flag from time records they may have previously signed off.",
"permissionGroupId":null,
"itemOrder":11,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":167,
"version":0,
"dateCreated":"2016-10-05T10:18:11.325+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SIGN_OFF_ALL",
"name":"Sign Off Any Time Entry",
"description":"Allows a user to alter the sign off status of any timesheet entries. ",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":168,
"version":0,
"dateCreated":"2016-10-05T10:18:11.326+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SUBMIT_ALL",
"name":"Alter Submitted Status of Any Time Entry",
"description":"Allows a user to alter the submitted status of any timesheet entries. ",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":158,
"version":0,
"dateCreated":"2016-10-05T10:18:11.312+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_REJECT_JOB_OWNER",
"name":"Alter Rejected Status of Time that I am the Job Owner Of",
"description":"Allows a user to alter the rejected status of any timesheet entries where they are the owner of the job the time was logged against. ",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":161,
"version":0,
"dateCreated":"2016-10-05T10:18:11.317+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_DESELECT_REJECT",
"name":"De-Select Rejected Status of timesheet entries you have Reject Status Access To",
"description":"Allows a user to deselect the rejected flag from time records they may have previously rejected.",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":162,
"version":0,
"dateCreated":"2016-10-05T10:18:11.318+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_TIME_ENTRY_DELETE",
"name":"Delete Timesheet Entries",
"description":"Allow users to Delete Timesheet Entries",
"permissionGroupId":null,
"itemOrder":13,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":166,
"version":0,
"dateCreated":"2016-10-05T10:18:11.323+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_DESELECT_SUBMIT",
"name":"De-Select Submitted Status of timesheet entries you have Submitted Status Access To",
"description":"Allows a user to deselect the submitted flag from time records they may have previously submitted.",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:11.285+0000",
"dateModified":null,
"name":"Platform Admin",
"groupedPermissions":[
{
"id":152,
"version":0,
"dateCreated":"2016-10-05T10:18:11.292+0000",
"dateModified":null,
"destination":"Navigation_PLATFORM_ADMIN_VIEW_COMPANY",
"permissionAction":"ACCESS",
"customAction":null,
"name":"View Company",
"description":"Can this user access the View Company tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":true,
"dependsOnDocumentStore":false
},
{
"id":151,
"version":0,
"dateCreated":"2016-10-05T10:18:11.290+0000",
"dateModified":null,
"destination":"Navigation_PLATFORM_ADMIN_COMPANY_LIST",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Company List",
"description":"Can this user access the Company List tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":true,
"dependsOnDocumentStore":false
},
{
"id":153,
"version":0,
"dateCreated":"2016-10-05T10:18:11.294+0000",
"dateModified":null,
"destination":"Navigation_PLATFORM_ADMIN_SERVICE_MESSAGES",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Service Messages",
"description":"Can this user access the Service Messages tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":true,
"dependsOnDocumentStore":false
},
{
"id":150,
"version":0,
"dateCreated":"2016-10-05T10:18:11.286+0000",
"dateModified":null,
"destination":"Navigation_PLATFORM_ADMIN_CREATE_DEMO",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Create Demo Company",
"description":"Can this user access the Create Demo Company tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":true,
"dependsOnDocumentStore":false
},
{
"id":154,
"version":0,
"dateCreated":"2016-10-05T10:18:11.295+0000",
"dateModified":null,
"destination":"Navigation_PLATFORM_ADMIN_SOHNAR_STAFF",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Sohnar Staff",
"description":"Can this user access the Sohnar Staff tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":true,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:18:11.260+0000",
"dateModified":null,
"name":"Integrations",
"groupedPermissions":[
{
"id":142,
"version":0,
"dateCreated":"2016-10-05T10:18:11.263+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_EXPORT_TO_UPDATE_FROM_MACONOMY",
"name":"Allow Exporting To/Updating From Maconomy Expenses",
"description":"Allow a User To Export Expenses to Maconomy and also Update Previously Exported Expenses with Maconomy Information.",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":149,
"version":0,
"dateCreated":"2016-10-05T10:18:11.275+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CRM_CONTACTS_SHEET_EXPORT_MAILCHIMP",
"name":"Export To MailChimp From Contacts Sheet",
"description":"Allow users to Export the Contacts Sheet to MailChimp",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":146,
"version":0,
"dateCreated":"2016-10-05T10:18:11.270+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"MACONOMY_ALLOW_LINKED_EMPLOYEE_UPDATE",
"name":"Modify Linked Employee Details",
"description":"Allow users to Modify all Employee details when Maconomy employee sync is enabled",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":143,
"version":0,
"dateCreated":"2016-10-05T10:18:11.265+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_MACONOMY_ALLOW_UNASSIGNED_STATUS_CHANGE",
"name":"Maconomy - Status change for unassigned job.",
"description":"Maconomy integration - Allow user to change System status to values different than DRAFT without being assigned to a Maconomy Job",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":145,
"version":0,
"dateCreated":"2016-10-05T10:18:11.268+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_TASK_ALLOW_MACONOMY_TIMESHEET_EXPORT",
"name":"Export time to external system.",
"description":"Allow user to export timesheets to external system (Maconomy)",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":144,
"version":0,
"dateCreated":"2016-10-05T10:18:11.267+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"PURCHASING_MACONOMY_ALLOW_UPDATE_OF_EXPORTED",
"name":"Maconomy - Allow changes to exported PO.",
"description":"Maconomy integration - Allow user to change exported PO",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":147,
"version":0,
"dateCreated":"2016-10-05T10:18:11.272+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_SEND_BUDGET_TO_MACONOMY",
"name":"Send Budget to Maconomy.",
"description":"Allows a user to send a job from trafficLIVE to Maconomy creating a budget,
or a budget revision.",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":148,
"version":0,
"dateCreated":"2016-10-05T10:18:11.274+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"MACONOMY_ALLOW_MODIFY_JOB_WAITING_LIST",
"name":"Modify a Jon in the waiting list",
"description":"Allow users to Modify an unlinked Job on the Waiting list",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:18:11.219+0000",
"dateModified":null,
"name":"Correspondence",
"groupedPermissions":[
{
"id":139,
"version":0,
"dateCreated":"2016-10-05T10:18:11.222+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CORRESPONDENCE_REMOVE_ATTACHMENT",
"name":"Remove Attachment from Correspondence",
"description":"This permission allows a user to remove the link from the Document Store file to the Correspondence Record. NOTE: The File will still exist in the document store after the link has been removed. ",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":140,
"version":0,
"dateCreated":"2016-10-05T10:18:11.224+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CORRESPONDENCE_ADD_ATTACHMENT",
"name":"Add Attachments to A Correspondence",
"description":"This permission allows a user to upload a file to Document Store and Link the File to a Correspondence Record. This permission requires Document Store to be configured for the Company.",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":141,
"version":0,
"dateCreated":"2016-10-05T10:18:11.228+0000",
"dateModified":null,
"destination":"Navigation_CONTACTS_VIEW",
"permissionAction":"ACCESS",
"customAction":null,
"name":"View Correspondence",
"description":"Can this user access the View Correspondence tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:11.203+0000",
"dateModified":null,
"name":"Reporting",
"groupedPermissions":[
{
"id":138,
"version":0,
"dateCreated":"2016-10-05T10:18:11.213+0000",
"dateModified":null,
"destination":"Navigation_ReportMaker",
"permissionAction":"ACCESS",
"customAction":null,
"name":"ReportMaker",
"description":"Can this user access the ReportMaker tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":137,
"version":0,
"dateCreated":"2016-10-05T10:18:11.211+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ACCESS_QUOTE_REPORT",
"name":"Access Quote Report",
"description":"Allow users to access the Quote Report",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":135,
"version":0,
"dateCreated":"2016-10-05T10:18:11.207+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ACCESS_JOB_TIME_MONEY_REPORT",
"name":"Access Job Time and Money Report",
"description":"Allow users to access the Job Time and Money Report",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":136,
"version":0,
"dateCreated":"2016-10-05T10:18:11.209+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ACCESS_EMPLOYEE_UTILISATION_REPORT",
"name":"Access Employee Utilisation Report",
"description":"Allow users to access the Employee Utilisation Report",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":133,
"version":0,
"dateCreated":"2016-10-05T10:18:11.205+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ACCESS_TIME_SCHEDULED_WORK_REPORT",
"name":"Access Time / Scheduled Work With Financials Report",
"description":"Allow users to access the Time / Scheduled Work With Financials Report",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":134,
"version":0,
"dateCreated":"2016-10-05T10:18:11.206+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DELETE_SAVED_REPORTS",
"name":"Delete Saved Reports",
"description":"Allow users to delete saved Reports",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:11.193+0000",
"dateModified":null,
"name":"Home",
"groupedPermissions":[
{
"id":132,
"version":0,
"dateCreated":"2016-10-05T10:18:11.195+0000",
"dateModified":null,
"destination":"Navigation_HOME",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Home Screen",
"description":"Can this user access the Home Screen tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:18:11.165+0000",
"dateModified":null,
"name":"Client Admin",
"groupedPermissions":[
{
"id":130,
"version":0,
"dateCreated":"2016-10-05T10:18:11.183+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_PERMISSIONS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Permissions",
"description":"Can this user access the Admin Permissions tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":126,
"version":0,
"dateCreated":"2016-10-05T10:18:11.174+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TC_LOCATION_DEPT_STAFF_MODIFY",
"name":"Modify Company Data",
"description":"Allow users Delete/Edit Data in the Company Management Area.",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":127,
"version":0,
"dateCreated":"2016-10-05T10:18:11.178+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_LISTS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Manage Lists",
"description":"Can this user access the Admin Manage Lists tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":123,
"version":0,
"dateCreated":"2016-10-05T10:18:11.168+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_STAFF_IMPORT",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Staff Import",
"description":"Can this user access the Admin Staff Import tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":125,
"version":0,
"dateCreated":"2016-10-05T10:18:11.171+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_LOCKED_TIME",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Locked Time",
"description":"Can this user access the Admin Locked Time tab?",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":128,
"version":0,
"dateCreated":"2016-10-05T10:18:11.180+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_EMPLOYEE_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Employee Search",
"description":"Can this user access the Employee Search tab?",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":124,
"version":0,
"dateCreated":"2016-10-05T10:18:11.170+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_COMPANY_DETAILS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Company Details",
"description":"Can this user access the Admin Company Details tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":122,
"version":0,
"dateCreated":"2016-10-05T10:18:11.166+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_TAGS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Tags",
"description":"Can this user access the Admin Tags tab?",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":131,
"version":0,
"dateCreated":"2016-10-05T10:18:11.185+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_OUTPUT_TEMPLATES",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Output Templates",
"description":"Can this user access the Admin Output Templates tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":129,
"version":0,
"dateCreated":"2016-10-05T10:18:11.181+0000",
"dateModified":null,
"destination":"Navigation_CLIENT_ADMIN_MANAGE_CHARGE_BANDS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Admin Charge Bands",
"description":"Can this user access the Admin Charge Bands tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:18:11.148+0000",
"dateModified":null,
"name":"Purchases",
"groupedPermissions":[
{
"id":120,
"version":0,
"dateCreated":"2016-10-05T10:18:11.152+0000",
"dateModified":null,
"destination":"Navigation_PURCHASING_TENDER",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Tenders",
"description":"Can this user access the Tenders tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":121,
"version":0,
"dateCreated":"2016-10-05T10:18:11.154+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"PURCHASING_MODIFY_PO_NUMBER",
"name":"Modify a PO Number.",
"description":"Allow users to modify a PO Number",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":118,
"version":0,
"dateCreated":"2016-10-05T10:18:11.149+0000",
"dateModified":null,
"destination":"Navigation_PURCHASING_PO",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Purchase Orders",
"description":"Can this user access the Purchase Orders tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":119,
"version":0,
"dateCreated":"2016-10-05T10:18:11.150+0000",
"dateModified":null,
"destination":"Navigation_PURCHASES",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Purchases",
"description":"Can this user access the Purchases tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:11.074+0000",
"dateModified":null,
"name":"Manage Agency",
"groupedPermissions":[
{
"id":116,
"version":0,
"dateCreated":"2016-10-05T10:18:11.136+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_EDIT",
"name":"Edit Expense Sheets",
"description":"Allow users To Edit Expense Sheets",
"permissionGroupId":null,
"itemOrder":18,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":96,
"version":0,
"dateCreated":"2016-10-05T10:18:11.104+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_PAID",
"name":"Edit Expense Sheets in PAID",
"description":"Allow users To Edit Expense Sheets with a system status of PAID. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":21,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":86,
"version":0,
"dateCreated":"2016-10-05T10:18:11.079+0000",
"dateModified":null,
"destination":"Navigation_JOB_PROGRESS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Job Progress",
"description":"Can this user access the Job Progress tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":95,
"version":0,
"dateCreated":"2016-10-05T10:18:11.102+0000",
"dateModified":null,
"destination":"Navigation_STAFF_SCHEDULE",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Staff Scheduler",
"description":"Can this user access the Staff Scheduler tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":117,
"version":0,
"dateCreated":"2016-10-05T10:18:11.137+0000",
"dateModified":null,
"destination":"Navigation_EXPENSE_SHEETS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Expense Sheets",
"description":"Can this user access the Expense Sheets tab?",
"permissionGroupId":null,
"itemOrder":12,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":85,
"version":0,
"dateCreated":"2016-10-05T10:18:11.077+0000",
"dateModified":null,
"destination":"Navigation_RESOURCE_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Resource Search",
"description":"Can this user access the Resource Search tab?",
"permissionGroupId":null,
"itemOrder":32,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":91,
"version":0,
"dateCreated":"2016-10-05T10:18:11.093+0000",
"dateModified":null,
"destination":"Navigation_EXPENSES_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Expenses Search",
"description":"Can this user access the Expenses Search tab?",
"permissionGroupId":null,
"itemOrder":29,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":107,
"version":0,
"dateCreated":"2016-10-05T10:18:11.122+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_DENIED",
"name":"Allow transitions to a System Status of DENIED",
"description":"Allow users To Change the Expense Sheet System Status to DENIED. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":22,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":105,
"version":0,
"dateCreated":"2016-10-05T10:18:11.119+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_CREATE_JOB_EXPENSE_LINE",
"name":"Allow Create New Expense from the Expense Sheet",
"description":"Allow a User To Create a New Expense Line on a Job from the Expense Sheet Area.",
"permissionGroupId":null,
"itemOrder":28,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":103,
"version":0,
"dateCreated":"2016-10-05T10:18:11.116+0000",
"dateModified":null,
"destination":"Navigation_DOCUMENT_STORE",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Document Store",
"description":"Can this user access the Document Store tab?",
"permissionGroupId":null,
"itemOrder":11,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":88,
"version":0,
"dateCreated":"2016-10-05T10:18:11.084+0000",
"dateModified":null,
"destination":"Navigation_STUDIO_OVERVIEW",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Studio Overview",
"description":"Can this user access the Studio Overview tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":112,
"version":0,
"dateCreated":"2016-10-05T10:18:11.130+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_PAID_WHEN_SUBMITTER_IS_CURRENT_USER",
"name":"Allow User Submitted transitions to a System Status of PAID",
"description":"Allow a User To Change the Expense Sheets status of PAID if they are the Submitter. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":27,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":108,
"version":0,
"dateCreated":"2016-10-05T10:18:11.124+0000",
"dateModified":null,
"destination":"Navigation_WHATS_HOT",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Task Progress",
"description":"Can this user access the Task Progress tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":100,
"version":0,
"dateCreated":"2016-10-05T10:18:11.111+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_PAID",
"name":"Allow transitions to a System Status of PAID",
"description":"Allow users To Change the Expense Sheet System Status to PAID. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":24,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":109,
"version":0,
"dateCreated":"2016-10-05T10:18:11.125+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"STAFF_SCHEDULE_MODIFY",
"name":"Modify the Staff Schedule",
"description":"Allow users Modify Data in the Staff Schedule View",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":98,
"version":0,
"dateCreated":"2016-10-05T10:18:11.108+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_SUBMITTED",
"name":"Edit Expense Sheets in SUBMITTED",
"description":"Allow users To Edit Expense Sheets with a system status of SUBMITTED. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":19,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":115,
"version":0,
"dateCreated":"2016-10-05T10:18:11.134+0000",
"dateModified":null,
"destination":"Navigation_STAFF_AVAILABILITY",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Staff Overview",
"description":"Can this user access the Staff Overview tab?",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":114,
"version":0,
"dateCreated":"2016-10-05T10:18:11.133+0000",
"dateModified":null,
"destination":"Navigation_CORRESPONDENCE_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Correspondence Search",
"description":"Can this user access the Correspondence Search tab?",
"permissionGroupId":null,
"itemOrder":13,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":102,
"version":0,
"dateCreated":"2016-10-05T10:18:11.114+0000",
"dateModified":null,
"destination":"Navigation_VIEW_TIMESHEETS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Weekly Timesheets",
"description":"Can this user access the Weekly Timesheets tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":99,
"version":0,
"dateCreated":"2016-10-05T10:18:11.109+0000",
"dateModified":null,
"destination":"Navigation_TIMESHEETS_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Timesheet Search",
"description":"Can this user access the Timesheet Search tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":111,
"version":0,
"dateCreated":"2016-10-05T10:18:11.128+0000",
"dateModified":null,
"destination":"Navigation_TIMESHEETS_AUDIT_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Timesheet Audit Search",
"description":"Can this user access the Timesheet Audit Search tab?",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":92,
"version":0,
"dateCreated":"2016-10-05T10:18:11.095+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_EDIT_IF_SYSTEM_STATUS_APPROVED",
"name":"Edit Expense Sheets in APPROVED",
"description":"Allow users To Edit Expense Sheets with a system status of APPROVED. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":20,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":94,
"version":0,
"dateCreated":"2016-10-05T10:18:11.100+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_APPROVED",
"name":"Allow transitions to a System Status of APPROVED",
"description":"Allow users To Change the Expense Sheet System Status to APPROVED. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":23,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":104,
"version":0,
"dateCreated":"2016-10-05T10:18:11.118+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"RESOURCE_MANAGER_SEE_DRAFT_JOBS",
"name":"Can see draft jobs",
"description":"Allow the user to see draft jobs within the Resource Manager view",
"permissionGroupId":null,
"itemOrder":14,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":89,
"version":0,
"dateCreated":"2016-10-05T10:18:11.087+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_DELETE",
"name":"Can delete Expense Sheets",
"description":"Can this user delete expense sheets?",
"permissionGroupId":null,
"itemOrder":17,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":110,
"version":0,
"dateCreated":"2016-10-05T10:18:11.127+0000",
"dateModified":null,
"destination":"Navigation_WORK_PLANNER",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Work Planner",
"description":"Can this user access the Work Planner tab?",
"permissionGroupId":null,
"itemOrder":31,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":113,
"version":0,
"dateCreated":"2016-10-05T10:18:11.132+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"STAFF_SCHEDULE_FORCE_PENDING_MODE_OFF",
"name":"Disable Force Pending Mode",
"description":"When this permission is enabled,
Force Pending Mode is OFF. When this permission is disabled,
Force Pending Mode is ON. With Force Pending Mode ON,
modified scheduled work is forced into a Pending State.",
"permissionGroupId":null,
"itemOrder":10,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":97,
"version":0,
"dateCreated":"2016-10-05T10:18:11.106+0000",
"dateModified":null,
"destination":"Navigation_STAFF_ALLOCATION_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Staff Allocation Search",
"description":"Can this user access the Staff Allocation Search tab?",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":93,
"version":0,
"dateCreated":"2016-10-05T10:18:11.099+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"RESOURCE_MANAGER_CAN_EDIT_VALUES",
"name":"Can edit values in work planner",
"description":"Allows user to create,
edit or delete allocations in work planner.",
"permissionGroupId":null,
"itemOrder":16,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":87,
"version":0,
"dateCreated":"2016-10-05T10:18:11.081+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_APPROVED_WHEN_SUBMITTER_IS_CURRENT_USER",
"name":"Allow User Submitted transitions to a System Status of APPROVED",
"description":"Allow a User To Change the Expense Sheets status of APPROVED if they are the Submitter. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":26,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":106,
"version":0,
"dateCreated":"2016-10-05T10:18:11.121+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"RESOURCE_MANAGER_EDIT_DRAFT_JOBS",
"name":"Can edit draft jobs",
"description":"Allow the user to create,
update or delete allocations which are against a draft job within the Resource Manager view",
"permissionGroupId":null,
"itemOrder":15,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":90,
"version":0,
"dateCreated":"2016-10-05T10:18:11.091+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"EXPENSE_SHEET_TRANSITION_TO_SYSTEM_STATUS_DENIED_WHEN_SUBMITTER_IS_CURRENT_USER",
"name":"Allow User Submitted transitions to a System Status of DENIED",
"description":"Allow a User To Change the Expense Sheets status of DENIED if they are the Submitter. This permission will work in conjuntion with the generic edit permission.",
"permissionGroupId":null,
"itemOrder":25,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":101,
"version":0,
"dateCreated":"2016-10-05T10:18:11.112+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIMESHEET_SEARCH_EXPORTED_FLAG_MODIFY",
"name":"Modify the exported flag in Timesheet Search",
"description":"Allow users to modify the Exported Flag on the Timesheet Search View.",
"permissionGroupId":null,
"itemOrder":30,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:11.027+0000",
"dateModified":null,
"name":"Quotes",
"groupedPermissions":[
{
"id":82,
"version":0,
"dateCreated":"2016-10-05T10:18:11.055+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_TEMPLATE_MODIFY",
"name":"Modify Quote Template structure",
"description":"Allow users to Rename or Delete Templates and Groups from the Quote Template area",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":71,
"version":0,
"dateCreated":"2016-10-05T10:18:11.028+0000",
"dateModified":null,
"destination":"Navigation_QUOTE_MANAGE",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Manage Quotes",
"description":"Can this user access the Manage Quotes tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":80,
"version":0,
"dateCreated":"2016-10-05T10:18:11.051+0000",
"dateModified":null,
"destination":"Navigation_QUOTE_ADD",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Linking to Add a Quote",
"description":"Can this user access the Linking to Add a Quote tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":72,
"version":0,
"dateCreated":"2016-10-05T10:18:11.030+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_MODIFY_ONCE_TRANSITIONED_TO_JOB",
"name":"Modify a Quote once it has been transitioned to a Job.",
"description":"Allow users to change an existing Quote in the Add/Edit View if it has been transitioned to a Job",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":79,
"version":0,
"dateCreated":"2016-10-05T10:18:11.049+0000",
"dateModified":null,
"destination":"Navigation_QUOTE_EDIT",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Quote Add/Edit",
"description":"Can this user access the Quote Add/Edit tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":75,
"version":0,
"dateCreated":"2016-10-05T10:18:11.042+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_MODIFY_VALUE_DERIVED_FROM_CHARGEBAND",
"name":"Edit quote values derived from charge band.",
"description":"Allow user to modify quote values derived from charge band.",
"permissionGroupId":null,
"itemOrder":13,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":84,
"version":0,
"dateCreated":"2016-10-05T10:18:11.058+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_TEMPLATE_CREATE",
"name":"Create Template From Quote",
"description":"Allow users to create a Quote Templates",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":81,
"version":0,
"dateCreated":"2016-10-05T10:18:11.054+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_EDIT_JOB_OWNER",
"name":"Allow editing of the Job Owner field.",
"description":"Allow user to edit the Job Owner field after the Quote has been created",
"permissionGroupId":null,
"itemOrder":10,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":73,
"version":0,
"dateCreated":"2016-10-05T10:18:11.032+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_MODIFY",
"name":"Modify in Quote Add/Edit",
"description":"Allow users to add,
edit or delete in the Quote Add/Edit View",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":83,
"version":0,
"dateCreated":"2016-10-05T10:18:11.057+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_MODIFY_LOCKED_STATUS",
"name":"Allow Locking of Quotes and Editing when Locked.",
"description":"Allow a user to Alter the Locked flag on a quote and also update any quote that is locked.",
"permissionGroupId":null,
"itemOrder":11,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":74,
"version":0,
"dateCreated":"2016-10-05T10:18:11.035+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_ALLOW_VIEW_TIME_FEE",
"name":"View Time and Fee in Quotes",
"description":"Allow users to view time and fee values in the Quote Add/Edit View",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":78,
"version":0,
"dateCreated":"2016-10-05T10:18:11.047+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"QUOTE_MODIFY_QUOTE_NUMBER",
"name":"Modify a Quote Number.",
"description":"Allow users to modify a Quote Number",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":76,
"version":0,
"dateCreated":"2016-10-05T10:18:11.044+0000",
"dateModified":null,
"destination":"Navigation_QUOTE_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Quote Search",
"description":"Can this user access the Quote Search tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":77,
"version":0,
"dateCreated":"2016-10-05T10:18:11.046+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CAN_EDIT_QUOTES_NOT_OWNED_BY_USER",
"name":"Edit Quotes when no the owner.",
"description":"Allow users to edit or delete a quote where he is not the owner.",
"permissionGroupId":null,
"itemOrder":12,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:10.951+0000",
"dateModified":null,
"name":"Jobs",
"groupedPermissions":[
{
"id":39,
"version":0,
"dateCreated":"2016-10-05T10:18:10.955+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_RESTRICT_COSTS",
"name":"Access to the Cost Related Job Information",
"description":"Allow visibility of the Job Financial Analysis Panel,
Time Cost Column,
Time Markup Column and Cost column in Timesheet Search",
"permissionGroupId":null,
"itemOrder":31,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":68,
"version":0,
"dateCreated":"2016-10-05T10:18:11.011+0000",
"dateModified":null,
"destination":"Navigation_JOB_SCHEDULE",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Job Schedule",
"description":"Can this user access the Job Schedule tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":70,
"version":0,
"dateCreated":"2016-10-05T10:18:11.014+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_MODIFY",
"name":"Modify in Job Add/Edit",
"description":"Allow users to edit or delete existing jobs in the Job Add/Edit View",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":41,
"version":0,
"dateCreated":"2016-10-05T10:18:10.958+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_SCHEDULE_MODIFY",
"name":"Modify in Job Schedule",
"description":"Allow users to Modify Data in the Job Schedule View",
"permissionGroupId":null,
"itemOrder":10,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":67,
"version":0,
"dateCreated":"2016-10-05T10:18:11.008+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_ACCESS_BILLING_TAB",
"name":"Access to the Job Add/Edit Billing sub-tab",
"description":"Allow users to access the Billing Sub Tab in the Job Add/Edit view",
"permissionGroupId":null,
"itemOrder":12,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:10.972+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_CHANGE_DEADLINE_DATES",
"name":"Change Internal/External Job Deadlines",
"description":"Allow users to modify the Internal or External Deadline Date once the Job has been created in the Job Add/Edit View",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":69,
"version":0,
"dateCreated":"2016-10-05T10:18:11.012+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ALLOW_LINKING_TO_WAITING_JOB",
"name":"Allow linking to an external job from waiting list.",
"description":"Allow user to link/unlink Traffic Job to an external job from the Waiting Job List",
"permissionGroupId":null,
"itemOrder":21,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":45,
"version":0,
"dateCreated":"2016-10-05T10:18:10.965+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_EXTERNAL_CODE_MODIFY",
"name":"Allow modifications of Job's external codes.",
"description":"Allow user to change Job's external codes",
"permissionGroupId":null,
"itemOrder":22,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:18:11.001+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_TEMPLATE_MODIFY",
"name":"Modify Job Template Structure",
"description":"Allow users to Rename or Delete Templates and Groups from the Job Template area",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":50,
"version":0,
"dateCreated":"2016-10-05T10:18:10.975+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_TEMPLATE_CREATE",
"name":"Create Template From Job",
"description":"Allow users to create a Job Templates",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":44,
"version":0,
"dateCreated":"2016-10-05T10:18:10.963+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_MODIFY_VALUE_DERIVED_FROM_CHARGEBAND",
"name":"Edit values derived from charge band.",
"description":"Allow user to modify values derived from charge band.",
"permissionGroupId":null,
"itemOrder":30,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":65,
"version":0,
"dateCreated":"2016-10-05T10:18:11.005+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ACCESS_EXPENSES",
"name":"View/add new expenses.",
"description":"Allow user to view and add new expenses.",
"permissionGroupId":null,
"itemOrder":19,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:18:10.985+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_POPULATE_BASELINE_FROM_ESTIMATE",
"name":"Populate baseline values from Job estimates",
"description":"Allow user to populate baseline values from Job estimates",
"permissionGroupId":null,
"itemOrder":25,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:18:10.962+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_SEARCH_ALLOW_FINANCIALS",
"name":"View Financial columns in Job Search view",
"description":"Allow users to view Financial columns in Job Search view",
"permissionGroupId":null,
"itemOrder":14,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:18:10.995+0000",
"dateModified":null,
"destination":"Navigation_INVOICE_EXPORT",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Invoice Export",
"description":"Can this user access the Invoice Export tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:18:10.983+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"INVOICE_MODIFY_INVOICE",
"name":"Modify Invoice Properties (e.g. Number).",
"description":"Allow users to modify a Invoice Number after it has been issued - BE VERY CAREFUL WITH THIS FEATURE",
"permissionGroupId":null,
"itemOrder":16,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:18:10.993+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_DELETE_LINE_IF_BASELINED",
"name":"Allow deleting of baselined Time lines",
"description":"Allow user to delete Time lines if the baseline values are not empty",
"permissionGroupId":null,
"itemOrder":27,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:18:10.981+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_CAN_EDIT_METADATA",
"name":"Allow editing of Job details.",
"description":"Allow user to edit the Job details. When this permission is disabled Job details are read only.",
"permissionGroupId":null,
"itemOrder":28,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":46,
"version":0,
"dateCreated":"2016-10-05T10:18:10.967+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ACCESS_PURCHASES",
"name":"View purchases.",
"description":"Allow user to view purchases.",
"permissionGroupId":null,
"itemOrder":20,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":62,
"version":0,
"dateCreated":"2016-10-05T10:18:10.999+0000",
"dateModified":null,
"destination":"Navigation_JOB_ADD",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Linking to Add a Job",
"description":"Can this user access the Linking to Add a Job tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":42,
"version":0,
"dateCreated":"2016-10-05T10:18:10.960+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CAN_EDIT_JOBS_NOT_OWNED_BY_USER",
"name":"Edit Jobs when not the owner.",
"description":"Allow users to edit or delete a Job where he is not the owner.",
"permissionGroupId":null,
"itemOrder":29,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":48,
"version":0,
"dateCreated":"2016-10-05T10:18:10.971+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ADD_EDIT_ALLOW_SYSTEM_STATUS_COMPLETE",
"name":"Enable Transition in to or Out of Job System Status of COMPLETE.",
"description":"Allow users to Transition Into a System Status of COMPLETE or out of a COMPLETE Job",
"permissionGroupId":null,
"itemOrder":18,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":60,
"version":0,
"dateCreated":"2016-10-05T10:18:10.996+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"INVOICE_DELETE",
"name":"Delete Issued Invoice",
"description":"Allow users to delete an issued Invoice",
"permissionGroupId":null,
"itemOrder":17,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:18:10.977+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"OUTPUT_JOB_REPORT_DOCUMENT",
"name":"Open Job Report in Job Add/Edit view",
"description":"Allow users to open Job Report document in the Add/Edit Job view",
"permissionGroupId":null,
"itemOrder":13,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":66,
"version":0,
"dateCreated":"2016-10-05T10:18:11.006+0000",
"dateModified":null,
"destination":"Navigation_TASK_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Task Search",
"description":"Can this user access the Task Search tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":40,
"version":0,
"dateCreated":"2016-10-05T10:18:10.957+0000",
"dateModified":null,
"destination":"Navigation_JOB_EDIT",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Job Add/Edit",
"description":"Can this user access the Job Add/Edit tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":47,
"version":0,
"dateCreated":"2016-10-05T10:18:10.969+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_POPULATE_ESTIMATE_FROM_BASELINE",
"name":"Populate Job estimate values from baseline",
"description":"Allow user to populate Job estimate values from baseline",
"permissionGroupId":null,
"itemOrder":26,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:18:10.953+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_ALLOW_EDIT_IF_SYSTEM_STATUS_COMPLETE",
"name":"Allow modifications of complete Job.",
"description":"Allow user to change Job which has Status set to Complete",
"permissionGroupId":null,
"itemOrder":23,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:18:10.979+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_MODIFY_JOB_NUMBER",
"name":"Modify a Job Number.",
"description":"Allow users to modify a Job Number",
"permissionGroupId":null,
"itemOrder":15,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:10.988+0000",
"dateModified":null,
"destination":"Navigation_JOB_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Job Search",
"description":"Can this user access the Job Search tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:18:10.998+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_EDIT_JOB_OWNER",
"name":"Allow editing of the Job Owner field.",
"description":"Allow user to edit the Job Owner field after the Job has been created",
"permissionGroupId":null,
"itemOrder":24,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:18:10.991+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"INVOICE_SEARCH_EXPORTED_FLAG_MODIFY",
"name":"Modify the exported flag in Invoice Search",
"description":"Allow users to modify the Exported Flag on the Invoice Search View.",
"permissionGroupId":null,
"itemOrder":32,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":64,
"version":0,
"dateCreated":"2016-10-05T10:18:11.003+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ALLOW_EXPENSE_DELETION",
"name":"Delete expenses",
"description":"Allow users to delete expenses from the job add/edit expense grid",
"permissionGroupId":null,
"itemOrder":11,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:10.922+0000",
"dateModified":null,
"name":"Contacts",
"groupedPermissions":[
{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:18:10.932+0000",
"dateModified":null,
"destination":"Navigation_VIEW_EMPLOYEE",
"permissionAction":"ACCESS",
"customAction":null,
"name":"View Employee",
"description":"Can this user access the View Employee tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:18:10.938+0000",
"dateModified":null,
"destination":"Navigation_VIEW_COMPANY",
"permissionAction":"ACCESS",
"customAction":null,
"name":"View Company",
"description":"Can this user access the View Company tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:18:10.936+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CONTACT_MODIFY",
"name":"Modify Contact Data",
"description":"Allow users to Edit or Delete Companies/Address/Employees from the Contacts Area",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":37,
"version":0,
"dateCreated":"2016-10-05T10:18:10.940+0000",
"dateModified":null,
"destination":"Navigation_VIEW_LOCATION",
"permissionAction":"ACCESS",
"customAction":null,
"name":"View Address",
"description":"Can this user access the View Address tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:18:10.926+0000",
"dateModified":null,
"destination":"Navigation_ORG_CHART",
"permissionAction":"ACCESS",
"customAction":null,
"name":"OrgChart",
"description":"Can this user access the OrgChart tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:10.930+0000",
"dateModified":null,
"destination":"Navigation_CONTACTS_SHEET",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Contacts Sheet",
"description":"Can this user access the Contacts Sheet tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:18:10.934+0000",
"dateModified":null,
"destination":"Navigation_CONTACTS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"Contacts",
"description":"Can this user access the Contacts tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:18:10.928+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CRM_CONTACTS_SHEET_EXPORT",
"name":"Export From Contacts Sheet",
"description":"Allow users to Export the Contacts Sheet to file",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:10.887+0000",
"dateModified":null,
"name":"My Traffic",
"groupedPermissions":[
{
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:18:10.896+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"MY_CALENDAR_EDIT_BILLABLE_TIME",
"name":"User can alter the Billable Flag for Calendar timesheet entries",
"description":"Allow the user to change timesheet entries to be billable or not based when created on My Calendar.",
"permissionGroupId":null,
"itemOrder":11,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:10.913+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"VIEW_OTHER_PEOPLE_CALENDARS",
"name":"View other people's calendars",
"description":"Allow users to view other people's calendars",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:10.893+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"MY_CALENDAR_SEARCH_BILLABLE_TASKS",
"name":"Show Billable (Non Inhouse) Jobs in my calendar in the Task Search and All Tasks Tabs",
"description":"If this permission is turned off,
then Billable (Non Inhouse) Jobs are filtered from these two areas",
"permissionGroupId":null,
"itemOrder":13,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:18:10.912+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_TIMESHEETS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Timesheets",
"description":"Can this user access the My Timesheets tab?",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:18:10.897+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_EXPENSE_SHEETS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Expense Sheets",
"description":"Can this user access the My Expense Sheets tab?",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:10.889+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"CALENDAR_ALLOCATIONS_MOVE",
"name":"Move Calendar Allocations",
"description":"Allow users to move their own Calendar Allocations",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:18:10.902+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SUBMIT_OWN_SUBMITTER",
"name":"Alter Submitted Status of Time where you are the Submitter",
"description":"Allows a user to alter the submitted status of any timesheet entries where they are the Submitter",
"permissionGroupId":null,
"itemOrder":12,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:10.891+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_QUOTES",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Quotes",
"description":"Can this user access the My Quotes tab?",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:18:10.895+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_CALENDAR_ALL_TASKS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"All Tasks",
"description":"Can this user access the All Tasks tab?",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:10.898+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_MY_SETTINGS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Settings",
"description":"Can this user access the My Settings tab?",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:10.906+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_CALENDAR",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Calendar",
"description":"Can this user access the My Calendar tab?",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:18:10.904+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_MY_TIMESHEET_SEARCH",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Timesheet Search",
"description":"Can this user access the My Timesheet Search tab?",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:18:10.907+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"SELF_ALLOCATION_OF_WORK",
"name":"User can allocate work to themselves",
"description":"Allow the user to drag work onto their own calendar in the My Calendar view.",
"permissionGroupId":null,
"itemOrder":10,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:18:10.909+0000",
"dateModified":null,
"destination":"Navigation_MY_TRAFFIC_JOBS",
"permissionAction":"ACCESS",
"customAction":null,
"name":"My Jobs",
"description":"Can this user access the My Jobs tab?",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:10.849+0000",
"dateModified":null,
"name":"Document Storage",
"groupedPermissions":[
{
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:18:10.862+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_CAN_ACCESS_RESTRICTED",
"name":"Restricted Access",
"description":"Allow users to access restricted files",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:10.860+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_ACCESS_CREATED_BY_OTHERS",
"name":"Can Access Files Added By Others",
"description":"Allow users Access files uploaded by others",
"permissionGroupId":null,
"itemOrder":7,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:18:10.873+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_CAN_MODIFY_READ_ONLY",
"name":"Can Modify Read Only Files",
"description":"Allow users to Update or Delete files flagged as ReadOnly",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:10.872+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_VIEW_LIBRARY_FILES",
"name":"Can View Library Files",
"description":"Allow users to view Files Added as Library files",
"permissionGroupId":null,
"itemOrder":5,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:18:10.863+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_CREATE",
"name":"Create Documents",
"description":"Allows users to create documents. To allow users to create restricted documents,
'Restricted Access' should be granted",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:18:10.870+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_DELETE",
"name":"Delete Documents",
"description":"Allows users to delete documents. To allow users to delete restricted documents,
'Restricted Access' should be granted",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:10.867+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_READ",
"name":"View Documents",
"description":"Users can view document storage from anywhere in the application.",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:18:10.869+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_MODIFY_LIBRARY_FILES",
"name":"Can Modify Library Files",
"description":"Allow users to Update or Delete files added as Library files",
"permissionGroupId":null,
"itemOrder":6,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:10.858+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_VIEW_ANNOTATIONS",
"name":"Can View Proofs",
"description":"Allow users to retrieve hypelinks to existing annotations of stored documents",
"permissionGroupId":null,
"itemOrder":8,
"uiHidden":false,
"dependsOnDocumentStore":true
},
{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:10.865+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"DOCUMENT_STORAGE_CREATE_ANNOTATIONS",
"name":"Can Create Proofs",
"description":"Allow users to create annotations from stored documents",
"permissionGroupId":null,
"itemOrder":9,
"uiHidden":false,
"dependsOnDocumentStore":true
}
]
},
{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.admin.PermissionGroupTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:10.797+0000",
"dateModified":null,
"name":"Application Wide Permissions",
"groupedPermissions":[
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:10.800+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"JOB_CREATE",
"name":"Create A Job From Anywhere in the Application",
"description":"Allows a user to Create a new Job. This will apply to all areas of the application where creating a job is possible.",
"permissionGroupId":null,
"itemOrder":0,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:10.805+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_ALLOW_DUPLICATES",
"name":"Turn Off Auto-Rejection of duplicate timesheet entries",
"description":"If a user does not have this permission,
then non-signed off duplicate timesheet entries will be auto-rejected whenever they are created or updated.",
"permissionGroupId":null,
"itemOrder":4,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:10.806+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_SHOW_AUDIT_INFORMATION",
"name":"Allow Access to the Time Audit Information Dialog",
"description":"Allows a User to Open the Time Audit Information Dialog.",
"permissionGroupId":null,
"itemOrder":1,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:10.803+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"TIME_DISABLE_LOCKED_TIME",
"name":"Disable Locked Time Ranges",
"description":"Locked Time restrictions will not apply to this User",
"permissionGroupId":null,
"itemOrder":2,
"uiHidden":false,
"dependsOnDocumentStore":false
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:10.809+0000",
"dateModified":null,
"destination":null,
"permissionAction":"CUSTOM",
"customAction":"ACCESS_RESOURCE_COSTING",
"name":"Allow access to resource costing",
"description":"Allows the user to view time and resource related financial values across the application.",
"permissionGroupId":null,
"itemOrder":3,
"uiHidden":false,
"dependsOnDocumentStore":false
}
]
}
]
Returns currency objects.
https://api.sohnar.com/TrafficLiteServer/openapi/application/currency
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/application/currency HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/application/currency HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:18 GMT
<set>
<currency id="158" version="0">
<code>UGX</code>
<intCode>800</intCode>
<exponent>0.0</exponent>
<name>Uganda shilling</name>
<symbol>Ugx</symbol>
</currency>
<currency id="92" version="0">
<code>PLN</code>
<intCode>985</intCode>
<exponent>2.0</exponent>
<name>Zloty</name>
<symbol>zł</symbol>
</currency>
<currency id="59" version="0">
<code>INR</code>
<intCode>356</intCode>
<exponent>2.0</exponent>
<name>Indian rupee</name>
<symbol>
</symbol>
</currency>
<currency id="150" version="0">
<code>KRW</code>
<intCode>410</intCode>
<exponent>0.0</exponent>
<name>South Korean won</name>
<symbol>₩</symbol>
</currency>
<currency id="84" version="0">
<code>NOK</code>
<intCode>578</intCode>
<exponent>2.0</exponent>
<name>Norwegian krone</name>
<symbol>kr</symbol>
</currency>
<currency id="146" version="0">
<code>JPY</code>
<intCode>392</intCode>
<exponent>0.0</exponent>
<name>Japanese yen</name>
<symbol>¥</symbol>
</currency>
<currency id="18" version="0">
<code>BGN</code>
<intCode>975</intCode>
<exponent>2.0</exponent>
<name>Bulgarian lev</name>
<symbol>лв</symbol>
</currency>
<currency id="113" version="0">
<code>TTD</code>
<intCode>780</intCode>
<exponent>2.0</exponent>
<name>Trinidad and Tobago dollar</name>
<symbol>TT$</symbol>
</currency>
<currency id="142" version="0">
<code>IDR</code>
<intCode>360</intCode>
<exponent>0.0</exponent>
<name>Rupiah</name>
<symbol>Rp</symbol>
</currency>
<currency id="138" version="0">
<code>COP</code>
<intCode>170</intCode>
<exponent>0.0</exponent>
<name>Colombian peso</name>
<symbol>$</symbol>
</currency>
<currency id="101" version="0">
<code>SEK</code>
<intCode>752</intCode>
<exponent>2.0</exponent>
<name>Swedish krona</name>
<symbol>kr</symbol>
</currency>
<currency id="68" version="0">
<code>LTL</code>
<intCode>440</intCode>
<exponent>2.0</exponent>
<name>Lithuanian litas</name>
<symbol>Lt</symbol>
</currency>
<currency id="130" version="0">
<code>TWD</code>
<intCode>901</intCode>
<exponent>1.0</exponent>
<name>New Taiwan dollar</name>
<symbol>NT$</symbol>
</currency>
<currency id="97" version="0">
<code>SAR</code>
<intCode>682</intCode>
<exponent>2.0</exponent>
<name>Saudi riyal</name>
<symbol>﷼</symbol>
</currency>
<currency id="31" version="0">
<code>CHF</code>
<intCode>756</intCode>
<exponent>2.0</exponent>
<name>Swiss franc</name>
<symbol>CHF</symbol>
</currency>
<currency id="159" version="0">
<code>VND</code>
<intCode>704</intCode>
<exponent>0.0</exponent>
<name>Vietnamese dong</name>
<symbol>₫</symbol>
</currency>
<currency id="93" version="0">
<code>QAR</code>
<intCode>634</intCode>
<exponent>2.0</exponent>
<name>Qatari rial</name>
<symbol>﷼</symbol>
</currency>
<currency id="23" version="0">
<code>BRL</code>
<intCode>986</intCode>
<exponent>2.0</exponent>
<name>Brazilian real</name>
<symbol>R$</symbol>
</currency>
<currency id="147" version="0">
<code>KHR</code>
<intCode>116</intCode>
<exponent>0.0</exponent>
<name>Cambodian riel</name>
<symbol>៛</symbol>
</currency>
<currency id="48" version="0">
<code>GBP</code>
<intCode>826</intCode>
<exponent>2.0</exponent>
<name>Pound sterling</name>
<symbol>£</symbol>
</currency>
<currency id="77" version="0">
<code>MXN</code>
<intCode>484</intCode>
<exponent>2.0</exponent>
<name>Mexican peso</name>
<symbol>$</symbol>
</currency>
<currency id="11" version="0">
<code>ARS</code>
<intCode>32</intCode>
<exponent>2.0</exponent>
<name>Argentine peso</name>
<symbol>$</symbol>
</currency>
<currency id="7" version="0">
<code>AED</code>
<intCode>784</intCode>
<exponent>2.0</exponent>
<name>United Arab Emirates dirham</name>
</currency>
<currency id="102" version="0">
<code>SGD</code>
<intCode>702</intCode>
<exponent>2.0</exponent>
<name>Singapore dollar</name>
<symbol>$</symbol>
</currency>
<currency id="69" version="0">
<code>LVL</code>
<intCode>428</intCode>
<exponent>2.0</exponent>
<name>Latvian lats</name>
<symbol>Ls</symbol>
</currency>
<currency id="3" version="0">
<code>KWD</code>
<intCode>414</intCode>
<exponent>3.0</exponent>
<name>Kuwaiti dinar</name>
<symbol>د.ك</symbol>
</currency>
<currency id="127" version="0">
<code>CNY</code>
<intCode>156</intCode>
<exponent>1.0</exponent>
<name>Renminbi</name>
<symbol>¥</symbol>
</currency>
<currency id="94" version="0">
<code>RON</code>
<intCode>946</intCode>
<exponent>2.0</exponent>
<name>Romanian new leu</name>
<symbol>lei</symbol>
</currency>
<currency id="28" version="0">
<code>CAD</code>
<intCode>124</intCode>
<exponent>2.0</exponent>
<name>Canadian dollar</name>
<symbol>$</symbol>
</currency>
<currency id="90" version="0">
<code>PHP</code>
<intCode>608</intCode>
<exponent>2.0</exponent>
<name>Philippine peso</name>
<symbol>₱</symbol>
</currency>
<currency id="152" version="0">
<code>LBP</code>
<intCode>422</intCode>
<exponent>0.0</exponent>
<name>Lebanese pound</name>
<symbol>£</symbol>
</currency>
<currency id="86" version="0">
<code>NZD</code>
<intCode>554</intCode>
<exponent>2.0</exponent>
<name>New Zealand dollar</name>
<symbol>$</symbol>
</currency>
<currency id="82" version="0">
<code>NGN</code>
<intCode>566</intCode>
<exponent>2.0</exponent>
<name>Naira</name>
<symbol>₦</symbol>
</currency>
<currency id="45" version="0">
<code>EUR</code>
<intCode>978</intCode>
<exponent>2.0</exponent>
<name>Euro</name>
<symbol>€</symbol>
</currency>
<currency id="12" version="0">
<code>AUD</code>
<intCode>36</intCode>
<exponent>2.0</exponent>
<name>Australian dollar</name>
<symbol>$</symbol>
</currency>
<currency id="74" version="0">
<code>MUR</code>
<intCode>480</intCode>
<exponent>2.0</exponent>
<name>Mauritius rupee</name>
<symbol>₨</symbol>
</currency>
<currency id="70" version="0">
<code>MAD</code>
<intCode>504</intCode>
<exponent>2.0</exponent>
<name>Moroccan dirham</name>
</currency>
<currency id="37" version="0">
<code>CZK</code>
<intCode>203</intCode>
<exponent>2.0</exponent>
<name>Czech Koruna</name>
<symbol>Kč</symbol>
</currency>
<currency id="128" version="0">
<code>HKD</code>
<intCode>344</intCode>
<exponent>1.0</exponent>
<name>Hong Kong dollar</name>
<symbol>$</symbol>
</currency>
<currency id="124" version="0">
<code>ZAR</code>
<intCode>710</intCode>
<exponent>2.0</exponent>
<name>South African rand</name>
<symbol>R</symbol>
</currency>
<currency id="58" version="0">
<code>ILS</code>
<intCode>376</intCode>
<exponent>2.0</exponent>
<name>Israeli new sheqel</name>
<symbol>₪</symbol>
</currency>
<currency id="116" version="0">
<code>USD</code>
<intCode>840</intCode>
<exponent>2.0</exponent>
<name>US dollar</name>
<symbol>$</symbol>
</currency>
<currency id="50" version="0">
<code>GHS</code>
<intCode>936</intCode>
<exponent>2.0</exponent>
<name>Ghana Cedi</name>
<symbol>GH₵</symbol>
</currency>
<currency id="145" version="0">
<code>ISK</code>
<intCode>352</intCode>
<exponent>0.0</exponent>
<name>Iceland krona</name>
<symbol>kr</symbol>
</currency>
<currency id="112" version="0">
<code>TRY</code>
<intCode>949</intCode>
<exponent>2.0</exponent>
<name>Turkish lira</name>
<symbol>TL</symbol>
</currency>
<currency id="79" version="0">
<code>MYR</code>
<intCode>458</intCode>
<exponent>2.0</exponent>
<name>Malaysian ringgit</name>
<symbol>RM</symbol>
</currency>
<currency id="141" version="0">
<code>HUF</code>
<intCode>348</intCode>
<exponent>0.0</exponent>
<name>Forint</name>
<symbol>Ft</symbol>
</currency>
<currency id="108" version="0">
<code>THB</code>
<intCode>764</intCode>
<exponent>2.0</exponent>
<name>Baht</name>
<symbol>฿</symbol>
</currency>
<currency id="42" version="0">
<code>EGP</code>
<intCode>818</intCode>
<exponent>2.0</exponent>
<name>Egyptian pound</name>
<symbol>£</symbol>
</currency>
<currency id="137" version="0">
<code>CLP</code>
<intCode>152</intCode>
<exponent>0.0</exponent>
<name>Chilean peso</name>
<symbol>$</symbol>
</currency>
<currency id="71" version="0">
<code>MDL</code>
<intCode>498</intCode>
<exponent>2.0</exponent>
<name>Moldovan leu</name>
</currency>
<currency id="38" version="0">
<code>DKK</code>
<intCode>208</intCode>
<exponent>2.0</exponent>
<name>Danish krone</name>
<symbol>kr</symbol>
</currency>
<currency id="5" version="0">
<code>OMR</code>
<intCode>512</intCode>
<exponent>3.0</exponent>
<name>Omani rial</name>
<symbol>﷼</symbol>
</currency>
<currency id="96" version="0">
<code>RUB</code>
<intCode>643</intCode>
<exponent>2.0</exponent>
<name>Russian rouble</name>
<symbol>руб</symbol>
</currency>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:18 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":158,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"UGX",
"intCode":800,
"exponent":0.0,
"name":"Uganda shilling",
"symbol":"Ugx"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":92,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"PLN",
"intCode":985,
"exponent":2.0,
"name":"Zloty",
"symbol":"zł"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":59,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"INR",
"intCode":356,
"exponent":2.0,
"name":"Indian rupee",
"symbol":""
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":150,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"KRW",
"intCode":410,
"exponent":0.0,
"name":"South Korean won",
"symbol":"₩"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":84,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"NOK",
"intCode":578,
"exponent":2.0,
"name":"Norwegian krone",
"symbol":"kr"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":146,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"JPY",
"intCode":392,
"exponent":0.0,
"name":"Japanese yen",
"symbol":"¥"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":18,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"BGN",
"intCode":975,
"exponent":2.0,
"name":"Bulgarian lev",
"symbol":"лв"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":113,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"TTD",
"intCode":780,
"exponent":2.0,
"name":"Trinidad and Tobago dollar",
"symbol":"TT$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":142,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"IDR",
"intCode":360,
"exponent":0.0,
"name":"Rupiah",
"symbol":"Rp"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":138,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"COP",
"intCode":170,
"exponent":0.0,
"name":"Colombian peso",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":101,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"SEK",
"intCode":752,
"exponent":2.0,
"name":"Swedish krona",
"symbol":"kr"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":68,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"LTL",
"intCode":440,
"exponent":2.0,
"name":"Lithuanian litas",
"symbol":"Lt"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":130,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"TWD",
"intCode":901,
"exponent":1.0,
"name":"New Taiwan dollar",
"symbol":"NT$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":97,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"SAR",
"intCode":682,
"exponent":2.0,
"name":"Saudi riyal",
"symbol":"﷼"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":31,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"CHF",
"intCode":756,
"exponent":2.0,
"name":"Swiss franc",
"symbol":"CHF"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":159,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"VND",
"intCode":704,
"exponent":0.0,
"name":"Vietnamese dong",
"symbol":"₫"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":93,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"QAR",
"intCode":634,
"exponent":2.0,
"name":"Qatari rial",
"symbol":"﷼"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":23,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"BRL",
"intCode":986,
"exponent":2.0,
"name":"Brazilian real",
"symbol":"R$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":147,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"KHR",
"intCode":116,
"exponent":0.0,
"name":"Cambodian riel",
"symbol":"៛"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":48,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"GBP",
"intCode":826,
"exponent":2.0,
"name":"Pound sterling",
"symbol":"£"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":77,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"MXN",
"intCode":484,
"exponent":2.0,
"name":"Mexican peso",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":11,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"ARS",
"intCode":32,
"exponent":2.0,
"name":"Argentine peso",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":7,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"AED",
"intCode":784,
"exponent":2.0,
"name":"United Arab Emirates dirham",
"symbol":null
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":102,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"SGD",
"intCode":702,
"exponent":2.0,
"name":"Singapore dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":69,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"LVL",
"intCode":428,
"exponent":2.0,
"name":"Latvian lats",
"symbol":"Ls"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":3,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"KWD",
"intCode":414,
"exponent":3.0,
"name":"Kuwaiti dinar",
"symbol":"د.ك"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":127,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"CNY",
"intCode":156,
"exponent":1.0,
"name":"Renminbi",
"symbol":"¥"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":94,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"RON",
"intCode":946,
"exponent":2.0,
"name":"Romanian new leu",
"symbol":"lei"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":28,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"CAD",
"intCode":124,
"exponent":2.0,
"name":"Canadian dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":90,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"PHP",
"intCode":608,
"exponent":2.0,
"name":"Philippine peso",
"symbol":"₱"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":152,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"LBP",
"intCode":422,
"exponent":0.0,
"name":"Lebanese pound",
"symbol":"£"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":86,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"NZD",
"intCode":554,
"exponent":2.0,
"name":"New Zealand dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":82,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"NGN",
"intCode":566,
"exponent":2.0,
"name":"Naira",
"symbol":"₦"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":45,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"EUR",
"intCode":978,
"exponent":2.0,
"name":"Euro",
"symbol":"€"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":12,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"AUD",
"intCode":36,
"exponent":2.0,
"name":"Australian dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":74,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"MUR",
"intCode":480,
"exponent":2.0,
"name":"Mauritius rupee",
"symbol":"₨"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":70,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"MAD",
"intCode":504,
"exponent":2.0,
"name":"Moroccan dirham",
"symbol":null
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":37,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"CZK",
"intCode":203,
"exponent":2.0,
"name":"Czech Koruna",
"symbol":"Kč"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":128,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"HKD",
"intCode":344,
"exponent":1.0,
"name":"Hong Kong dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":124,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"ZAR",
"intCode":710,
"exponent":2.0,
"name":"South African rand",
"symbol":"R"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":58,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"ILS",
"intCode":376,
"exponent":2.0,
"name":"Israeli new sheqel",
"symbol":"₪"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":116,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"USD",
"intCode":840,
"exponent":2.0,
"name":"US dollar",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":50,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"GHS",
"intCode":936,
"exponent":2.0,
"name":"Ghana Cedi",
"symbol":"GH₵"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":145,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"ISK",
"intCode":352,
"exponent":0.0,
"name":"Iceland krona",
"symbol":"kr"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":112,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"TRY",
"intCode":949,
"exponent":2.0,
"name":"Turkish lira",
"symbol":"TL"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":79,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"MYR",
"intCode":458,
"exponent":2.0,
"name":"Malaysian ringgit",
"symbol":"RM"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":141,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"HUF",
"intCode":348,
"exponent":0.0,
"name":"Forint",
"symbol":"Ft"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":108,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"THB",
"intCode":764,
"exponent":2.0,
"name":"Baht",
"symbol":"฿"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":42,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"EGP",
"intCode":818,
"exponent":2.0,
"name":"Egyptian pound",
"symbol":"£"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":137,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"CLP",
"intCode":152,
"exponent":0.0,
"name":"Chilean peso",
"symbol":"$"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":71,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"MDL",
"intCode":498,
"exponent":2.0,
"name":"Moldovan leu",
"symbol":null
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":38,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"DKK",
"intCode":208,
"exponent":2.0,
"name":"Danish krone",
"symbol":"kr"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":5,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"OMR",
"intCode":512,
"exponent":3.0,
"name":"Omani rial",
"symbol":"﷼"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.CurrencyTO",
"id":96,
"version":0,
"dateCreated":null,
"dateModified":null,
"code":"RUB",
"intCode":643,
"exponent":2.0,
"name":"Russian rouble",
"symbol":"руб"
}
]
Return the Timezones used by the application
https://api.sohnar.com/TrafficLiteServer/openapi/application/timezone
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/application/timezone HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/application/timezone HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:18 GMT
<set>
<timeZone id="63" version="0" dateCreated="2016-10-05T12:18:08.510+02:00">
<stringId>America/Argentina/Cordoba</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="30" version="0" dateCreated="2016-10-05T12:18:08.432+02:00">
<stringId>Africa/Kigali</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="592" version="0" dateCreated="2016-10-05T12:18:09.474+02:00">
<stringId>MST</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="559" version="0" dateCreated="2016-10-05T12:18:09.415+02:00">
<stringId>SystemV/CST6</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="526" version="0" dateCreated="2016-10-05T12:18:09.352+02:00">
<stringId>Pacific/Johnston</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="493" version="0" dateCreated="2016-10-05T12:18:09.272+02:00">
<stringId>Indian/Reunion</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="460" version="0" dateCreated="2016-10-05T12:18:09.209+02:00">
<stringId>Europe/Skopje</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="427" version="0" dateCreated="2016-10-05T12:18:09.157+02:00">
<stringId>Europe/Busingen</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="394" version="0" dateCreated="2016-10-05T12:18:09.101+02:00">
<stringId>Etc/GMT+8</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="361" version="0" dateCreated="2016-10-05T12:18:09.026+02:00">
<stringId>Brazil/DeNoronha</stringId>
<offsetString>-200</offsetString>
</timeZone>
<timeZone id="328" version="0" dateCreated="2016-10-05T12:18:08.961+02:00">
<stringId>Atlantic/Cape_Verde</stringId>
<offsetString>-100</offsetString>
</timeZone>
<timeZone id="295" version="0" dateCreated="2016-10-05T12:18:08.913+02:00">
<stringId>Asia/Pyongyang</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="262" version="0" dateCreated="2016-10-05T12:18:08.874+02:00">
<stringId>Asia/Ho_Chi_Minh</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="229" version="0" dateCreated="2016-10-05T12:18:08.816+02:00">
<stringId>Antarctica/Troll</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="196" version="0" dateCreated="2016-10-05T12:18:08.763+02:00">
<stringId>America/Sao_Paulo</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="163" version="0" dateCreated="2016-10-05T12:18:08.712+02:00">
<stringId>America/Monterrey</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="130" version="0" dateCreated="2016-10-05T12:18:08.653+02:00">
<stringId>America/Indiana/Tell_City</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="97" version="0" dateCreated="2016-10-05T12:18:08.586+02:00">
<stringId>America/Cordoba</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="64" version="0" dateCreated="2016-10-05T12:18:08.512+02:00">
<stringId>America/Argentina/Jujuy</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="31" version="0" dateCreated="2016-10-05T12:18:08.434+02:00">
<stringId>Africa/Kinshasa</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="593" version="0" dateCreated="2016-10-05T12:18:09.475+02:00">
<stringId>ACT</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="560" version="0" dateCreated="2016-10-05T12:18:09.417+02:00">
<stringId>SystemV/CST6CDT</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="527" version="0" dateCreated="2016-10-05T12:18:09.354+02:00">
<stringId>Pacific/Kiritimati</stringId>
<offsetString>+1400</offsetString>
</timeZone>
<timeZone id="494" version="0" dateCreated="2016-10-05T12:18:09.273+02:00">
<stringId>Iran</stringId>
<offsetString>+0330</offsetString>
</timeZone>
<timeZone id="461" version="0" dateCreated="2016-10-05T12:18:09.212+02:00">
<stringId>Europe/Sofia</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="428" version="0" dateCreated="2016-10-05T12:18:09.159+02:00">
<stringId>Europe/Chisinau</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="395" version="0" dateCreated="2016-10-05T12:18:09.104+02:00">
<stringId>Etc/GMT+9</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="362" version="0" dateCreated="2016-10-05T12:18:09.028+02:00">
<stringId>Brazil/East</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="329" version="0" dateCreated="2016-10-05T12:18:08.963+02:00">
<stringId>Atlantic/Faeroe</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="296" version="0" dateCreated="2016-10-05T12:18:08.914+02:00">
<stringId>Asia/Qatar</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="263" version="0" dateCreated="2016-10-05T12:18:08.876+02:00">
<stringId>Asia/Hong_Kong</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="230" version="0" dateCreated="2016-10-05T12:18:08.818+02:00">
<stringId>Antarctica/Vostok</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="197" version="0" dateCreated="2016-10-05T12:18:08.764+02:00">
<stringId>America/Scoresbysund</stringId>
<offsetString>-100</offsetString>
</timeZone>
<timeZone id="164" version="0" dateCreated="2016-10-05T12:18:08.714+02:00">
<stringId>America/Montevideo</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="131" version="0" dateCreated="2016-10-05T12:18:08.655+02:00">
<stringId>America/Indiana/Vevay</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="98" version="0" dateCreated="2016-10-05T12:18:08.587+02:00">
<stringId>America/Costa_Rica</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="65" version="0" dateCreated="2016-10-05T12:18:08.517+02:00">
<stringId>America/Argentina/La_Rioja</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="32" version="0" dateCreated="2016-10-05T12:18:08.436+02:00">
<stringId>Africa/Lagos</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="594" version="0" dateCreated="2016-10-05T12:18:09.477+02:00">
<stringId>AET</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="561" version="0" dateCreated="2016-10-05T12:18:09.419+02:00">
<stringId>SystemV/EST5</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="528" version="0" dateCreated="2016-10-05T12:18:09.356+02:00">
<stringId>Pacific/Kosrae</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="495" version="0" dateCreated="2016-10-05T12:18:09.278+02:00">
<stringId>Israel</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="462" version="0" dateCreated="2016-10-05T12:18:09.213+02:00">
<stringId>Europe/Stockholm</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="429" version="0" dateCreated="2016-10-05T12:18:09.160+02:00">
<stringId>Europe/Copenhagen</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="396" version="0" dateCreated="2016-10-05T12:18:09.106+02:00">
<stringId>Etc/GMT-0</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="363" version="0" dateCreated="2016-10-05T12:18:09.029+02:00">
<stringId>Brazil/West</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="330" version="0" dateCreated="2016-10-05T12:18:08.965+02:00">
<stringId>Atlantic/Faroe</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="297" version="0" dateCreated="2016-10-05T12:18:08.916+02:00">
<stringId>Asia/Qyzylorda</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="264" version="0" dateCreated="2016-10-05T12:18:08.877+02:00">
<stringId>Asia/Hovd</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="231" version="0" dateCreated="2016-10-05T12:18:08.820+02:00">
<stringId>Arctic/Longyearbyen</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="198" version="0" dateCreated="2016-10-05T12:18:08.767+02:00">
<stringId>America/Shiprock</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="165" version="0" dateCreated="2016-10-05T12:18:08.716+02:00">
<stringId>America/Montreal</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="132" version="0" dateCreated="2016-10-05T12:18:08.657+02:00">
<stringId>America/Indiana/Vincennes</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="99" version="0" dateCreated="2016-10-05T12:18:08.590+02:00">
<stringId>America/Creston</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="66" version="0" dateCreated="2016-10-05T12:18:08.519+02:00">
<stringId>America/Argentina/Mendoza</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="33" version="0" dateCreated="2016-10-05T12:18:08.438+02:00">
<stringId>Africa/Libreville</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="595" version="0" dateCreated="2016-10-05T12:18:09.479+02:00">
<stringId>AGT</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="562" version="0" dateCreated="2016-10-05T12:18:09.421+02:00">
<stringId>SystemV/EST5EDT</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="529" version="0" dateCreated="2016-10-05T12:18:09.357+02:00">
<stringId>Pacific/Kwajalein</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="496" version="0" dateCreated="2016-10-05T12:18:09.282+02:00">
<stringId>Jamaica</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="463" version="0" dateCreated="2016-10-05T12:18:09.216+02:00">
<stringId>Europe/Tallinn</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="430" version="0" dateCreated="2016-10-05T12:18:09.162+02:00">
<stringId>Europe/Dublin</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="397" version="0" dateCreated="2016-10-05T12:18:09.108+02:00">
<stringId>Etc/GMT-1</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="364" version="0" dateCreated="2016-10-05T12:18:09.031+02:00">
<stringId>CET</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="331" version="0" dateCreated="2016-10-05T12:18:08.966+02:00">
<stringId>Atlantic/Jan_Mayen</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="298" version="0" dateCreated="2016-10-05T12:18:08.917+02:00">
<stringId>Asia/Rangoon</stringId>
<offsetString>+0630</offsetString>
</timeZone>
<timeZone id="265" version="0" dateCreated="2016-10-05T12:18:08.878+02:00">
<stringId>Asia/Irkutsk</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="232" version="0" dateCreated="2016-10-05T12:18:08.821+02:00">
<stringId>Asia/Aden</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="199" version="0" dateCreated="2016-10-05T12:18:08.769+02:00">
<stringId>America/Sitka</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="166" version="0" dateCreated="2016-10-05T12:18:08.718+02:00">
<stringId>America/Montserrat</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="133" version="0" dateCreated="2016-10-05T12:18:08.659+02:00">
<stringId>America/Indiana/Winamac</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="100" version="0" dateCreated="2016-10-05T12:18:08.592+02:00">
<stringId>America/Cuiaba</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="67" version="0" dateCreated="2016-10-05T12:18:08.522+02:00">
<stringId>America/Argentina/Rio_Gallegos</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="34" version="0" dateCreated="2016-10-05T12:18:08.440+02:00">
<stringId>Africa/Lome</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="1" version="0" dateCreated="2016-10-05T12:18:08.319+02:00">
<stringId>Africa/Abidjan</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="596" version="0" dateCreated="2016-10-05T12:18:09.481+02:00">
<stringId>ART</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="563" version="0" dateCreated="2016-10-05T12:18:09.423+02:00">
<stringId>SystemV/HST10</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="530" version="0" dateCreated="2016-10-05T12:18:09.359+02:00">
<stringId>Pacific/Majuro</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="497" version="0" dateCreated="2016-10-05T12:18:09.284+02:00">
<stringId>Japan</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="464" version="0" dateCreated="2016-10-05T12:18:09.218+02:00">
<stringId>Europe/Tirane</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="431" version="0" dateCreated="2016-10-05T12:18:09.164+02:00">
<stringId>Europe/Gibraltar</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="398" version="0" dateCreated="2016-10-05T12:18:09.110+02:00">
<stringId>Etc/GMT-10</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="365" version="0" dateCreated="2016-10-05T12:18:09.032+02:00">
<stringId>CST6CDT</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="332" version="0" dateCreated="2016-10-05T12:18:08.968+02:00">
<stringId>Atlantic/Madeira</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="299" version="0" dateCreated="2016-10-05T12:18:08.918+02:00">
<stringId>Asia/Riyadh</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="266" version="0" dateCreated="2016-10-05T12:18:08.879+02:00">
<stringId>Asia/Istanbul</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="233" version="0" dateCreated="2016-10-05T12:18:08.823+02:00">
<stringId>Asia/Almaty</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="200" version="0" dateCreated="2016-10-05T12:18:08.772+02:00">
<stringId>America/St_Barthelemy</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="167" version="0" dateCreated="2016-10-05T12:18:08.720+02:00">
<stringId>America/Nassau</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="134" version="0" dateCreated="2016-10-05T12:18:08.660+02:00">
<stringId>America/Indianapolis</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="101" version="0" dateCreated="2016-10-05T12:18:08.594+02:00">
<stringId>America/Curacao</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="68" version="0" dateCreated="2016-10-05T12:18:08.524+02:00">
<stringId>America/Argentina/Salta</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="35" version="0" dateCreated="2016-10-05T12:18:08.443+02:00">
<stringId>Africa/Luanda</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="2" version="0" dateCreated="2016-10-05T12:18:08.360+02:00">
<stringId>Africa/Accra</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="597" version="0" dateCreated="2016-10-05T12:18:09.483+02:00">
<stringId>AST</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="564" version="0" dateCreated="2016-10-05T12:18:09.424+02:00">
<stringId>SystemV/MST7</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="531" version="0" dateCreated="2016-10-05T12:18:09.361+02:00">
<stringId>Pacific/Marquesas</stringId>
<offsetString>-9-30</offsetString>
</timeZone>
<timeZone id="498" version="0" dateCreated="2016-10-05T12:18:09.287+02:00">
<stringId>Kwajalein</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="465" version="0" dateCreated="2016-10-05T12:18:09.220+02:00">
<stringId>Europe/Tiraspol</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="432" version="0" dateCreated="2016-10-05T12:18:09.165+02:00">
<stringId>Europe/Guernsey</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="399" version="0" dateCreated="2016-10-05T12:18:09.112+02:00">
<stringId>Etc/GMT-11</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="366" version="0" dateCreated="2016-10-05T12:18:09.033+02:00">
<stringId>Canada/Atlantic</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="333" version="0" dateCreated="2016-10-05T12:18:08.969+02:00">
<stringId>Atlantic/Reykjavik</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="300" version="0" dateCreated="2016-10-05T12:18:08.919+02:00">
<stringId>Asia/Saigon</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="267" version="0" dateCreated="2016-10-05T12:18:08.880+02:00">
<stringId>Asia/Jakarta</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="234" version="0" dateCreated="2016-10-05T12:18:08.825+02:00">
<stringId>Asia/Amman</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="201" version="0" dateCreated="2016-10-05T12:18:08.774+02:00">
<stringId>America/St_Johns</stringId>
<offsetString>-3-30</offsetString>
</timeZone>
<timeZone id="168" version="0" dateCreated="2016-10-05T12:18:08.721+02:00">
<stringId>America/New_York</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="135" version="0" dateCreated="2016-10-05T12:18:08.662+02:00">
<stringId>America/Inuvik</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="102" version="0" dateCreated="2016-10-05T12:18:08.596+02:00">
<stringId>America/Danmarkshavn</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="69" version="0" dateCreated="2016-10-05T12:18:08.525+02:00">
<stringId>America/Argentina/San_Juan</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="36" version="0" dateCreated="2016-10-05T12:18:08.445+02:00">
<stringId>Africa/Lubumbashi</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="3" version="0" dateCreated="2016-10-05T12:18:08.364+02:00">
<stringId>Africa/Addis_Ababa</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="598" version="0" dateCreated="2016-10-05T12:18:09.485+02:00">
<stringId>BET</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="565" version="0" dateCreated="2016-10-05T12:18:09.426+02:00">
<stringId>SystemV/MST7MDT</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="532" version="0" dateCreated="2016-10-05T12:18:09.362+02:00">
<stringId>Pacific/Midway</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="499" version="0" dateCreated="2016-10-05T12:18:09.293+02:00">
<stringId>Libya</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="466" version="0" dateCreated="2016-10-05T12:18:09.222+02:00">
<stringId>Europe/Uzhgorod</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="433" version="0" dateCreated="2016-10-05T12:18:09.167+02:00">
<stringId>Europe/Helsinki</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="400" version="0" dateCreated="2016-10-05T12:18:09.113+02:00">
<stringId>Etc/GMT-12</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="367" version="0" dateCreated="2016-10-05T12:18:09.035+02:00">
<stringId>Canada/Central</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="334" version="0" dateCreated="2016-10-05T12:18:08.972+02:00">
<stringId>Atlantic/South_Georgia</stringId>
<offsetString>-200</offsetString>
</timeZone>
<timeZone id="301" version="0" dateCreated="2016-10-05T12:18:08.921+02:00">
<stringId>Asia/Sakhalin</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="268" version="0" dateCreated="2016-10-05T12:18:08.881+02:00">
<stringId>Asia/Jayapura</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="235" version="0" dateCreated="2016-10-05T12:18:08.828+02:00">
<stringId>Asia/Anadyr</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="202" version="0" dateCreated="2016-10-05T12:18:08.776+02:00">
<stringId>America/St_Kitts</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="169" version="0" dateCreated="2016-10-05T12:18:08.723+02:00">
<stringId>America/Nipigon</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="136" version="0" dateCreated="2016-10-05T12:18:08.664+02:00">
<stringId>America/Iqaluit</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="103" version="0" dateCreated="2016-10-05T12:18:08.599+02:00">
<stringId>America/Dawson</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="70" version="0" dateCreated="2016-10-05T12:18:08.527+02:00">
<stringId>America/Argentina/San_Luis</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="37" version="0" dateCreated="2016-10-05T12:18:08.447+02:00">
<stringId>Africa/Lusaka</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="4" version="0" dateCreated="2016-10-05T12:18:08.367+02:00">
<stringId>Africa/Algiers</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="599" version="0" dateCreated="2016-10-05T12:18:09.487+02:00">
<stringId>BST</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="566" version="0" dateCreated="2016-10-05T12:18:09.427+02:00">
<stringId>SystemV/PST8</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="533" version="0" dateCreated="2016-10-05T12:18:09.364+02:00">
<stringId>Pacific/Nauru</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="500" version="0" dateCreated="2016-10-05T12:18:09.295+02:00">
<stringId>MET</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="467" version="0" dateCreated="2016-10-05T12:18:09.224+02:00">
<stringId>Europe/Vaduz</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="434" version="0" dateCreated="2016-10-05T12:18:09.168+02:00">
<stringId>Europe/Isle_of_Man</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="401" version="0" dateCreated="2016-10-05T12:18:09.115+02:00">
<stringId>Etc/GMT-13</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="368" version="0" dateCreated="2016-10-05T12:18:09.037+02:00">
<stringId>Canada/East-Saskatchewan</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="335" version="0" dateCreated="2016-10-05T12:18:08.974+02:00">
<stringId>Atlantic/St_Helena</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="302" version="0" dateCreated="2016-10-05T12:18:08.922+02:00">
<stringId>Asia/Samarkand</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="269" version="0" dateCreated="2016-10-05T12:18:08.882+02:00">
<stringId>Asia/Jerusalem</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="236" version="0" dateCreated="2016-10-05T12:18:08.829+02:00">
<stringId>Asia/Aqtau</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="203" version="0" dateCreated="2016-10-05T12:18:08.777+02:00">
<stringId>America/St_Lucia</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="170" version="0" dateCreated="2016-10-05T12:18:08.724+02:00">
<stringId>America/Nome</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="137" version="0" dateCreated="2016-10-05T12:18:08.666+02:00">
<stringId>America/Jamaica</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="104" version="0" dateCreated="2016-10-05T12:18:08.600+02:00">
<stringId>America/Dawson_Creek</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="71" version="0" dateCreated="2016-10-05T12:18:08.529+02:00">
<stringId>America/Argentina/Tucuman</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="38" version="0" dateCreated="2016-10-05T12:18:08.449+02:00">
<stringId>Africa/Malabo</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="5" version="0" dateCreated="2016-10-05T12:18:08.370+02:00">
<stringId>Africa/Asmara</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="600" version="0" dateCreated="2016-10-05T12:18:09.488+02:00">
<stringId>CAT</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="567" version="0" dateCreated="2016-10-05T12:18:09.429+02:00">
<stringId>SystemV/PST8PDT</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="534" version="0" dateCreated="2016-10-05T12:18:09.366+02:00">
<stringId>Pacific/Niue</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="501" version="0" dateCreated="2016-10-05T12:18:09.298+02:00">
<stringId>MST7MDT</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="468" version="0" dateCreated="2016-10-05T12:18:09.226+02:00">
<stringId>Europe/Vatican</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="435" version="0" dateCreated="2016-10-05T12:18:09.170+02:00">
<stringId>Europe/Istanbul</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="402" version="0" dateCreated="2016-10-05T12:18:09.117+02:00">
<stringId>Etc/GMT-14</stringId>
<offsetString>+1400</offsetString>
</timeZone>
<timeZone id="369" version="0" dateCreated="2016-10-05T12:18:09.039+02:00">
<stringId>Canada/Eastern</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="336" version="0" dateCreated="2016-10-05T12:18:08.977+02:00">
<stringId>Atlantic/Stanley</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="303" version="0" dateCreated="2016-10-05T12:18:08.923+02:00">
<stringId>Asia/Seoul</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="270" version="0" dateCreated="2016-10-05T12:18:08.883+02:00">
<stringId>Asia/Kabul</stringId>
<offsetString>+0430</offsetString>
</timeZone>
<timeZone id="237" version="0" dateCreated="2016-10-05T12:18:08.831+02:00">
<stringId>Asia/Aqtobe</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="204" version="0" dateCreated="2016-10-05T12:18:08.779+02:00">
<stringId>America/St_Thomas</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="171" version="0" dateCreated="2016-10-05T12:18:08.726+02:00">
<stringId>America/Noronha</stringId>
<offsetString>-200</offsetString>
</timeZone>
<timeZone id="138" version="0" dateCreated="2016-10-05T12:18:08.667+02:00">
<stringId>America/Jujuy</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="105" version="0" dateCreated="2016-10-05T12:18:08.602+02:00">
<stringId>America/Denver</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="72" version="0" dateCreated="2016-10-05T12:18:08.530+02:00">
<stringId>America/Argentina/Ushuaia</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="39" version="0" dateCreated="2016-10-05T12:18:08.451+02:00">
<stringId>Africa/Maputo</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="6" version="0" dateCreated="2016-10-05T12:18:08.372+02:00">
<stringId>Africa/Asmera</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="601" version="0" dateCreated="2016-10-05T12:18:09.491+02:00">
<stringId>CNT</stringId>
<offsetString>-3-30</offsetString>
</timeZone>
<timeZone id="568" version="0" dateCreated="2016-10-05T12:18:09.431+02:00">
<stringId>SystemV/YST9</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="535" version="0" dateCreated="2016-10-05T12:18:09.367+02:00">
<stringId>Pacific/Norfolk</stringId>
<offsetString>+1130</offsetString>
</timeZone>
<timeZone id="502" version="0" dateCreated="2016-10-05T12:18:09.300+02:00">
<stringId>Mexico/BajaNorte</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="469" version="0" dateCreated="2016-10-05T12:18:09.228+02:00">
<stringId>Europe/Vienna</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="436" version="0" dateCreated="2016-10-05T12:18:09.171+02:00">
<stringId>Europe/Jersey</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="403" version="0" dateCreated="2016-10-05T12:18:09.118+02:00">
<stringId>Etc/GMT-2</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="370" version="0" dateCreated="2016-10-05T12:18:09.040+02:00">
<stringId>Canada/Mountain</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="337" version="0" dateCreated="2016-10-05T12:18:08.979+02:00">
<stringId>Australia/ACT</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="304" version="0" dateCreated="2016-10-05T12:18:08.924+02:00">
<stringId>Asia/Shanghai</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="271" version="0" dateCreated="2016-10-05T12:18:08.885+02:00">
<stringId>Asia/Kamchatka</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="238" version="0" dateCreated="2016-10-05T12:18:08.832+02:00">
<stringId>Asia/Ashgabat</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="205" version="0" dateCreated="2016-10-05T12:18:08.780+02:00">
<stringId>America/St_Vincent</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="172" version="0" dateCreated="2016-10-05T12:18:08.728+02:00">
<stringId>America/North_Dakota/Beulah</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="139" version="0" dateCreated="2016-10-05T12:18:08.669+02:00">
<stringId>America/Juneau</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="106" version="0" dateCreated="2016-10-05T12:18:08.605+02:00">
<stringId>America/Detroit</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="73" version="0" dateCreated="2016-10-05T12:18:08.532+02:00">
<stringId>America/Aruba</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="40" version="0" dateCreated="2016-10-05T12:18:08.453+02:00">
<stringId>Africa/Maseru</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="7" version="0" dateCreated="2016-10-05T12:18:08.375+02:00">
<stringId>Africa/Bamako</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="602" version="0" dateCreated="2016-10-05T12:18:09.493+02:00">
<stringId>CST</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="569" version="0" dateCreated="2016-10-05T12:18:09.433+02:00">
<stringId>SystemV/YST9YDT</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="536" version="0" dateCreated="2016-10-05T12:18:09.369+02:00">
<stringId>Pacific/Noumea</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="503" version="0" dateCreated="2016-10-05T12:18:09.301+02:00">
<stringId>Mexico/BajaSur</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="470" version="0" dateCreated="2016-10-05T12:18:09.230+02:00">
<stringId>Europe/Vilnius</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="437" version="0" dateCreated="2016-10-05T12:18:09.172+02:00">
<stringId>Europe/Kaliningrad</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="404" version="0" dateCreated="2016-10-05T12:18:09.120+02:00">
<stringId>Etc/GMT-3</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="371" version="0" dateCreated="2016-10-05T12:18:09.044+02:00">
<stringId>Canada/Newfoundland</stringId>
<offsetString>-3-30</offsetString>
</timeZone>
<timeZone id="338" version="0" dateCreated="2016-10-05T12:18:08.982+02:00">
<stringId>Australia/Adelaide</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="305" version="0" dateCreated="2016-10-05T12:18:08.925+02:00">
<stringId>Asia/Singapore</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="272" version="0" dateCreated="2016-10-05T12:18:08.886+02:00">
<stringId>Asia/Karachi</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="239" version="0" dateCreated="2016-10-05T12:18:08.834+02:00">
<stringId>Asia/Ashkhabad</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="206" version="0" dateCreated="2016-10-05T12:18:08.781+02:00">
<stringId>America/Swift_Current</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="173" version="0" dateCreated="2016-10-05T12:18:08.730+02:00">
<stringId>America/North_Dakota/Center</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="140" version="0" dateCreated="2016-10-05T12:18:08.671+02:00">
<stringId>America/Kentucky/Louisville</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="107" version="0" dateCreated="2016-10-05T12:18:08.607+02:00">
<stringId>America/Dominica</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="74" version="0" dateCreated="2016-10-05T12:18:08.534+02:00">
<stringId>America/Asuncion</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="41" version="0" dateCreated="2016-10-05T12:18:08.456+02:00">
<stringId>Africa/Mbabane</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="8" version="0" dateCreated="2016-10-05T12:18:08.378+02:00">
<stringId>Africa/Bangui</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="603" version="0" dateCreated="2016-10-05T12:18:09.495+02:00">
<stringId>CTT</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="570" version="0" dateCreated="2016-10-05T12:18:09.434+02:00">
<stringId>Turkey</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="537" version="0" dateCreated="2016-10-05T12:18:09.371+02:00">
<stringId>Pacific/Pago_Pago</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="504" version="0" dateCreated="2016-10-05T12:18:09.304+02:00">
<stringId>Mexico/General</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="471" version="0" dateCreated="2016-10-05T12:18:09.231+02:00">
<stringId>Europe/Volgograd</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="438" version="0" dateCreated="2016-10-05T12:18:09.173+02:00">
<stringId>Europe/Kiev</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="405" version="0" dateCreated="2016-10-05T12:18:09.122+02:00">
<stringId>Etc/GMT-4</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="372" version="0" dateCreated="2016-10-05T12:18:09.046+02:00">
<stringId>Canada/Pacific</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="339" version="0" dateCreated="2016-10-05T12:18:08.985+02:00">
<stringId>Australia/Brisbane</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="306" version="0" dateCreated="2016-10-05T12:18:08.926+02:00">
<stringId>Asia/Srednekolymsk</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="273" version="0" dateCreated="2016-10-05T12:18:08.887+02:00">
<stringId>Asia/Kashgar</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="240" version="0" dateCreated="2016-10-05T12:18:08.836+02:00">
<stringId>Asia/Baghdad</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="207" version="0" dateCreated="2016-10-05T12:18:08.782+02:00">
<stringId>America/Tegucigalpa</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="174" version="0" dateCreated="2016-10-05T12:18:08.731+02:00">
<stringId>America/North_Dakota/New_Salem</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="141" version="0" dateCreated="2016-10-05T12:18:08.673+02:00">
<stringId>America/Kentucky/Monticello</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="108" version="0" dateCreated="2016-10-05T12:18:08.611+02:00">
<stringId>America/Edmonton</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="75" version="0" dateCreated="2016-10-05T12:18:08.536+02:00">
<stringId>America/Atikokan</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="42" version="0" dateCreated="2016-10-05T12:18:08.458+02:00">
<stringId>Africa/Mogadishu</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="9" version="0" dateCreated="2016-10-05T12:18:08.381+02:00">
<stringId>Africa/Banjul</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="604" version="0" dateCreated="2016-10-05T12:18:09.497+02:00">
<stringId>EAT</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="571" version="0" dateCreated="2016-10-05T12:18:09.436+02:00">
<stringId>UCT</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="538" version="0" dateCreated="2016-10-05T12:18:09.372+02:00">
<stringId>Pacific/Palau</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="505" version="0" dateCreated="2016-10-05T12:18:09.306+02:00">
<stringId>NZ</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="472" version="0" dateCreated="2016-10-05T12:18:09.233+02:00">
<stringId>Europe/Warsaw</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="439" version="0" dateCreated="2016-10-05T12:18:09.175+02:00">
<stringId>Europe/Lisbon</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="406" version="0" dateCreated="2016-10-05T12:18:09.123+02:00">
<stringId>Etc/GMT-5</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="373" version="0" dateCreated="2016-10-05T12:18:09.047+02:00">
<stringId>Canada/Saskatchewan</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="340" version="0" dateCreated="2016-10-05T12:18:08.987+02:00">
<stringId>Australia/Broken_Hill</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="307" version="0" dateCreated="2016-10-05T12:18:08.927+02:00">
<stringId>Asia/Taipei</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="274" version="0" dateCreated="2016-10-05T12:18:08.888+02:00">
<stringId>Asia/Kathmandu</stringId>
<offsetString>+0545</offsetString>
</timeZone>
<timeZone id="241" version="0" dateCreated="2016-10-05T12:18:08.837+02:00">
<stringId>Asia/Bahrain</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="208" version="0" dateCreated="2016-10-05T12:18:08.784+02:00">
<stringId>America/Thule</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="175" version="0" dateCreated="2016-10-05T12:18:08.733+02:00">
<stringId>America/Ojinaga</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="142" version="0" dateCreated="2016-10-05T12:18:08.675+02:00">
<stringId>America/Knox_IN</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="109" version="0" dateCreated="2016-10-05T12:18:08.613+02:00">
<stringId>America/Eirunepe</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="76" version="0" dateCreated="2016-10-05T12:18:08.538+02:00">
<stringId>America/Atka</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="43" version="0" dateCreated="2016-10-05T12:18:08.461+02:00">
<stringId>Africa/Monrovia</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="10" version="0" dateCreated="2016-10-05T12:18:08.383+02:00">
<stringId>Africa/Bissau</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="605" version="0" dateCreated="2016-10-05T12:18:09.499+02:00">
<stringId>ECT</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="572" version="0" dateCreated="2016-10-05T12:18:09.438+02:00">
<stringId>US/Alaska</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="539" version="0" dateCreated="2016-10-05T12:18:09.374+02:00">
<stringId>Pacific/Pitcairn</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="506" version="0" dateCreated="2016-10-05T12:18:09.308+02:00">
<stringId>NZ-CHAT</stringId>
<offsetString>+1245</offsetString>
</timeZone>
<timeZone id="473" version="0" dateCreated="2016-10-05T12:18:09.236+02:00">
<stringId>Europe/Zagreb</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="440" version="0" dateCreated="2016-10-05T12:18:09.177+02:00">
<stringId>Europe/Ljubljana</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="407" version="0" dateCreated="2016-10-05T12:18:09.125+02:00">
<stringId>Etc/GMT-6</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="374" version="0" dateCreated="2016-10-05T12:18:09.049+02:00">
<stringId>Canada/Yukon</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="341" version="0" dateCreated="2016-10-05T12:18:08.988+02:00">
<stringId>Australia/Canberra</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="308" version="0" dateCreated="2016-10-05T12:18:08.929+02:00">
<stringId>Asia/Tashkent</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="275" version="0" dateCreated="2016-10-05T12:18:08.890+02:00">
<stringId>Asia/Katmandu</stringId>
<offsetString>+0545</offsetString>
</timeZone>
<timeZone id="242" version="0" dateCreated="2016-10-05T12:18:08.839+02:00">
<stringId>Asia/Baku</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="209" version="0" dateCreated="2016-10-05T12:18:08.786+02:00">
<stringId>America/Thunder_Bay</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="176" version="0" dateCreated="2016-10-05T12:18:08.735+02:00">
<stringId>America/Panama</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="143" version="0" dateCreated="2016-10-05T12:18:08.677+02:00">
<stringId>America/Kralendijk</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="110" version="0" dateCreated="2016-10-05T12:18:08.614+02:00">
<stringId>America/El_Salvador</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="77" version="0" dateCreated="2016-10-05T12:18:08.539+02:00">
<stringId>America/Bahia</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="44" version="0" dateCreated="2016-10-05T12:18:08.464+02:00">
<stringId>Africa/Nairobi</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="11" version="0" dateCreated="2016-10-05T12:18:08.385+02:00">
<stringId>Africa/Blantyre</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="606" version="0" dateCreated="2016-10-05T12:18:09.500+02:00">
<stringId>IET</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="573" version="0" dateCreated="2016-10-05T12:18:09.439+02:00">
<stringId>US/Aleutian</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="540" version="0" dateCreated="2016-10-05T12:18:09.376+02:00">
<stringId>Pacific/Pohnpei</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="507" version="0" dateCreated="2016-10-05T12:18:09.311+02:00">
<stringId>Navajo</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="474" version="0" dateCreated="2016-10-05T12:18:09.238+02:00">
<stringId>Europe/Zaporozhye</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="441" version="0" dateCreated="2016-10-05T12:18:09.179+02:00">
<stringId>Europe/London</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="408" version="0" dateCreated="2016-10-05T12:18:09.126+02:00">
<stringId>Etc/GMT-7</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="375" version="0" dateCreated="2016-10-05T12:18:09.050+02:00">
<stringId>Chile/Continental</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="342" version="0" dateCreated="2016-10-05T12:18:08.990+02:00">
<stringId>Australia/Currie</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="309" version="0" dateCreated="2016-10-05T12:18:08.930+02:00">
<stringId>Asia/Tbilisi</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="276" version="0" dateCreated="2016-10-05T12:18:08.891+02:00">
<stringId>Asia/Khandyga</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="243" version="0" dateCreated="2016-10-05T12:18:08.840+02:00">
<stringId>Asia/Bangkok</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="210" version="0" dateCreated="2016-10-05T12:18:08.788+02:00">
<stringId>America/Tijuana</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="177" version="0" dateCreated="2016-10-05T12:18:08.736+02:00">
<stringId>America/Pangnirtung</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="144" version="0" dateCreated="2016-10-05T12:18:08.678+02:00">
<stringId>America/La_Paz</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="111" version="0" dateCreated="2016-10-05T12:18:08.616+02:00">
<stringId>America/Ensenada</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="78" version="0" dateCreated="2016-10-05T12:18:08.542+02:00">
<stringId>America/Bahia_Banderas</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="45" version="0" dateCreated="2016-10-05T12:18:08.466+02:00">
<stringId>Africa/Ndjamena</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="12" version="0" dateCreated="2016-10-05T12:18:08.387+02:00">
<stringId>Africa/Brazzaville</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="607" version="0" dateCreated="2016-10-05T12:18:09.502+02:00">
<stringId>IST</stringId>
<offsetString>+0530</offsetString>
</timeZone>
<timeZone id="574" version="0" dateCreated="2016-10-05T12:18:09.441+02:00">
<stringId>US/Arizona</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="541" version="0" dateCreated="2016-10-05T12:18:09.381+02:00">
<stringId>Pacific/Ponape</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="508" version="0" dateCreated="2016-10-05T12:18:09.314+02:00">
<stringId>PRC</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="475" version="0" dateCreated="2016-10-05T12:18:09.239+02:00">
<stringId>Europe/Zurich</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="442" version="0" dateCreated="2016-10-05T12:18:09.180+02:00">
<stringId>Europe/Luxembourg</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="409" version="0" dateCreated="2016-10-05T12:18:09.128+02:00">
<stringId>Etc/GMT-8</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="376" version="0" dateCreated="2016-10-05T12:18:09.052+02:00">
<stringId>Chile/EasterIsland</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="343" version="0" dateCreated="2016-10-05T12:18:08.993+02:00">
<stringId>Australia/Darwin</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="310" version="0" dateCreated="2016-10-05T12:18:08.933+02:00">
<stringId>Asia/Tehran</stringId>
<offsetString>+0330</offsetString>
</timeZone>
<timeZone id="277" version="0" dateCreated="2016-10-05T12:18:08.892+02:00">
<stringId>Asia/Kolkata</stringId>
<offsetString>+0530</offsetString>
</timeZone>
<timeZone id="244" version="0" dateCreated="2016-10-05T12:18:08.842+02:00">
<stringId>Asia/Beirut</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="211" version="0" dateCreated="2016-10-05T12:18:08.790+02:00">
<stringId>America/Toronto</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="178" version="0" dateCreated="2016-10-05T12:18:08.738+02:00">
<stringId>America/Paramaribo</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="145" version="0" dateCreated="2016-10-05T12:18:08.680+02:00">
<stringId>America/Lima</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="112" version="0" dateCreated="2016-10-05T12:18:08.618+02:00">
<stringId>America/Fort_Wayne</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="79" version="0" dateCreated="2016-10-05T12:18:08.544+02:00">
<stringId>America/Barbados</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="46" version="0" dateCreated="2016-10-05T12:18:08.469+02:00">
<stringId>Africa/Niamey</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="13" version="0" dateCreated="2016-10-05T12:18:08.391+02:00">
<stringId>Africa/Bujumbura</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="608" version="0" dateCreated="2016-10-05T12:18:09.503+02:00">
<stringId>JST</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="575" version="0" dateCreated="2016-10-05T12:18:09.443+02:00">
<stringId>US/Central</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="542" version="0" dateCreated="2016-10-05T12:18:09.383+02:00">
<stringId>Pacific/Port_Moresby</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="509" version="0" dateCreated="2016-10-05T12:18:09.316+02:00">
<stringId>PST8PDT</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="476" version="0" dateCreated="2016-10-05T12:18:09.242+02:00">
<stringId>GB</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="443" version="0" dateCreated="2016-10-05T12:18:09.181+02:00">
<stringId>Europe/Madrid</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="410" version="0" dateCreated="2016-10-05T12:18:09.130+02:00">
<stringId>Etc/GMT-9</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="377" version="0" dateCreated="2016-10-05T12:18:09.055+02:00">
<stringId>Cuba</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="344" version="0" dateCreated="2016-10-05T12:18:08.996+02:00">
<stringId>Australia/Eucla</stringId>
<offsetString>+0845</offsetString>
</timeZone>
<timeZone id="311" version="0" dateCreated="2016-10-05T12:18:08.934+02:00">
<stringId>Asia/Tel_Aviv</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="278" version="0" dateCreated="2016-10-05T12:18:08.893+02:00">
<stringId>Asia/Krasnoyarsk</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="245" version="0" dateCreated="2016-10-05T12:18:08.844+02:00">
<stringId>Asia/Bishkek</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="212" version="0" dateCreated="2016-10-05T12:18:08.791+02:00">
<stringId>America/Tortola</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="179" version="0" dateCreated="2016-10-05T12:18:08.739+02:00">
<stringId>America/Phoenix</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="146" version="0" dateCreated="2016-10-05T12:18:08.682+02:00">
<stringId>America/Los_Angeles</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="113" version="0" dateCreated="2016-10-05T12:18:08.619+02:00">
<stringId>America/Fortaleza</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="80" version="0" dateCreated="2016-10-05T12:18:08.545+02:00">
<stringId>America/Belem</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="47" version="0" dateCreated="2016-10-05T12:18:08.471+02:00">
<stringId>Africa/Nouakchott</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="14" version="0" dateCreated="2016-10-05T12:18:08.393+02:00">
<stringId>Africa/Cairo</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="609" version="0" dateCreated="2016-10-05T12:18:09.505+02:00">
<stringId>MIT</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="576" version="0" dateCreated="2016-10-05T12:18:09.445+02:00">
<stringId>US/East-Indiana</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="543" version="0" dateCreated="2016-10-05T12:18:09.384+02:00">
<stringId>Pacific/Rarotonga</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="510" version="0" dateCreated="2016-10-05T12:18:09.319+02:00">
<stringId>Pacific/Apia</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="477" version="0" dateCreated="2016-10-05T12:18:09.243+02:00">
<stringId>GB-Eire</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="444" version="0" dateCreated="2016-10-05T12:18:09.183+02:00">
<stringId>Europe/Malta</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="411" version="0" dateCreated="2016-10-05T12:18:09.131+02:00">
<stringId>Etc/GMT0</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="378" version="0" dateCreated="2016-10-05T12:18:09.060+02:00">
<stringId>EET</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="345" version="0" dateCreated="2016-10-05T12:18:08.997+02:00">
<stringId>Australia/Hobart</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="312" version="0" dateCreated="2016-10-05T12:18:08.935+02:00">
<stringId>Asia/Thimbu</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="279" version="0" dateCreated="2016-10-05T12:18:08.894+02:00">
<stringId>Asia/Kuala_Lumpur</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="246" version="0" dateCreated="2016-10-05T12:18:08.845+02:00">
<stringId>Asia/Brunei</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="213" version="0" dateCreated="2016-10-05T12:18:08.793+02:00">
<stringId>America/Vancouver</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="180" version="0" dateCreated="2016-10-05T12:18:08.741+02:00">
<stringId>America/Port-au-Prince</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="147" version="0" dateCreated="2016-10-05T12:18:08.684+02:00">
<stringId>America/Louisville</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="114" version="0" dateCreated="2016-10-05T12:18:08.622+02:00">
<stringId>America/Glace_Bay</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="81" version="0" dateCreated="2016-10-05T12:18:08.547+02:00">
<stringId>America/Belize</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="48" version="0" dateCreated="2016-10-05T12:18:08.473+02:00">
<stringId>Africa/Ouagadougou</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="15" version="0" dateCreated="2016-10-05T12:18:08.395+02:00">
<stringId>Africa/Casablanca</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="610" version="0" dateCreated="2016-10-05T12:18:09.506+02:00">
<stringId>NET</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="577" version="0" dateCreated="2016-10-05T12:18:09.447+02:00">
<stringId>US/Eastern</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="544" version="0" dateCreated="2016-10-05T12:18:09.386+02:00">
<stringId>Pacific/Saipan</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="511" version="0" dateCreated="2016-10-05T12:18:09.321+02:00">
<stringId>Pacific/Auckland</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="478" version="0" dateCreated="2016-10-05T12:18:09.245+02:00">
<stringId>GMT</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="445" version="0" dateCreated="2016-10-05T12:18:09.184+02:00">
<stringId>Europe/Mariehamn</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="412" version="0" dateCreated="2016-10-05T12:18:09.133+02:00">
<stringId>Etc/Greenwich</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="379" version="0" dateCreated="2016-10-05T12:18:09.065+02:00">
<stringId>EST5EDT</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="346" version="0" dateCreated="2016-10-05T12:18:08.999+02:00">
<stringId>Australia/LHI</stringId>
<offsetString>+1030</offsetString>
</timeZone>
<timeZone id="313" version="0" dateCreated="2016-10-05T12:18:08.937+02:00">
<stringId>Asia/Thimphu</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="280" version="0" dateCreated="2016-10-05T12:18:08.896+02:00">
<stringId>Asia/Kuching</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="247" version="0" dateCreated="2016-10-05T12:18:08.846+02:00">
<stringId>Asia/Calcutta</stringId>
<offsetString>+0530</offsetString>
</timeZone>
<timeZone id="214" version="0" dateCreated="2016-10-05T12:18:08.795+02:00">
<stringId>America/Virgin</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="181" version="0" dateCreated="2016-10-05T12:18:08.742+02:00">
<stringId>America/Port_of_Spain</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="148" version="0" dateCreated="2016-10-05T12:18:08.686+02:00">
<stringId>America/Lower_Princes</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="115" version="0" dateCreated="2016-10-05T12:18:08.623+02:00">
<stringId>America/Godthab</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="82" version="0" dateCreated="2016-10-05T12:18:08.549+02:00">
<stringId>America/Blanc-Sablon</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="49" version="0" dateCreated="2016-10-05T12:18:08.477+02:00">
<stringId>Africa/Porto-Novo</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="16" version="0" dateCreated="2016-10-05T12:18:08.398+02:00">
<stringId>Africa/Ceuta</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="611" version="0" dateCreated="2016-10-05T12:18:09.508+02:00">
<stringId>NST</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="578" version="0" dateCreated="2016-10-05T12:18:09.449+02:00">
<stringId>US/Hawaii</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="545" version="0" dateCreated="2016-10-05T12:18:09.388+02:00">
<stringId>Pacific/Samoa</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="512" version="0" dateCreated="2016-10-05T12:18:09.323+02:00">
<stringId>Pacific/Bougainville</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="479" version="0" dateCreated="2016-10-05T12:18:09.246+02:00">
<stringId>GMT0</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="446" version="0" dateCreated="2016-10-05T12:18:09.186+02:00">
<stringId>Europe/Minsk</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="413" version="0" dateCreated="2016-10-05T12:18:09.134+02:00">
<stringId>Etc/UCT</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="380" version="0" dateCreated="2016-10-05T12:18:09.067+02:00">
<stringId>Egypt</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="347" version="0" dateCreated="2016-10-05T12:18:09.000+02:00">
<stringId>Australia/Lindeman</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="314" version="0" dateCreated="2016-10-05T12:18:08.938+02:00">
<stringId>Asia/Tokyo</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="281" version="0" dateCreated="2016-10-05T12:18:08.897+02:00">
<stringId>Asia/Kuwait</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="248" version="0" dateCreated="2016-10-05T12:18:08.848+02:00">
<stringId>Asia/Chita</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="215" version="0" dateCreated="2016-10-05T12:18:08.797+02:00">
<stringId>America/Whitehorse</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="182" version="0" dateCreated="2016-10-05T12:18:08.744+02:00">
<stringId>America/Porto_Acre</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="149" version="0" dateCreated="2016-10-05T12:18:08.688+02:00">
<stringId>America/Maceio</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="116" version="0" dateCreated="2016-10-05T12:18:08.625+02:00">
<stringId>America/Goose_Bay</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="83" version="0" dateCreated="2016-10-05T12:18:08.552+02:00">
<stringId>America/Boa_Vista</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="50" version="0" dateCreated="2016-10-05T12:18:08.479+02:00">
<stringId>Africa/Sao_Tome</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="17" version="0" dateCreated="2016-10-05T12:18:08.400+02:00">
<stringId>Africa/Conakry</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="612" version="0" dateCreated="2016-10-05T12:18:09.510+02:00">
<stringId>PLT</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="579" version="0" dateCreated="2016-10-05T12:18:09.450+02:00">
<stringId>US/Indiana-Starke</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="546" version="0" dateCreated="2016-10-05T12:18:09.389+02:00">
<stringId>Pacific/Tahiti</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="513" version="0" dateCreated="2016-10-05T12:18:09.327+02:00">
<stringId>Pacific/Chatham</stringId>
<offsetString>+1245</offsetString>
</timeZone>
<timeZone id="480" version="0" dateCreated="2016-10-05T12:18:09.248+02:00">
<stringId>Greenwich</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="447" version="0" dateCreated="2016-10-05T12:18:09.187+02:00">
<stringId>Europe/Monaco</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="414" version="0" dateCreated="2016-10-05T12:18:09.136+02:00">
<stringId>Etc/UTC</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="381" version="0" dateCreated="2016-10-05T12:18:09.069+02:00">
<stringId>Eire</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="348" version="0" dateCreated="2016-10-05T12:18:09.001+02:00">
<stringId>Australia/Lord_Howe</stringId>
<offsetString>+1030</offsetString>
</timeZone>
<timeZone id="315" version="0" dateCreated="2016-10-05T12:18:08.940+02:00">
<stringId>Asia/Ujung_Pandang</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="282" version="0" dateCreated="2016-10-05T12:18:08.898+02:00">
<stringId>Asia/Macao</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="249" version="0" dateCreated="2016-10-05T12:18:08.849+02:00">
<stringId>Asia/Choibalsan</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="216" version="0" dateCreated="2016-10-05T12:18:08.798+02:00">
<stringId>America/Winnipeg</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="183" version="0" dateCreated="2016-10-05T12:18:08.745+02:00">
<stringId>America/Porto_Velho</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="150" version="0" dateCreated="2016-10-05T12:18:08.690+02:00">
<stringId>America/Managua</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="117" version="0" dateCreated="2016-10-05T12:18:08.627+02:00">
<stringId>America/Grand_Turk</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="84" version="0" dateCreated="2016-10-05T12:18:08.554+02:00">
<stringId>America/Bogota</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="51" version="0" dateCreated="2016-10-05T12:18:08.482+02:00">
<stringId>Africa/Timbuktu</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="18" version="0" dateCreated="2016-10-05T12:18:08.403+02:00">
<stringId>Africa/Dakar</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="613" version="0" dateCreated="2016-10-05T12:18:09.512+02:00">
<stringId>PNT</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="580" version="0" dateCreated="2016-10-05T12:18:09.452+02:00">
<stringId>US/Michigan</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="547" version="0" dateCreated="2016-10-05T12:18:09.391+02:00">
<stringId>Pacific/Tarawa</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="514" version="0" dateCreated="2016-10-05T12:18:09.330+02:00">
<stringId>Pacific/Chuuk</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="481" version="0" dateCreated="2016-10-05T12:18:09.249+02:00">
<stringId>Hongkong</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="448" version="0" dateCreated="2016-10-05T12:18:09.189+02:00">
<stringId>Europe/Moscow</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="415" version="0" dateCreated="2016-10-05T12:18:09.137+02:00">
<stringId>Etc/Universal</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="382" version="0" dateCreated="2016-10-05T12:18:09.072+02:00">
<stringId>Etc/GMT</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="349" version="0" dateCreated="2016-10-05T12:18:09.003+02:00">
<stringId>Australia/Melbourne</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="316" version="0" dateCreated="2016-10-05T12:18:08.941+02:00">
<stringId>Asia/Ulaanbaatar</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="283" version="0" dateCreated="2016-10-05T12:18:08.900+02:00">
<stringId>Asia/Macau</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="250" version="0" dateCreated="2016-10-05T12:18:08.851+02:00">
<stringId>Asia/Chongqing</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="217" version="0" dateCreated="2016-10-05T12:18:08.799+02:00">
<stringId>America/Yakutat</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="184" version="0" dateCreated="2016-10-05T12:18:08.746+02:00">
<stringId>America/Puerto_Rico</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="151" version="0" dateCreated="2016-10-05T12:18:08.692+02:00">
<stringId>America/Manaus</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="118" version="0" dateCreated="2016-10-05T12:18:08.629+02:00">
<stringId>America/Grenada</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="85" version="0" dateCreated="2016-10-05T12:18:08.557+02:00">
<stringId>America/Boise</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="52" version="0" dateCreated="2016-10-05T12:18:08.484+02:00">
<stringId>Africa/Tripoli</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="19" version="0" dateCreated="2016-10-05T12:18:08.405+02:00">
<stringId>Africa/Dar_es_Salaam</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="614" version="0" dateCreated="2016-10-05T12:18:09.513+02:00">
<stringId>PRT</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="581" version="0" dateCreated="2016-10-05T12:18:09.454+02:00">
<stringId>US/Mountain</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="548" version="0" dateCreated="2016-10-05T12:18:09.393+02:00">
<stringId>Pacific/Tongatapu</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="515" version="0" dateCreated="2016-10-05T12:18:09.332+02:00">
<stringId>Pacific/Easter</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="482" version="0" dateCreated="2016-10-05T12:18:09.251+02:00">
<stringId>Iceland</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="449" version="0" dateCreated="2016-10-05T12:18:09.190+02:00">
<stringId>Europe/Nicosia</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="416" version="0" dateCreated="2016-10-05T12:18:09.139+02:00">
<stringId>Etc/Zulu</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="383" version="0" dateCreated="2016-10-05T12:18:09.076+02:00">
<stringId>Etc/GMT+0</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="350" version="0" dateCreated="2016-10-05T12:18:09.006+02:00">
<stringId>Australia/NSW</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="317" version="0" dateCreated="2016-10-05T12:18:08.942+02:00">
<stringId>Asia/Ulan_Bator</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="284" version="0" dateCreated="2016-10-05T12:18:08.901+02:00">
<stringId>Asia/Magadan</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="251" version="0" dateCreated="2016-10-05T12:18:08.852+02:00">
<stringId>Asia/Chungking</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="218" version="0" dateCreated="2016-10-05T12:18:08.801+02:00">
<stringId>America/Yellowknife</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="185" version="0" dateCreated="2016-10-05T12:18:08.747+02:00">
<stringId>America/Rainy_River</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="152" version="0" dateCreated="2016-10-05T12:18:08.693+02:00">
<stringId>America/Marigot</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="119" version="0" dateCreated="2016-10-05T12:18:08.630+02:00">
<stringId>America/Guadeloupe</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="86" version="0" dateCreated="2016-10-05T12:18:08.563+02:00">
<stringId>America/Buenos_Aires</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="53" version="0" dateCreated="2016-10-05T12:18:08.487+02:00">
<stringId>Africa/Tunis</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="20" version="0" dateCreated="2016-10-05T12:18:08.408+02:00">
<stringId>Africa/Djibouti</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="615" version="0" dateCreated="2016-10-05T12:18:09.515+02:00">
<stringId>PST</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="582" version="0" dateCreated="2016-10-05T12:18:09.456+02:00">
<stringId>US/Pacific</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="549" version="0" dateCreated="2016-10-05T12:18:09.395+02:00">
<stringId>Pacific/Truk</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="516" version="0" dateCreated="2016-10-05T12:18:09.336+02:00">
<stringId>Pacific/Efate</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="483" version="0" dateCreated="2016-10-05T12:18:09.253+02:00">
<stringId>Indian/Antananarivo</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="450" version="0" dateCreated="2016-10-05T12:18:09.192+02:00">
<stringId>Europe/Oslo</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="417" version="0" dateCreated="2016-10-05T12:18:09.140+02:00">
<stringId>Europe/Amsterdam</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="384" version="0" dateCreated="2016-10-05T12:18:09.079+02:00">
<stringId>Etc/GMT+1</stringId>
<offsetString>-100</offsetString>
</timeZone>
<timeZone id="351" version="0" dateCreated="2016-10-05T12:18:09.008+02:00">
<stringId>Australia/North</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="318" version="0" dateCreated="2016-10-05T12:18:08.944+02:00">
<stringId>Asia/Urumqi</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="285" version="0" dateCreated="2016-10-05T12:18:08.902+02:00">
<stringId>Asia/Makassar</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="252" version="0" dateCreated="2016-10-05T12:18:08.854+02:00">
<stringId>Asia/Colombo</stringId>
<offsetString>+0530</offsetString>
</timeZone>
<timeZone id="219" version="0" dateCreated="2016-10-05T12:18:08.802+02:00">
<stringId>Antarctica/Casey</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="186" version="0" dateCreated="2016-10-05T12:18:08.748+02:00">
<stringId>America/Rankin_Inlet</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="153" version="0" dateCreated="2016-10-05T12:18:08.695+02:00">
<stringId>America/Martinique</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="120" version="0" dateCreated="2016-10-05T12:18:08.632+02:00">
<stringId>America/Guatemala</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="87" version="0" dateCreated="2016-10-05T12:18:08.567+02:00">
<stringId>America/Cambridge_Bay</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="54" version="0" dateCreated="2016-10-05T12:18:08.489+02:00">
<stringId>Africa/Windhoek</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="21" version="0" dateCreated="2016-10-05T12:18:08.410+02:00">
<stringId>Africa/Douala</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="616" version="0" dateCreated="2016-10-05T12:18:09.516+02:00">
<stringId>SST</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="583" version="0" dateCreated="2016-10-05T12:18:09.458+02:00">
<stringId>US/Pacific-New</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="550" version="0" dateCreated="2016-10-05T12:18:09.396+02:00">
<stringId>Pacific/Wake</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="517" version="0" dateCreated="2016-10-05T12:18:09.337+02:00">
<stringId>Pacific/Enderbury</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="484" version="0" dateCreated="2016-10-05T12:18:09.256+02:00">
<stringId>Indian/Chagos</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="451" version="0" dateCreated="2016-10-05T12:18:09.194+02:00">
<stringId>Europe/Paris</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="418" version="0" dateCreated="2016-10-05T12:18:09.142+02:00">
<stringId>Europe/Andorra</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="385" version="0" dateCreated="2016-10-05T12:18:09.081+02:00">
<stringId>Etc/GMT+10</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="352" version="0" dateCreated="2016-10-05T12:18:09.010+02:00">
<stringId>Australia/Perth</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="319" version="0" dateCreated="2016-10-05T12:18:08.945+02:00">
<stringId>Asia/Ust-Nera</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="286" version="0" dateCreated="2016-10-05T12:18:08.903+02:00">
<stringId>Asia/Manila</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="253" version="0" dateCreated="2016-10-05T12:18:08.857+02:00">
<stringId>Asia/Dacca</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="220" version="0" dateCreated="2016-10-05T12:18:08.803+02:00">
<stringId>Antarctica/Davis</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="187" version="0" dateCreated="2016-10-05T12:18:08.749+02:00">
<stringId>America/Recife</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="154" version="0" dateCreated="2016-10-05T12:18:08.697+02:00">
<stringId>America/Matamoros</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="121" version="0" dateCreated="2016-10-05T12:18:08.634+02:00">
<stringId>America/Guayaquil</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="88" version="0" dateCreated="2016-10-05T12:18:08.571+02:00">
<stringId>America/Campo_Grande</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="55" version="0" dateCreated="2016-10-05T12:18:08.491+02:00">
<stringId>America/Adak</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="22" version="0" dateCreated="2016-10-05T12:18:08.413+02:00">
<stringId>Africa/El_Aaiun</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="617" version="0" dateCreated="2016-10-05T12:18:09.520+02:00">
<stringId>VST</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="584" version="0" dateCreated="2016-10-05T12:18:09.460+02:00">
<stringId>US/Samoa</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="551" version="0" dateCreated="2016-10-05T12:18:09.398+02:00">
<stringId>Pacific/Wallis</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="518" version="0" dateCreated="2016-10-05T12:18:09.339+02:00">
<stringId>Pacific/Fakaofo</stringId>
<offsetString>+1300</offsetString>
</timeZone>
<timeZone id="485" version="0" dateCreated="2016-10-05T12:18:09.257+02:00">
<stringId>Indian/Christmas</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="452" version="0" dateCreated="2016-10-05T12:18:09.195+02:00">
<stringId>Europe/Podgorica</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="419" version="0" dateCreated="2016-10-05T12:18:09.144+02:00">
<stringId>Europe/Athens</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="386" version="0" dateCreated="2016-10-05T12:18:09.087+02:00">
<stringId>Etc/GMT+11</stringId>
<offsetString>-1100</offsetString>
</timeZone>
<timeZone id="353" version="0" dateCreated="2016-10-05T12:18:09.012+02:00">
<stringId>Australia/Queensland</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="320" version="0" dateCreated="2016-10-05T12:18:08.947+02:00">
<stringId>Asia/Vientiane</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="287" version="0" dateCreated="2016-10-05T12:18:08.904+02:00">
<stringId>Asia/Muscat</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="254" version="0" dateCreated="2016-10-05T12:18:08.860+02:00">
<stringId>Asia/Damascus</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="221" version="0" dateCreated="2016-10-05T12:18:08.805+02:00">
<stringId>Antarctica/DumontDUrville</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="188" version="0" dateCreated="2016-10-05T12:18:08.750+02:00">
<stringId>America/Regina</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="155" version="0" dateCreated="2016-10-05T12:18:08.698+02:00">
<stringId>America/Mazatlan</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="122" version="0" dateCreated="2016-10-05T12:18:08.636+02:00">
<stringId>America/Guyana</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="89" version="0" dateCreated="2016-10-05T12:18:08.573+02:00">
<stringId>America/Cancun</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="56" version="0" dateCreated="2016-10-05T12:18:08.493+02:00">
<stringId>America/Anchorage</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="23" version="0" dateCreated="2016-10-05T12:18:08.415+02:00">
<stringId>Africa/Freetown</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="585" version="0" dateCreated="2016-10-05T12:18:09.461+02:00">
<stringId>UTC</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="552" version="0" dateCreated="2016-10-05T12:18:09.400+02:00">
<stringId>Pacific/Yap</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="519" version="0" dateCreated="2016-10-05T12:18:09.341+02:00">
<stringId>Pacific/Fiji</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="486" version="0" dateCreated="2016-10-05T12:18:09.260+02:00">
<stringId>Indian/Cocos</stringId>
<offsetString>+0630</offsetString>
</timeZone>
<timeZone id="453" version="0" dateCreated="2016-10-05T12:18:09.197+02:00">
<stringId>Europe/Prague</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="420" version="0" dateCreated="2016-10-05T12:18:09.146+02:00">
<stringId>Europe/Belfast</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="387" version="0" dateCreated="2016-10-05T12:18:09.090+02:00">
<stringId>Etc/GMT+12</stringId>
<offsetString>-1200</offsetString>
</timeZone>
<timeZone id="354" version="0" dateCreated="2016-10-05T12:18:09.013+02:00">
<stringId>Australia/South</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="321" version="0" dateCreated="2016-10-05T12:18:08.948+02:00">
<stringId>Asia/Vladivostok</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="288" version="0" dateCreated="2016-10-05T12:18:08.905+02:00">
<stringId>Asia/Nicosia</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="255" version="0" dateCreated="2016-10-05T12:18:08.862+02:00">
<stringId>Asia/Dhaka</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="222" version="0" dateCreated="2016-10-05T12:18:08.806+02:00">
<stringId>Antarctica/Macquarie</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="189" version="0" dateCreated="2016-10-05T12:18:08.751+02:00">
<stringId>America/Resolute</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="156" version="0" dateCreated="2016-10-05T12:18:08.700+02:00">
<stringId>America/Mendoza</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="123" version="0" dateCreated="2016-10-05T12:18:08.638+02:00">
<stringId>America/Halifax</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="90" version="0" dateCreated="2016-10-05T12:18:08.575+02:00">
<stringId>America/Caracas</stringId>
<offsetString>-4-30</offsetString>
</timeZone>
<timeZone id="57" version="0" dateCreated="2016-10-05T12:18:08.496+02:00">
<stringId>America/Anguilla</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="24" version="0" dateCreated="2016-10-05T12:18:08.418+02:00">
<stringId>Africa/Gaborone</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="586" version="0" dateCreated="2016-10-05T12:18:09.463+02:00">
<stringId>Universal</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="553" version="0" dateCreated="2016-10-05T12:18:09.403+02:00">
<stringId>Poland</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="520" version="0" dateCreated="2016-10-05T12:18:09.343+02:00">
<stringId>Pacific/Funafuti</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="487" version="0" dateCreated="2016-10-05T12:18:09.262+02:00">
<stringId>Indian/Comoro</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="454" version="0" dateCreated="2016-10-05T12:18:09.199+02:00">
<stringId>Europe/Riga</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="421" version="0" dateCreated="2016-10-05T12:18:09.147+02:00">
<stringId>Europe/Belgrade</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="388" version="0" dateCreated="2016-10-05T12:18:09.091+02:00">
<stringId>Etc/GMT+2</stringId>
<offsetString>-200</offsetString>
</timeZone>
<timeZone id="355" version="0" dateCreated="2016-10-05T12:18:09.015+02:00">
<stringId>Australia/Sydney</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="322" version="0" dateCreated="2016-10-05T12:18:08.950+02:00">
<stringId>Asia/Yakutsk</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="289" version="0" dateCreated="2016-10-05T12:18:08.907+02:00">
<stringId>Asia/Novokuznetsk</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="256" version="0" dateCreated="2016-10-05T12:18:08.864+02:00">
<stringId>Asia/Dili</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="223" version="0" dateCreated="2016-10-05T12:18:08.807+02:00">
<stringId>Antarctica/Mawson</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="190" version="0" dateCreated="2016-10-05T12:18:08.753+02:00">
<stringId>America/Rio_Branco</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="157" version="0" dateCreated="2016-10-05T12:18:08.702+02:00">
<stringId>America/Menominee</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="124" version="0" dateCreated="2016-10-05T12:18:08.640+02:00">
<stringId>America/Havana</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="91" version="0" dateCreated="2016-10-05T12:18:08.576+02:00">
<stringId>America/Catamarca</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="58" version="0" dateCreated="2016-10-05T12:18:08.498+02:00">
<stringId>America/Antigua</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="25" version="0" dateCreated="2016-10-05T12:18:08.421+02:00">
<stringId>Africa/Harare</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="587" version="0" dateCreated="2016-10-05T12:18:09.465+02:00">
<stringId>W-SU</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="554" version="0" dateCreated="2016-10-05T12:18:09.405+02:00">
<stringId>Portugal</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="521" version="0" dateCreated="2016-10-05T12:18:09.344+02:00">
<stringId>Pacific/Galapagos</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="488" version="0" dateCreated="2016-10-05T12:18:09.264+02:00">
<stringId>Indian/Kerguelen</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="455" version="0" dateCreated="2016-10-05T12:18:09.200+02:00">
<stringId>Europe/Rome</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="422" version="0" dateCreated="2016-10-05T12:18:09.149+02:00">
<stringId>Europe/Berlin</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="389" version="0" dateCreated="2016-10-05T12:18:09.093+02:00">
<stringId>Etc/GMT+3</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="356" version="0" dateCreated="2016-10-05T12:18:09.017+02:00">
<stringId>Australia/Tasmania</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="323" version="0" dateCreated="2016-10-05T12:18:08.952+02:00">
<stringId>Asia/Yekaterinburg</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="290" version="0" dateCreated="2016-10-05T12:18:08.908+02:00">
<stringId>Asia/Novosibirsk</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="257" version="0" dateCreated="2016-10-05T12:18:08.866+02:00">
<stringId>Asia/Dubai</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="224" version="0" dateCreated="2016-10-05T12:18:08.809+02:00">
<stringId>Antarctica/McMurdo</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="191" version="0" dateCreated="2016-10-05T12:18:08.755+02:00">
<stringId>America/Rosario</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="158" version="0" dateCreated="2016-10-05T12:18:08.704+02:00">
<stringId>America/Merida</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="125" version="0" dateCreated="2016-10-05T12:18:08.642+02:00">
<stringId>America/Hermosillo</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="92" version="0" dateCreated="2016-10-05T12:18:08.578+02:00">
<stringId>America/Cayenne</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="59" version="0" dateCreated="2016-10-05T12:18:08.500+02:00">
<stringId>America/Araguaina</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="26" version="0" dateCreated="2016-10-05T12:18:08.423+02:00">
<stringId>Africa/Johannesburg</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="588" version="0" dateCreated="2016-10-05T12:18:09.467+02:00">
<stringId>WET</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="555" version="0" dateCreated="2016-10-05T12:18:09.407+02:00">
<stringId>ROK</stringId>
<offsetString>+0900</offsetString>
</timeZone>
<timeZone id="522" version="0" dateCreated="2016-10-05T12:18:09.345+02:00">
<stringId>Pacific/Gambier</stringId>
<offsetString>-900</offsetString>
</timeZone>
<timeZone id="489" version="0" dateCreated="2016-10-05T12:18:09.266+02:00">
<stringId>Indian/Mahe</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="456" version="0" dateCreated="2016-10-05T12:18:09.202+02:00">
<stringId>Europe/Samara</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="423" version="0" dateCreated="2016-10-05T12:18:09.150+02:00">
<stringId>Europe/Bratislava</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="390" version="0" dateCreated="2016-10-05T12:18:09.094+02:00">
<stringId>Etc/GMT+4</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="357" version="0" dateCreated="2016-10-05T12:18:09.019+02:00">
<stringId>Australia/Victoria</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="324" version="0" dateCreated="2016-10-05T12:18:08.954+02:00">
<stringId>Asia/Yerevan</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="291" version="0" dateCreated="2016-10-05T12:18:08.909+02:00">
<stringId>Asia/Omsk</stringId>
<offsetString>+0600</offsetString>
</timeZone>
<timeZone id="258" version="0" dateCreated="2016-10-05T12:18:08.867+02:00">
<stringId>Asia/Dushanbe</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="225" version="0" dateCreated="2016-10-05T12:18:08.810+02:00">
<stringId>Antarctica/Palmer</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="192" version="0" dateCreated="2016-10-05T12:18:08.756+02:00">
<stringId>America/Santa_Isabel</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="159" version="0" dateCreated="2016-10-05T12:18:08.705+02:00">
<stringId>America/Metlakatla</stringId>
<offsetString>-800</offsetString>
</timeZone>
<timeZone id="126" version="0" dateCreated="2016-10-05T12:18:08.644+02:00">
<stringId>America/Indiana/Indianapolis</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="93" version="0" dateCreated="2016-10-05T12:18:08.579+02:00">
<stringId>America/Cayman</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="60" version="0" dateCreated="2016-10-05T12:18:08.503+02:00">
<stringId>America/Argentina/Buenos_Aires</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="27" version="0" dateCreated="2016-10-05T12:18:08.425+02:00">
<stringId>Africa/Juba</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="589" version="0" dateCreated="2016-10-05T12:18:09.469+02:00">
<stringId>Zulu</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="556" version="0" dateCreated="2016-10-05T12:18:09.409+02:00">
<stringId>Singapore</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="523" version="0" dateCreated="2016-10-05T12:18:09.347+02:00">
<stringId>Pacific/Guadalcanal</stringId>
<offsetString>+1100</offsetString>
</timeZone>
<timeZone id="490" version="0" dateCreated="2016-10-05T12:18:09.267+02:00">
<stringId>Indian/Maldives</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="457" version="0" dateCreated="2016-10-05T12:18:09.204+02:00">
<stringId>Europe/San_Marino</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="424" version="0" dateCreated="2016-10-05T12:18:09.151+02:00">
<stringId>Europe/Brussels</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="391" version="0" dateCreated="2016-10-05T12:18:09.096+02:00">
<stringId>Etc/GMT+5</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="358" version="0" dateCreated="2016-10-05T12:18:09.021+02:00">
<stringId>Australia/West</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="325" version="0" dateCreated="2016-10-05T12:18:08.956+02:00">
<stringId>Atlantic/Azores</stringId>
<offsetString>-100</offsetString>
</timeZone>
<timeZone id="292" version="0" dateCreated="2016-10-05T12:18:08.910+02:00">
<stringId>Asia/Oral</stringId>
<offsetString>+0500</offsetString>
</timeZone>
<timeZone id="259" version="0" dateCreated="2016-10-05T12:18:08.869+02:00">
<stringId>Asia/Gaza</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="226" version="0" dateCreated="2016-10-05T12:18:08.811+02:00">
<stringId>Antarctica/Rothera</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="193" version="0" dateCreated="2016-10-05T12:18:08.758+02:00">
<stringId>America/Santarem</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="160" version="0" dateCreated="2016-10-05T12:18:08.706+02:00">
<stringId>America/Mexico_City</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="127" version="0" dateCreated="2016-10-05T12:18:08.645+02:00">
<stringId>America/Indiana/Knox</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="94" version="0" dateCreated="2016-10-05T12:18:08.581+02:00">
<stringId>America/Chicago</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="61" version="0" dateCreated="2016-10-05T12:18:08.505+02:00">
<stringId>America/Argentina/Catamarca</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="28" version="0" dateCreated="2016-10-05T12:18:08.427+02:00">
<stringId>Africa/Kampala</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="590" version="0" dateCreated="2016-10-05T12:18:09.470+02:00">
<stringId>EST</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="557" version="0" dateCreated="2016-10-05T12:18:09.411+02:00">
<stringId>SystemV/AST4</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="524" version="0" dateCreated="2016-10-05T12:18:09.348+02:00">
<stringId>Pacific/Guam</stringId>
<offsetString>+1000</offsetString>
</timeZone>
<timeZone id="491" version="0" dateCreated="2016-10-05T12:18:09.269+02:00">
<stringId>Indian/Mauritius</stringId>
<offsetString>+0400</offsetString>
</timeZone>
<timeZone id="458" version="0" dateCreated="2016-10-05T12:18:09.205+02:00">
<stringId>Europe/Sarajevo</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="425" version="0" dateCreated="2016-10-05T12:18:09.154+02:00">
<stringId>Europe/Bucharest</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="392" version="0" dateCreated="2016-10-05T12:18:09.098+02:00">
<stringId>Etc/GMT+6</stringId>
<offsetString>-600</offsetString>
</timeZone>
<timeZone id="359" version="0" dateCreated="2016-10-05T12:18:09.022+02:00">
<stringId>Australia/Yancowinna</stringId>
<offsetString>+0930</offsetString>
</timeZone>
<timeZone id="326" version="0" dateCreated="2016-10-05T12:18:08.958+02:00">
<stringId>Atlantic/Bermuda</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="293" version="0" dateCreated="2016-10-05T12:18:08.911+02:00">
<stringId>Asia/Phnom_Penh</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="260" version="0" dateCreated="2016-10-05T12:18:08.871+02:00">
<stringId>Asia/Harbin</stringId>
<offsetString>+0800</offsetString>
</timeZone>
<timeZone id="227" version="0" dateCreated="2016-10-05T12:18:08.813+02:00">
<stringId>Antarctica/South_Pole</stringId>
<offsetString>+1200</offsetString>
</timeZone>
<timeZone id="194" version="0" dateCreated="2016-10-05T12:18:08.759+02:00">
<stringId>America/Santiago</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="161" version="0" dateCreated="2016-10-05T12:18:08.708+02:00">
<stringId>America/Miquelon</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="128" version="0" dateCreated="2016-10-05T12:18:08.647+02:00">
<stringId>America/Indiana/Marengo</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="95" version="0" dateCreated="2016-10-05T12:18:08.582+02:00">
<stringId>America/Chihuahua</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="62" version="0" dateCreated="2016-10-05T12:18:08.507+02:00">
<stringId>America/Argentina/ComodRivadavia</stringId>
<offsetString>-300</offsetString>
</timeZone>
<timeZone id="29" version="0" dateCreated="2016-10-05T12:18:08.429+02:00">
<stringId>Africa/Khartoum</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="591" version="0" dateCreated="2016-10-05T12:18:09.472+02:00">
<stringId>HST</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="558" version="0" dateCreated="2016-10-05T12:18:09.412+02:00">
<stringId>SystemV/AST4ADT</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="525" version="0" dateCreated="2016-10-05T12:18:09.351+02:00">
<stringId>Pacific/Honolulu</stringId>
<offsetString>-1000</offsetString>
</timeZone>
<timeZone id="492" version="0" dateCreated="2016-10-05T12:18:09.270+02:00">
<stringId>Indian/Mayotte</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="459" version="0" dateCreated="2016-10-05T12:18:09.207+02:00">
<stringId>Europe/Simferopol</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="426" version="0" dateCreated="2016-10-05T12:18:09.155+02:00">
<stringId>Europe/Budapest</stringId>
<offsetString>+0100</offsetString>
</timeZone>
<timeZone id="393" version="0" dateCreated="2016-10-05T12:18:09.100+02:00">
<stringId>Etc/GMT+7</stringId>
<offsetString>-700</offsetString>
</timeZone>
<timeZone id="360" version="0" dateCreated="2016-10-05T12:18:09.024+02:00">
<stringId>Brazil/Acre</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="327" version="0" dateCreated="2016-10-05T12:18:08.960+02:00">
<stringId>Atlantic/Canary</stringId>
<offsetString>+0000</offsetString>
</timeZone>
<timeZone id="294" version="0" dateCreated="2016-10-05T12:18:08.912+02:00">
<stringId>Asia/Pontianak</stringId>
<offsetString>+0700</offsetString>
</timeZone>
<timeZone id="261" version="0" dateCreated="2016-10-05T12:18:08.872+02:00">
<stringId>Asia/Hebron</stringId>
<offsetString>+0200</offsetString>
</timeZone>
<timeZone id="228" version="0" dateCreated="2016-10-05T12:18:08.814+02:00">
<stringId>Antarctica/Syowa</stringId>
<offsetString>+0300</offsetString>
</timeZone>
<timeZone id="195" version="0" dateCreated="2016-10-05T12:18:08.761+02:00">
<stringId>America/Santo_Domingo</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="162" version="0" dateCreated="2016-10-05T12:18:08.710+02:00">
<stringId>America/Moncton</stringId>
<offsetString>-400</offsetString>
</timeZone>
<timeZone id="129" version="0" dateCreated="2016-10-05T12:18:08.650+02:00">
<stringId>America/Indiana/Petersburg</stringId>
<offsetString>-500</offsetString>
</timeZone>
<timeZone id="96" version="0" dateCreated="2016-10-05T12:18:08.584+02:00">
<stringId>America/Coral_Harbour</stringId>
<offsetString>-500</offsetString>
</timeZone>
</set>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:26:16 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:18:08.510+0000",
"dateModified":null,
"stringId":"America/Argentina/Cordoba",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:18:08.432+0000",
"dateModified":null,
"stringId":"Africa/Kigali",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":592,
"version":0,
"dateCreated":"2016-10-05T10:18:09.474+0000",
"dateModified":null,
"stringId":"MST",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":559,
"version":0,
"dateCreated":"2016-10-05T10:18:09.415+0000",
"dateModified":null,
"stringId":"SystemV/CST6",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":526,
"version":0,
"dateCreated":"2016-10-05T10:18:09.352+0000",
"dateModified":null,
"stringId":"Pacific/Johnston",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":493,
"version":0,
"dateCreated":"2016-10-05T10:18:09.272+0000",
"dateModified":null,
"stringId":"Indian/Reunion",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":460,
"version":0,
"dateCreated":"2016-10-05T10:18:09.209+0000",
"dateModified":null,
"stringId":"Europe/Skopje",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":427,
"version":0,
"dateCreated":"2016-10-05T10:18:09.157+0000",
"dateModified":null,
"stringId":"Europe/Busingen",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":394,
"version":0,
"dateCreated":"2016-10-05T10:18:09.101+0000",
"dateModified":null,
"stringId":"Etc/GMT+8",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":361,
"version":0,
"dateCreated":"2016-10-05T10:18:09.026+0000",
"dateModified":null,
"stringId":"Brazil/DeNoronha",
"offsetString":"-200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":328,
"version":0,
"dateCreated":"2016-10-05T10:18:08.961+0000",
"dateModified":null,
"stringId":"Atlantic/Cape_Verde",
"offsetString":"-100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":295,
"version":0,
"dateCreated":"2016-10-05T10:18:08.913+0000",
"dateModified":null,
"stringId":"Asia/Pyongyang",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":262,
"version":0,
"dateCreated":"2016-10-05T10:18:08.874+0000",
"dateModified":null,
"stringId":"Asia/Ho_Chi_Minh",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":229,
"version":0,
"dateCreated":"2016-10-05T10:18:08.816+0000",
"dateModified":null,
"stringId":"Antarctica/Troll",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":196,
"version":0,
"dateCreated":"2016-10-05T10:18:08.763+0000",
"dateModified":null,
"stringId":"America/Sao_Paulo",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":163,
"version":0,
"dateCreated":"2016-10-05T10:18:08.712+0000",
"dateModified":null,
"stringId":"America/Monterrey",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":130,
"version":0,
"dateCreated":"2016-10-05T10:18:08.653+0000",
"dateModified":null,
"stringId":"America/Indiana/Tell_City",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":97,
"version":0,
"dateCreated":"2016-10-05T10:18:08.586+0000",
"dateModified":null,
"stringId":"America/Cordoba",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":64,
"version":0,
"dateCreated":"2016-10-05T10:18:08.512+0000",
"dateModified":null,
"stringId":"America/Argentina/Jujuy",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:18:08.434+0000",
"dateModified":null,
"stringId":"Africa/Kinshasa",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":593,
"version":0,
"dateCreated":"2016-10-05T10:18:09.475+0000",
"dateModified":null,
"stringId":"ACT",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":560,
"version":0,
"dateCreated":"2016-10-05T10:18:09.417+0000",
"dateModified":null,
"stringId":"SystemV/CST6CDT",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":527,
"version":0,
"dateCreated":"2016-10-05T10:18:09.354+0000",
"dateModified":null,
"stringId":"Pacific/Kiritimati",
"offsetString":"+1400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":494,
"version":0,
"dateCreated":"2016-10-05T10:18:09.273+0000",
"dateModified":null,
"stringId":"Iran",
"offsetString":"+0330"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":461,
"version":0,
"dateCreated":"2016-10-05T10:18:09.212+0000",
"dateModified":null,
"stringId":"Europe/Sofia",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":428,
"version":0,
"dateCreated":"2016-10-05T10:18:09.159+0000",
"dateModified":null,
"stringId":"Europe/Chisinau",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":395,
"version":0,
"dateCreated":"2016-10-05T10:18:09.104+0000",
"dateModified":null,
"stringId":"Etc/GMT+9",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":362,
"version":0,
"dateCreated":"2016-10-05T10:18:09.028+0000",
"dateModified":null,
"stringId":"Brazil/East",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":329,
"version":0,
"dateCreated":"2016-10-05T10:18:08.963+0000",
"dateModified":null,
"stringId":"Atlantic/Faeroe",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":296,
"version":0,
"dateCreated":"2016-10-05T10:18:08.914+0000",
"dateModified":null,
"stringId":"Asia/Qatar",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":263,
"version":0,
"dateCreated":"2016-10-05T10:18:08.876+0000",
"dateModified":null,
"stringId":"Asia/Hong_Kong",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":230,
"version":0,
"dateCreated":"2016-10-05T10:18:08.818+0000",
"dateModified":null,
"stringId":"Antarctica/Vostok",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":197,
"version":0,
"dateCreated":"2016-10-05T10:18:08.764+0000",
"dateModified":null,
"stringId":"America/Scoresbysund",
"offsetString":"-100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":164,
"version":0,
"dateCreated":"2016-10-05T10:18:08.714+0000",
"dateModified":null,
"stringId":"America/Montevideo",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":131,
"version":0,
"dateCreated":"2016-10-05T10:18:08.655+0000",
"dateModified":null,
"stringId":"America/Indiana/Vevay",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":98,
"version":0,
"dateCreated":"2016-10-05T10:18:08.587+0000",
"dateModified":null,
"stringId":"America/Costa_Rica",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":65,
"version":0,
"dateCreated":"2016-10-05T10:18:08.517+0000",
"dateModified":null,
"stringId":"America/Argentina/La_Rioja",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:18:08.436+0000",
"dateModified":null,
"stringId":"Africa/Lagos",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":594,
"version":0,
"dateCreated":"2016-10-05T10:18:09.477+0000",
"dateModified":null,
"stringId":"AET",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":561,
"version":0,
"dateCreated":"2016-10-05T10:18:09.419+0000",
"dateModified":null,
"stringId":"SystemV/EST5",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":528,
"version":0,
"dateCreated":"2016-10-05T10:18:09.356+0000",
"dateModified":null,
"stringId":"Pacific/Kosrae",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":495,
"version":0,
"dateCreated":"2016-10-05T10:18:09.278+0000",
"dateModified":null,
"stringId":"Israel",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":462,
"version":0,
"dateCreated":"2016-10-05T10:18:09.213+0000",
"dateModified":null,
"stringId":"Europe/Stockholm",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":429,
"version":0,
"dateCreated":"2016-10-05T10:18:09.160+0000",
"dateModified":null,
"stringId":"Europe/Copenhagen",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":396,
"version":0,
"dateCreated":"2016-10-05T10:18:09.106+0000",
"dateModified":null,
"stringId":"Etc/GMT-0",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":363,
"version":0,
"dateCreated":"2016-10-05T10:18:09.029+0000",
"dateModified":null,
"stringId":"Brazil/West",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":330,
"version":0,
"dateCreated":"2016-10-05T10:18:08.965+0000",
"dateModified":null,
"stringId":"Atlantic/Faroe",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":297,
"version":0,
"dateCreated":"2016-10-05T10:18:08.916+0000",
"dateModified":null,
"stringId":"Asia/Qyzylorda",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":264,
"version":0,
"dateCreated":"2016-10-05T10:18:08.877+0000",
"dateModified":null,
"stringId":"Asia/Hovd",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":231,
"version":0,
"dateCreated":"2016-10-05T10:18:08.820+0000",
"dateModified":null,
"stringId":"Arctic/Longyearbyen",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":198,
"version":0,
"dateCreated":"2016-10-05T10:18:08.767+0000",
"dateModified":null,
"stringId":"America/Shiprock",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":165,
"version":0,
"dateCreated":"2016-10-05T10:18:08.716+0000",
"dateModified":null,
"stringId":"America/Montreal",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":132,
"version":0,
"dateCreated":"2016-10-05T10:18:08.657+0000",
"dateModified":null,
"stringId":"America/Indiana/Vincennes",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":99,
"version":0,
"dateCreated":"2016-10-05T10:18:08.590+0000",
"dateModified":null,
"stringId":"America/Creston",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":66,
"version":0,
"dateCreated":"2016-10-05T10:18:08.519+0000",
"dateModified":null,
"stringId":"America/Argentina/Mendoza",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:18:08.438+0000",
"dateModified":null,
"stringId":"Africa/Libreville",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":595,
"version":0,
"dateCreated":"2016-10-05T10:18:09.479+0000",
"dateModified":null,
"stringId":"AGT",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":562,
"version":0,
"dateCreated":"2016-10-05T10:18:09.421+0000",
"dateModified":null,
"stringId":"SystemV/EST5EDT",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":529,
"version":0,
"dateCreated":"2016-10-05T10:18:09.357+0000",
"dateModified":null,
"stringId":"Pacific/Kwajalein",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":496,
"version":0,
"dateCreated":"2016-10-05T10:18:09.282+0000",
"dateModified":null,
"stringId":"Jamaica",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":463,
"version":0,
"dateCreated":"2016-10-05T10:18:09.216+0000",
"dateModified":null,
"stringId":"Europe/Tallinn",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":430,
"version":0,
"dateCreated":"2016-10-05T10:18:09.162+0000",
"dateModified":null,
"stringId":"Europe/Dublin",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":397,
"version":0,
"dateCreated":"2016-10-05T10:18:09.108+0000",
"dateModified":null,
"stringId":"Etc/GMT-1",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":364,
"version":0,
"dateCreated":"2016-10-05T10:18:09.031+0000",
"dateModified":null,
"stringId":"CET",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":331,
"version":0,
"dateCreated":"2016-10-05T10:18:08.966+0000",
"dateModified":null,
"stringId":"Atlantic/Jan_Mayen",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":298,
"version":0,
"dateCreated":"2016-10-05T10:18:08.917+0000",
"dateModified":null,
"stringId":"Asia/Rangoon",
"offsetString":"+0630"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":265,
"version":0,
"dateCreated":"2016-10-05T10:18:08.878+0000",
"dateModified":null,
"stringId":"Asia/Irkutsk",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":232,
"version":0,
"dateCreated":"2016-10-05T10:18:08.821+0000",
"dateModified":null,
"stringId":"Asia/Aden",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":199,
"version":0,
"dateCreated":"2016-10-05T10:18:08.769+0000",
"dateModified":null,
"stringId":"America/Sitka",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":166,
"version":0,
"dateCreated":"2016-10-05T10:18:08.718+0000",
"dateModified":null,
"stringId":"America/Montserrat",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":133,
"version":0,
"dateCreated":"2016-10-05T10:18:08.659+0000",
"dateModified":null,
"stringId":"America/Indiana/Winamac",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":100,
"version":0,
"dateCreated":"2016-10-05T10:18:08.592+0000",
"dateModified":null,
"stringId":"America/Cuiaba",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":67,
"version":0,
"dateCreated":"2016-10-05T10:18:08.522+0000",
"dateModified":null,
"stringId":"America/Argentina/Rio_Gallegos",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:18:08.440+0000",
"dateModified":null,
"stringId":"Africa/Lome",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:08.319+0000",
"dateModified":null,
"stringId":"Africa/Abidjan",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":596,
"version":0,
"dateCreated":"2016-10-05T10:18:09.481+0000",
"dateModified":null,
"stringId":"ART",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":563,
"version":0,
"dateCreated":"2016-10-05T10:18:09.423+0000",
"dateModified":null,
"stringId":"SystemV/HST10",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":530,
"version":0,
"dateCreated":"2016-10-05T10:18:09.359+0000",
"dateModified":null,
"stringId":"Pacific/Majuro",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":497,
"version":0,
"dateCreated":"2016-10-05T10:18:09.284+0000",
"dateModified":null,
"stringId":"Japan",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":464,
"version":0,
"dateCreated":"2016-10-05T10:18:09.218+0000",
"dateModified":null,
"stringId":"Europe/Tirane",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":431,
"version":0,
"dateCreated":"2016-10-05T10:18:09.164+0000",
"dateModified":null,
"stringId":"Europe/Gibraltar",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":398,
"version":0,
"dateCreated":"2016-10-05T10:18:09.110+0000",
"dateModified":null,
"stringId":"Etc/GMT-10",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":365,
"version":0,
"dateCreated":"2016-10-05T10:18:09.032+0000",
"dateModified":null,
"stringId":"CST6CDT",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":332,
"version":0,
"dateCreated":"2016-10-05T10:18:08.968+0000",
"dateModified":null,
"stringId":"Atlantic/Madeira",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":299,
"version":0,
"dateCreated":"2016-10-05T10:18:08.918+0000",
"dateModified":null,
"stringId":"Asia/Riyadh",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":266,
"version":0,
"dateCreated":"2016-10-05T10:18:08.879+0000",
"dateModified":null,
"stringId":"Asia/Istanbul",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":233,
"version":0,
"dateCreated":"2016-10-05T10:18:08.823+0000",
"dateModified":null,
"stringId":"Asia/Almaty",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":200,
"version":0,
"dateCreated":"2016-10-05T10:18:08.772+0000",
"dateModified":null,
"stringId":"America/St_Barthelemy",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":167,
"version":0,
"dateCreated":"2016-10-05T10:18:08.720+0000",
"dateModified":null,
"stringId":"America/Nassau",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":134,
"version":0,
"dateCreated":"2016-10-05T10:18:08.660+0000",
"dateModified":null,
"stringId":"America/Indianapolis",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":101,
"version":0,
"dateCreated":"2016-10-05T10:18:08.594+0000",
"dateModified":null,
"stringId":"America/Curacao",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":68,
"version":0,
"dateCreated":"2016-10-05T10:18:08.524+0000",
"dateModified":null,
"stringId":"America/Argentina/Salta",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:18:08.443+0000",
"dateModified":null,
"stringId":"Africa/Luanda",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:18:08.360+0000",
"dateModified":null,
"stringId":"Africa/Accra",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":597,
"version":0,
"dateCreated":"2016-10-05T10:18:09.483+0000",
"dateModified":null,
"stringId":"AST",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":564,
"version":0,
"dateCreated":"2016-10-05T10:18:09.424+0000",
"dateModified":null,
"stringId":"SystemV/MST7",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":531,
"version":0,
"dateCreated":"2016-10-05T10:18:09.361+0000",
"dateModified":null,
"stringId":"Pacific/Marquesas",
"offsetString":"-9-30"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":498,
"version":0,
"dateCreated":"2016-10-05T10:18:09.287+0000",
"dateModified":null,
"stringId":"Kwajalein",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":465,
"version":0,
"dateCreated":"2016-10-05T10:18:09.220+0000",
"dateModified":null,
"stringId":"Europe/Tiraspol",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":432,
"version":0,
"dateCreated":"2016-10-05T10:18:09.165+0000",
"dateModified":null,
"stringId":"Europe/Guernsey",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":399,
"version":0,
"dateCreated":"2016-10-05T10:18:09.112+0000",
"dateModified":null,
"stringId":"Etc/GMT-11",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":366,
"version":0,
"dateCreated":"2016-10-05T10:18:09.033+0000",
"dateModified":null,
"stringId":"Canada/Atlantic",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":333,
"version":0,
"dateCreated":"2016-10-05T10:18:08.969+0000",
"dateModified":null,
"stringId":"Atlantic/Reykjavik",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":300,
"version":0,
"dateCreated":"2016-10-05T10:18:08.919+0000",
"dateModified":null,
"stringId":"Asia/Saigon",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":267,
"version":0,
"dateCreated":"2016-10-05T10:18:08.880+0000",
"dateModified":null,
"stringId":"Asia/Jakarta",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":234,
"version":0,
"dateCreated":"2016-10-05T10:18:08.825+0000",
"dateModified":null,
"stringId":"Asia/Amman",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":201,
"version":0,
"dateCreated":"2016-10-05T10:18:08.774+0000",
"dateModified":null,
"stringId":"America/St_Johns",
"offsetString":"-3-30"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":168,
"version":0,
"dateCreated":"2016-10-05T10:18:08.721+0000",
"dateModified":null,
"stringId":"America/New_York",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":135,
"version":0,
"dateCreated":"2016-10-05T10:18:08.662+0000",
"dateModified":null,
"stringId":"America/Inuvik",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":102,
"version":0,
"dateCreated":"2016-10-05T10:18:08.596+0000",
"dateModified":null,
"stringId":"America/Danmarkshavn",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":69,
"version":0,
"dateCreated":"2016-10-05T10:18:08.525+0000",
"dateModified":null,
"stringId":"America/Argentina/San_Juan",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:18:08.445+0000",
"dateModified":null,
"stringId":"Africa/Lubumbashi",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:18:08.364+0000",
"dateModified":null,
"stringId":"Africa/Addis_Ababa",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":598,
"version":0,
"dateCreated":"2016-10-05T10:18:09.485+0000",
"dateModified":null,
"stringId":"BET",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":565,
"version":0,
"dateCreated":"2016-10-05T10:18:09.426+0000",
"dateModified":null,
"stringId":"SystemV/MST7MDT",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":532,
"version":0,
"dateCreated":"2016-10-05T10:18:09.362+0000",
"dateModified":null,
"stringId":"Pacific/Midway",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":499,
"version":0,
"dateCreated":"2016-10-05T10:18:09.293+0000",
"dateModified":null,
"stringId":"Libya",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":466,
"version":0,
"dateCreated":"2016-10-05T10:18:09.222+0000",
"dateModified":null,
"stringId":"Europe/Uzhgorod",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":433,
"version":0,
"dateCreated":"2016-10-05T10:18:09.167+0000",
"dateModified":null,
"stringId":"Europe/Helsinki",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":400,
"version":0,
"dateCreated":"2016-10-05T10:18:09.113+0000",
"dateModified":null,
"stringId":"Etc/GMT-12",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":367,
"version":0,
"dateCreated":"2016-10-05T10:18:09.035+0000",
"dateModified":null,
"stringId":"Canada/Central",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":334,
"version":0,
"dateCreated":"2016-10-05T10:18:08.972+0000",
"dateModified":null,
"stringId":"Atlantic/South_Georgia",
"offsetString":"-200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":301,
"version":0,
"dateCreated":"2016-10-05T10:18:08.921+0000",
"dateModified":null,
"stringId":"Asia/Sakhalin",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":268,
"version":0,
"dateCreated":"2016-10-05T10:18:08.881+0000",
"dateModified":null,
"stringId":"Asia/Jayapura",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":235,
"version":0,
"dateCreated":"2016-10-05T10:18:08.828+0000",
"dateModified":null,
"stringId":"Asia/Anadyr",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":202,
"version":0,
"dateCreated":"2016-10-05T10:18:08.776+0000",
"dateModified":null,
"stringId":"America/St_Kitts",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":169,
"version":0,
"dateCreated":"2016-10-05T10:18:08.723+0000",
"dateModified":null,
"stringId":"America/Nipigon",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":136,
"version":0,
"dateCreated":"2016-10-05T10:18:08.664+0000",
"dateModified":null,
"stringId":"America/Iqaluit",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":103,
"version":0,
"dateCreated":"2016-10-05T10:18:08.599+0000",
"dateModified":null,
"stringId":"America/Dawson",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":70,
"version":0,
"dateCreated":"2016-10-05T10:18:08.527+0000",
"dateModified":null,
"stringId":"America/Argentina/San_Luis",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":37,
"version":0,
"dateCreated":"2016-10-05T10:18:08.447+0000",
"dateModified":null,
"stringId":"Africa/Lusaka",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:18:08.367+0000",
"dateModified":null,
"stringId":"Africa/Algiers",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":599,
"version":0,
"dateCreated":"2016-10-05T10:18:09.487+0000",
"dateModified":null,
"stringId":"BST",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":566,
"version":0,
"dateCreated":"2016-10-05T10:18:09.427+0000",
"dateModified":null,
"stringId":"SystemV/PST8",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":533,
"version":0,
"dateCreated":"2016-10-05T10:18:09.364+0000",
"dateModified":null,
"stringId":"Pacific/Nauru",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":500,
"version":0,
"dateCreated":"2016-10-05T10:18:09.295+0000",
"dateModified":null,
"stringId":"MET",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":467,
"version":0,
"dateCreated":"2016-10-05T10:18:09.224+0000",
"dateModified":null,
"stringId":"Europe/Vaduz",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":434,
"version":0,
"dateCreated":"2016-10-05T10:18:09.168+0000",
"dateModified":null,
"stringId":"Europe/Isle_of_Man",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":401,
"version":0,
"dateCreated":"2016-10-05T10:18:09.115+0000",
"dateModified":null,
"stringId":"Etc/GMT-13",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":368,
"version":0,
"dateCreated":"2016-10-05T10:18:09.037+0000",
"dateModified":null,
"stringId":"Canada/East-Saskatchewan",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":335,
"version":0,
"dateCreated":"2016-10-05T10:18:08.974+0000",
"dateModified":null,
"stringId":"Atlantic/St_Helena",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":302,
"version":0,
"dateCreated":"2016-10-05T10:18:08.922+0000",
"dateModified":null,
"stringId":"Asia/Samarkand",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":269,
"version":0,
"dateCreated":"2016-10-05T10:18:08.882+0000",
"dateModified":null,
"stringId":"Asia/Jerusalem",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":236,
"version":0,
"dateCreated":"2016-10-05T10:18:08.829+0000",
"dateModified":null,
"stringId":"Asia/Aqtau",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":203,
"version":0,
"dateCreated":"2016-10-05T10:18:08.777+0000",
"dateModified":null,
"stringId":"America/St_Lucia",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":170,
"version":0,
"dateCreated":"2016-10-05T10:18:08.724+0000",
"dateModified":null,
"stringId":"America/Nome",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":137,
"version":0,
"dateCreated":"2016-10-05T10:18:08.666+0000",
"dateModified":null,
"stringId":"America/Jamaica",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":104,
"version":0,
"dateCreated":"2016-10-05T10:18:08.600+0000",
"dateModified":null,
"stringId":"America/Dawson_Creek",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":71,
"version":0,
"dateCreated":"2016-10-05T10:18:08.529+0000",
"dateModified":null,
"stringId":"America/Argentina/Tucuman",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:18:08.449+0000",
"dateModified":null,
"stringId":"Africa/Malabo",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:18:08.370+0000",
"dateModified":null,
"stringId":"Africa/Asmara",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":600,
"version":0,
"dateCreated":"2016-10-05T10:18:09.488+0000",
"dateModified":null,
"stringId":"CAT",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":567,
"version":0,
"dateCreated":"2016-10-05T10:18:09.429+0000",
"dateModified":null,
"stringId":"SystemV/PST8PDT",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":534,
"version":0,
"dateCreated":"2016-10-05T10:18:09.366+0000",
"dateModified":null,
"stringId":"Pacific/Niue",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":501,
"version":0,
"dateCreated":"2016-10-05T10:18:09.298+0000",
"dateModified":null,
"stringId":"MST7MDT",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":468,
"version":0,
"dateCreated":"2016-10-05T10:18:09.226+0000",
"dateModified":null,
"stringId":"Europe/Vatican",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":435,
"version":0,
"dateCreated":"2016-10-05T10:18:09.170+0000",
"dateModified":null,
"stringId":"Europe/Istanbul",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":402,
"version":0,
"dateCreated":"2016-10-05T10:18:09.117+0000",
"dateModified":null,
"stringId":"Etc/GMT-14",
"offsetString":"+1400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":369,
"version":0,
"dateCreated":"2016-10-05T10:18:09.039+0000",
"dateModified":null,
"stringId":"Canada/Eastern",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":336,
"version":0,
"dateCreated":"2016-10-05T10:18:08.977+0000",
"dateModified":null,
"stringId":"Atlantic/Stanley",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":303,
"version":0,
"dateCreated":"2016-10-05T10:18:08.923+0000",
"dateModified":null,
"stringId":"Asia/Seoul",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":270,
"version":0,
"dateCreated":"2016-10-05T10:18:08.883+0000",
"dateModified":null,
"stringId":"Asia/Kabul",
"offsetString":"+0430"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":237,
"version":0,
"dateCreated":"2016-10-05T10:18:08.831+0000",
"dateModified":null,
"stringId":"Asia/Aqtobe",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":204,
"version":0,
"dateCreated":"2016-10-05T10:18:08.779+0000",
"dateModified":null,
"stringId":"America/St_Thomas",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":171,
"version":0,
"dateCreated":"2016-10-05T10:18:08.726+0000",
"dateModified":null,
"stringId":"America/Noronha",
"offsetString":"-200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":138,
"version":0,
"dateCreated":"2016-10-05T10:18:08.667+0000",
"dateModified":null,
"stringId":"America/Jujuy",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":105,
"version":0,
"dateCreated":"2016-10-05T10:18:08.602+0000",
"dateModified":null,
"stringId":"America/Denver",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":72,
"version":0,
"dateCreated":"2016-10-05T10:18:08.530+0000",
"dateModified":null,
"stringId":"America/Argentina/Ushuaia",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":39,
"version":0,
"dateCreated":"2016-10-05T10:18:08.451+0000",
"dateModified":null,
"stringId":"Africa/Maputo",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:18:08.372+0000",
"dateModified":null,
"stringId":"Africa/Asmera",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":601,
"version":0,
"dateCreated":"2016-10-05T10:18:09.491+0000",
"dateModified":null,
"stringId":"CNT",
"offsetString":"-3-30"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":568,
"version":0,
"dateCreated":"2016-10-05T10:18:09.431+0000",
"dateModified":null,
"stringId":"SystemV/YST9",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":535,
"version":0,
"dateCreated":"2016-10-05T10:18:09.367+0000",
"dateModified":null,
"stringId":"Pacific/Norfolk",
"offsetString":"+1130"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":502,
"version":0,
"dateCreated":"2016-10-05T10:18:09.300+0000",
"dateModified":null,
"stringId":"Mexico/BajaNorte",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":469,
"version":0,
"dateCreated":"2016-10-05T10:18:09.228+0000",
"dateModified":null,
"stringId":"Europe/Vienna",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":436,
"version":0,
"dateCreated":"2016-10-05T10:18:09.171+0000",
"dateModified":null,
"stringId":"Europe/Jersey",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":403,
"version":0,
"dateCreated":"2016-10-05T10:18:09.118+0000",
"dateModified":null,
"stringId":"Etc/GMT-2",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":370,
"version":0,
"dateCreated":"2016-10-05T10:18:09.040+0000",
"dateModified":null,
"stringId":"Canada/Mountain",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":337,
"version":0,
"dateCreated":"2016-10-05T10:18:08.979+0000",
"dateModified":null,
"stringId":"Australia/ACT",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":304,
"version":0,
"dateCreated":"2016-10-05T10:18:08.924+0000",
"dateModified":null,
"stringId":"Asia/Shanghai",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":271,
"version":0,
"dateCreated":"2016-10-05T10:18:08.885+0000",
"dateModified":null,
"stringId":"Asia/Kamchatka",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":238,
"version":0,
"dateCreated":"2016-10-05T10:18:08.832+0000",
"dateModified":null,
"stringId":"Asia/Ashgabat",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":205,
"version":0,
"dateCreated":"2016-10-05T10:18:08.780+0000",
"dateModified":null,
"stringId":"America/St_Vincent",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":172,
"version":0,
"dateCreated":"2016-10-05T10:18:08.728+0000",
"dateModified":null,
"stringId":"America/North_Dakota/Beulah",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":139,
"version":0,
"dateCreated":"2016-10-05T10:18:08.669+0000",
"dateModified":null,
"stringId":"America/Juneau",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":106,
"version":0,
"dateCreated":"2016-10-05T10:18:08.605+0000",
"dateModified":null,
"stringId":"America/Detroit",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":73,
"version":0,
"dateCreated":"2016-10-05T10:18:08.532+0000",
"dateModified":null,
"stringId":"America/Aruba",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":40,
"version":0,
"dateCreated":"2016-10-05T10:18:08.453+0000",
"dateModified":null,
"stringId":"Africa/Maseru",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:18:08.375+0000",
"dateModified":null,
"stringId":"Africa/Bamako",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":602,
"version":0,
"dateCreated":"2016-10-05T10:18:09.493+0000",
"dateModified":null,
"stringId":"CST",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":569,
"version":0,
"dateCreated":"2016-10-05T10:18:09.433+0000",
"dateModified":null,
"stringId":"SystemV/YST9YDT",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":536,
"version":0,
"dateCreated":"2016-10-05T10:18:09.369+0000",
"dateModified":null,
"stringId":"Pacific/Noumea",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":503,
"version":0,
"dateCreated":"2016-10-05T10:18:09.301+0000",
"dateModified":null,
"stringId":"Mexico/BajaSur",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":470,
"version":0,
"dateCreated":"2016-10-05T10:18:09.230+0000",
"dateModified":null,
"stringId":"Europe/Vilnius",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":437,
"version":0,
"dateCreated":"2016-10-05T10:18:09.172+0000",
"dateModified":null,
"stringId":"Europe/Kaliningrad",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":404,
"version":0,
"dateCreated":"2016-10-05T10:18:09.120+0000",
"dateModified":null,
"stringId":"Etc/GMT-3",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":371,
"version":0,
"dateCreated":"2016-10-05T10:18:09.044+0000",
"dateModified":null,
"stringId":"Canada/Newfoundland",
"offsetString":"-3-30"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":338,
"version":0,
"dateCreated":"2016-10-05T10:18:08.982+0000",
"dateModified":null,
"stringId":"Australia/Adelaide",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":305,
"version":0,
"dateCreated":"2016-10-05T10:18:08.925+0000",
"dateModified":null,
"stringId":"Asia/Singapore",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":272,
"version":0,
"dateCreated":"2016-10-05T10:18:08.886+0000",
"dateModified":null,
"stringId":"Asia/Karachi",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":239,
"version":0,
"dateCreated":"2016-10-05T10:18:08.834+0000",
"dateModified":null,
"stringId":"Asia/Ashkhabad",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":206,
"version":0,
"dateCreated":"2016-10-05T10:18:08.781+0000",
"dateModified":null,
"stringId":"America/Swift_Current",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":173,
"version":0,
"dateCreated":"2016-10-05T10:18:08.730+0000",
"dateModified":null,
"stringId":"America/North_Dakota/Center",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":140,
"version":0,
"dateCreated":"2016-10-05T10:18:08.671+0000",
"dateModified":null,
"stringId":"America/Kentucky/Louisville",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":107,
"version":0,
"dateCreated":"2016-10-05T10:18:08.607+0000",
"dateModified":null,
"stringId":"America/Dominica",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":74,
"version":0,
"dateCreated":"2016-10-05T10:18:08.534+0000",
"dateModified":null,
"stringId":"America/Asuncion",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":41,
"version":0,
"dateCreated":"2016-10-05T10:18:08.456+0000",
"dateModified":null,
"stringId":"Africa/Mbabane",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:18:08.378+0000",
"dateModified":null,
"stringId":"Africa/Bangui",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":603,
"version":0,
"dateCreated":"2016-10-05T10:18:09.495+0000",
"dateModified":null,
"stringId":"CTT",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":570,
"version":0,
"dateCreated":"2016-10-05T10:18:09.434+0000",
"dateModified":null,
"stringId":"Turkey",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":537,
"version":0,
"dateCreated":"2016-10-05T10:18:09.371+0000",
"dateModified":null,
"stringId":"Pacific/Pago_Pago",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":504,
"version":0,
"dateCreated":"2016-10-05T10:18:09.304+0000",
"dateModified":null,
"stringId":"Mexico/General",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":471,
"version":0,
"dateCreated":"2016-10-05T10:18:09.231+0000",
"dateModified":null,
"stringId":"Europe/Volgograd",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":438,
"version":0,
"dateCreated":"2016-10-05T10:18:09.173+0000",
"dateModified":null,
"stringId":"Europe/Kiev",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":405,
"version":0,
"dateCreated":"2016-10-05T10:18:09.122+0000",
"dateModified":null,
"stringId":"Etc/GMT-4",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":372,
"version":0,
"dateCreated":"2016-10-05T10:18:09.046+0000",
"dateModified":null,
"stringId":"Canada/Pacific",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":339,
"version":0,
"dateCreated":"2016-10-05T10:18:08.985+0000",
"dateModified":null,
"stringId":"Australia/Brisbane",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":306,
"version":0,
"dateCreated":"2016-10-05T10:18:08.926+0000",
"dateModified":null,
"stringId":"Asia/Srednekolymsk",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":273,
"version":0,
"dateCreated":"2016-10-05T10:18:08.887+0000",
"dateModified":null,
"stringId":"Asia/Kashgar",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":240,
"version":0,
"dateCreated":"2016-10-05T10:18:08.836+0000",
"dateModified":null,
"stringId":"Asia/Baghdad",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":207,
"version":0,
"dateCreated":"2016-10-05T10:18:08.782+0000",
"dateModified":null,
"stringId":"America/Tegucigalpa",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":174,
"version":0,
"dateCreated":"2016-10-05T10:18:08.731+0000",
"dateModified":null,
"stringId":"America/North_Dakota/New_Salem",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":141,
"version":0,
"dateCreated":"2016-10-05T10:18:08.673+0000",
"dateModified":null,
"stringId":"America/Kentucky/Monticello",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":108,
"version":0,
"dateCreated":"2016-10-05T10:18:08.611+0000",
"dateModified":null,
"stringId":"America/Edmonton",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":75,
"version":0,
"dateCreated":"2016-10-05T10:18:08.536+0000",
"dateModified":null,
"stringId":"America/Atikokan",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":42,
"version":0,
"dateCreated":"2016-10-05T10:18:08.458+0000",
"dateModified":null,
"stringId":"Africa/Mogadishu",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:18:08.381+0000",
"dateModified":null,
"stringId":"Africa/Banjul",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":604,
"version":0,
"dateCreated":"2016-10-05T10:18:09.497+0000",
"dateModified":null,
"stringId":"EAT",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":571,
"version":0,
"dateCreated":"2016-10-05T10:18:09.436+0000",
"dateModified":null,
"stringId":"UCT",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":538,
"version":0,
"dateCreated":"2016-10-05T10:18:09.372+0000",
"dateModified":null,
"stringId":"Pacific/Palau",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":505,
"version":0,
"dateCreated":"2016-10-05T10:18:09.306+0000",
"dateModified":null,
"stringId":"NZ",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":472,
"version":0,
"dateCreated":"2016-10-05T10:18:09.233+0000",
"dateModified":null,
"stringId":"Europe/Warsaw",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":439,
"version":0,
"dateCreated":"2016-10-05T10:18:09.175+0000",
"dateModified":null,
"stringId":"Europe/Lisbon",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":406,
"version":0,
"dateCreated":"2016-10-05T10:18:09.123+0000",
"dateModified":null,
"stringId":"Etc/GMT-5",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":373,
"version":0,
"dateCreated":"2016-10-05T10:18:09.047+0000",
"dateModified":null,
"stringId":"Canada/Saskatchewan",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":340,
"version":0,
"dateCreated":"2016-10-05T10:18:08.987+0000",
"dateModified":null,
"stringId":"Australia/Broken_Hill",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":307,
"version":0,
"dateCreated":"2016-10-05T10:18:08.927+0000",
"dateModified":null,
"stringId":"Asia/Taipei",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":274,
"version":0,
"dateCreated":"2016-10-05T10:18:08.888+0000",
"dateModified":null,
"stringId":"Asia/Kathmandu",
"offsetString":"+0545"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":241,
"version":0,
"dateCreated":"2016-10-05T10:18:08.837+0000",
"dateModified":null,
"stringId":"Asia/Bahrain",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":208,
"version":0,
"dateCreated":"2016-10-05T10:18:08.784+0000",
"dateModified":null,
"stringId":"America/Thule",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":175,
"version":0,
"dateCreated":"2016-10-05T10:18:08.733+0000",
"dateModified":null,
"stringId":"America/Ojinaga",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":142,
"version":0,
"dateCreated":"2016-10-05T10:18:08.675+0000",
"dateModified":null,
"stringId":"America/Knox_IN",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":109,
"version":0,
"dateCreated":"2016-10-05T10:18:08.613+0000",
"dateModified":null,
"stringId":"America/Eirunepe",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":76,
"version":0,
"dateCreated":"2016-10-05T10:18:08.538+0000",
"dateModified":null,
"stringId":"America/Atka",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:18:08.461+0000",
"dateModified":null,
"stringId":"Africa/Monrovia",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:18:08.383+0000",
"dateModified":null,
"stringId":"Africa/Bissau",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":605,
"version":0,
"dateCreated":"2016-10-05T10:18:09.499+0000",
"dateModified":null,
"stringId":"ECT",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":572,
"version":0,
"dateCreated":"2016-10-05T10:18:09.438+0000",
"dateModified":null,
"stringId":"US/Alaska",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":539,
"version":0,
"dateCreated":"2016-10-05T10:18:09.374+0000",
"dateModified":null,
"stringId":"Pacific/Pitcairn",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":506,
"version":0,
"dateCreated":"2016-10-05T10:18:09.308+0000",
"dateModified":null,
"stringId":"NZ-CHAT",
"offsetString":"+1245"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":473,
"version":0,
"dateCreated":"2016-10-05T10:18:09.236+0000",
"dateModified":null,
"stringId":"Europe/Zagreb",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":440,
"version":0,
"dateCreated":"2016-10-05T10:18:09.177+0000",
"dateModified":null,
"stringId":"Europe/Ljubljana",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":407,
"version":0,
"dateCreated":"2016-10-05T10:18:09.125+0000",
"dateModified":null,
"stringId":"Etc/GMT-6",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":374,
"version":0,
"dateCreated":"2016-10-05T10:18:09.049+0000",
"dateModified":null,
"stringId":"Canada/Yukon",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":341,
"version":0,
"dateCreated":"2016-10-05T10:18:08.988+0000",
"dateModified":null,
"stringId":"Australia/Canberra",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":308,
"version":0,
"dateCreated":"2016-10-05T10:18:08.929+0000",
"dateModified":null,
"stringId":"Asia/Tashkent",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":275,
"version":0,
"dateCreated":"2016-10-05T10:18:08.890+0000",
"dateModified":null,
"stringId":"Asia/Katmandu",
"offsetString":"+0545"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":242,
"version":0,
"dateCreated":"2016-10-05T10:18:08.839+0000",
"dateModified":null,
"stringId":"Asia/Baku",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":209,
"version":0,
"dateCreated":"2016-10-05T10:18:08.786+0000",
"dateModified":null,
"stringId":"America/Thunder_Bay",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":176,
"version":0,
"dateCreated":"2016-10-05T10:18:08.735+0000",
"dateModified":null,
"stringId":"America/Panama",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":143,
"version":0,
"dateCreated":"2016-10-05T10:18:08.677+0000",
"dateModified":null,
"stringId":"America/Kralendijk",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":110,
"version":0,
"dateCreated":"2016-10-05T10:18:08.614+0000",
"dateModified":null,
"stringId":"America/El_Salvador",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":77,
"version":0,
"dateCreated":"2016-10-05T10:18:08.539+0000",
"dateModified":null,
"stringId":"America/Bahia",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":44,
"version":0,
"dateCreated":"2016-10-05T10:18:08.464+0000",
"dateModified":null,
"stringId":"Africa/Nairobi",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:18:08.385+0000",
"dateModified":null,
"stringId":"Africa/Blantyre",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":606,
"version":0,
"dateCreated":"2016-10-05T10:18:09.500+0000",
"dateModified":null,
"stringId":"IET",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":573,
"version":0,
"dateCreated":"2016-10-05T10:18:09.439+0000",
"dateModified":null,
"stringId":"US/Aleutian",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":540,
"version":0,
"dateCreated":"2016-10-05T10:18:09.376+0000",
"dateModified":null,
"stringId":"Pacific/Pohnpei",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":507,
"version":0,
"dateCreated":"2016-10-05T10:18:09.311+0000",
"dateModified":null,
"stringId":"Navajo",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":474,
"version":0,
"dateCreated":"2016-10-05T10:18:09.238+0000",
"dateModified":null,
"stringId":"Europe/Zaporozhye",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":441,
"version":0,
"dateCreated":"2016-10-05T10:18:09.179+0000",
"dateModified":null,
"stringId":"Europe/London",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":408,
"version":0,
"dateCreated":"2016-10-05T10:18:09.126+0000",
"dateModified":null,
"stringId":"Etc/GMT-7",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":375,
"version":0,
"dateCreated":"2016-10-05T10:18:09.050+0000",
"dateModified":null,
"stringId":"Chile/Continental",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":342,
"version":0,
"dateCreated":"2016-10-05T10:18:08.990+0000",
"dateModified":null,
"stringId":"Australia/Currie",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":309,
"version":0,
"dateCreated":"2016-10-05T10:18:08.930+0000",
"dateModified":null,
"stringId":"Asia/Tbilisi",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":276,
"version":0,
"dateCreated":"2016-10-05T10:18:08.891+0000",
"dateModified":null,
"stringId":"Asia/Khandyga",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":243,
"version":0,
"dateCreated":"2016-10-05T10:18:08.840+0000",
"dateModified":null,
"stringId":"Asia/Bangkok",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":210,
"version":0,
"dateCreated":"2016-10-05T10:18:08.788+0000",
"dateModified":null,
"stringId":"America/Tijuana",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":177,
"version":0,
"dateCreated":"2016-10-05T10:18:08.736+0000",
"dateModified":null,
"stringId":"America/Pangnirtung",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":144,
"version":0,
"dateCreated":"2016-10-05T10:18:08.678+0000",
"dateModified":null,
"stringId":"America/La_Paz",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":111,
"version":0,
"dateCreated":"2016-10-05T10:18:08.616+0000",
"dateModified":null,
"stringId":"America/Ensenada",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":78,
"version":0,
"dateCreated":"2016-10-05T10:18:08.542+0000",
"dateModified":null,
"stringId":"America/Bahia_Banderas",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":45,
"version":0,
"dateCreated":"2016-10-05T10:18:08.466+0000",
"dateModified":null,
"stringId":"Africa/Ndjamena",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:18:08.387+0000",
"dateModified":null,
"stringId":"Africa/Brazzaville",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":607,
"version":0,
"dateCreated":"2016-10-05T10:18:09.502+0000",
"dateModified":null,
"stringId":"IST",
"offsetString":"+0530"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":574,
"version":0,
"dateCreated":"2016-10-05T10:18:09.441+0000",
"dateModified":null,
"stringId":"US/Arizona",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":541,
"version":0,
"dateCreated":"2016-10-05T10:18:09.381+0000",
"dateModified":null,
"stringId":"Pacific/Ponape",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":508,
"version":0,
"dateCreated":"2016-10-05T10:18:09.314+0000",
"dateModified":null,
"stringId":"PRC",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":475,
"version":0,
"dateCreated":"2016-10-05T10:18:09.239+0000",
"dateModified":null,
"stringId":"Europe/Zurich",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":442,
"version":0,
"dateCreated":"2016-10-05T10:18:09.180+0000",
"dateModified":null,
"stringId":"Europe/Luxembourg",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":409,
"version":0,
"dateCreated":"2016-10-05T10:18:09.128+0000",
"dateModified":null,
"stringId":"Etc/GMT-8",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":376,
"version":0,
"dateCreated":"2016-10-05T10:18:09.052+0000",
"dateModified":null,
"stringId":"Chile/EasterIsland",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":343,
"version":0,
"dateCreated":"2016-10-05T10:18:08.993+0000",
"dateModified":null,
"stringId":"Australia/Darwin",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":310,
"version":0,
"dateCreated":"2016-10-05T10:18:08.933+0000",
"dateModified":null,
"stringId":"Asia/Tehran",
"offsetString":"+0330"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":277,
"version":0,
"dateCreated":"2016-10-05T10:18:08.892+0000",
"dateModified":null,
"stringId":"Asia/Kolkata",
"offsetString":"+0530"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":244,
"version":0,
"dateCreated":"2016-10-05T10:18:08.842+0000",
"dateModified":null,
"stringId":"Asia/Beirut",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":211,
"version":0,
"dateCreated":"2016-10-05T10:18:08.790+0000",
"dateModified":null,
"stringId":"America/Toronto",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":178,
"version":0,
"dateCreated":"2016-10-05T10:18:08.738+0000",
"dateModified":null,
"stringId":"America/Paramaribo",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":145,
"version":0,
"dateCreated":"2016-10-05T10:18:08.680+0000",
"dateModified":null,
"stringId":"America/Lima",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":112,
"version":0,
"dateCreated":"2016-10-05T10:18:08.618+0000",
"dateModified":null,
"stringId":"America/Fort_Wayne",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":79,
"version":0,
"dateCreated":"2016-10-05T10:18:08.544+0000",
"dateModified":null,
"stringId":"America/Barbados",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":46,
"version":0,
"dateCreated":"2016-10-05T10:18:08.469+0000",
"dateModified":null,
"stringId":"Africa/Niamey",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:18:08.391+0000",
"dateModified":null,
"stringId":"Africa/Bujumbura",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":608,
"version":0,
"dateCreated":"2016-10-05T10:18:09.503+0000",
"dateModified":null,
"stringId":"JST",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":575,
"version":0,
"dateCreated":"2016-10-05T10:18:09.443+0000",
"dateModified":null,
"stringId":"US/Central",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":542,
"version":0,
"dateCreated":"2016-10-05T10:18:09.383+0000",
"dateModified":null,
"stringId":"Pacific/Port_Moresby",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":509,
"version":0,
"dateCreated":"2016-10-05T10:18:09.316+0000",
"dateModified":null,
"stringId":"PST8PDT",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":476,
"version":0,
"dateCreated":"2016-10-05T10:18:09.242+0000",
"dateModified":null,
"stringId":"GB",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":443,
"version":0,
"dateCreated":"2016-10-05T10:18:09.181+0000",
"dateModified":null,
"stringId":"Europe/Madrid",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":410,
"version":0,
"dateCreated":"2016-10-05T10:18:09.130+0000",
"dateModified":null,
"stringId":"Etc/GMT-9",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":377,
"version":0,
"dateCreated":"2016-10-05T10:18:09.055+0000",
"dateModified":null,
"stringId":"Cuba",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":344,
"version":0,
"dateCreated":"2016-10-05T10:18:08.996+0000",
"dateModified":null,
"stringId":"Australia/Eucla",
"offsetString":"+0845"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":311,
"version":0,
"dateCreated":"2016-10-05T10:18:08.934+0000",
"dateModified":null,
"stringId":"Asia/Tel_Aviv",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":278,
"version":0,
"dateCreated":"2016-10-05T10:18:08.893+0000",
"dateModified":null,
"stringId":"Asia/Krasnoyarsk",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":245,
"version":0,
"dateCreated":"2016-10-05T10:18:08.844+0000",
"dateModified":null,
"stringId":"Asia/Bishkek",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":212,
"version":0,
"dateCreated":"2016-10-05T10:18:08.791+0000",
"dateModified":null,
"stringId":"America/Tortola",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":179,
"version":0,
"dateCreated":"2016-10-05T10:18:08.739+0000",
"dateModified":null,
"stringId":"America/Phoenix",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":146,
"version":0,
"dateCreated":"2016-10-05T10:18:08.682+0000",
"dateModified":null,
"stringId":"America/Los_Angeles",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":113,
"version":0,
"dateCreated":"2016-10-05T10:18:08.619+0000",
"dateModified":null,
"stringId":"America/Fortaleza",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":80,
"version":0,
"dateCreated":"2016-10-05T10:18:08.545+0000",
"dateModified":null,
"stringId":"America/Belem",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":47,
"version":0,
"dateCreated":"2016-10-05T10:18:08.471+0000",
"dateModified":null,
"stringId":"Africa/Nouakchott",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:18:08.393+0000",
"dateModified":null,
"stringId":"Africa/Cairo",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":609,
"version":0,
"dateCreated":"2016-10-05T10:18:09.505+0000",
"dateModified":null,
"stringId":"MIT",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":576,
"version":0,
"dateCreated":"2016-10-05T10:18:09.445+0000",
"dateModified":null,
"stringId":"US/East-Indiana",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":543,
"version":0,
"dateCreated":"2016-10-05T10:18:09.384+0000",
"dateModified":null,
"stringId":"Pacific/Rarotonga",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":510,
"version":0,
"dateCreated":"2016-10-05T10:18:09.319+0000",
"dateModified":null,
"stringId":"Pacific/Apia",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":477,
"version":0,
"dateCreated":"2016-10-05T10:18:09.243+0000",
"dateModified":null,
"stringId":"GB-Eire",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":444,
"version":0,
"dateCreated":"2016-10-05T10:18:09.183+0000",
"dateModified":null,
"stringId":"Europe/Malta",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":411,
"version":0,
"dateCreated":"2016-10-05T10:18:09.131+0000",
"dateModified":null,
"stringId":"Etc/GMT0",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":378,
"version":0,
"dateCreated":"2016-10-05T10:18:09.060+0000",
"dateModified":null,
"stringId":"EET",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":345,
"version":0,
"dateCreated":"2016-10-05T10:18:08.997+0000",
"dateModified":null,
"stringId":"Australia/Hobart",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":312,
"version":0,
"dateCreated":"2016-10-05T10:18:08.935+0000",
"dateModified":null,
"stringId":"Asia/Thimbu",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":279,
"version":0,
"dateCreated":"2016-10-05T10:18:08.894+0000",
"dateModified":null,
"stringId":"Asia/Kuala_Lumpur",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":246,
"version":0,
"dateCreated":"2016-10-05T10:18:08.845+0000",
"dateModified":null,
"stringId":"Asia/Brunei",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":213,
"version":0,
"dateCreated":"2016-10-05T10:18:08.793+0000",
"dateModified":null,
"stringId":"America/Vancouver",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":180,
"version":0,
"dateCreated":"2016-10-05T10:18:08.741+0000",
"dateModified":null,
"stringId":"America/Port-au-Prince",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":147,
"version":0,
"dateCreated":"2016-10-05T10:18:08.684+0000",
"dateModified":null,
"stringId":"America/Louisville",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":114,
"version":0,
"dateCreated":"2016-10-05T10:18:08.622+0000",
"dateModified":null,
"stringId":"America/Glace_Bay",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":81,
"version":0,
"dateCreated":"2016-10-05T10:18:08.547+0000",
"dateModified":null,
"stringId":"America/Belize",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":48,
"version":0,
"dateCreated":"2016-10-05T10:18:08.473+0000",
"dateModified":null,
"stringId":"Africa/Ouagadougou",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:18:08.395+0000",
"dateModified":null,
"stringId":"Africa/Casablanca",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":610,
"version":0,
"dateCreated":"2016-10-05T10:18:09.506+0000",
"dateModified":null,
"stringId":"NET",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":577,
"version":0,
"dateCreated":"2016-10-05T10:18:09.447+0000",
"dateModified":null,
"stringId":"US/Eastern",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":544,
"version":0,
"dateCreated":"2016-10-05T10:18:09.386+0000",
"dateModified":null,
"stringId":"Pacific/Saipan",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":511,
"version":0,
"dateCreated":"2016-10-05T10:18:09.321+0000",
"dateModified":null,
"stringId":"Pacific/Auckland",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":478,
"version":0,
"dateCreated":"2016-10-05T10:18:09.245+0000",
"dateModified":null,
"stringId":"GMT",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":445,
"version":0,
"dateCreated":"2016-10-05T10:18:09.184+0000",
"dateModified":null,
"stringId":"Europe/Mariehamn",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":412,
"version":0,
"dateCreated":"2016-10-05T10:18:09.133+0000",
"dateModified":null,
"stringId":"Etc/Greenwich",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":379,
"version":0,
"dateCreated":"2016-10-05T10:18:09.065+0000",
"dateModified":null,
"stringId":"EST5EDT",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":346,
"version":0,
"dateCreated":"2016-10-05T10:18:08.999+0000",
"dateModified":null,
"stringId":"Australia/LHI",
"offsetString":"+1030"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":313,
"version":0,
"dateCreated":"2016-10-05T10:18:08.937+0000",
"dateModified":null,
"stringId":"Asia/Thimphu",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":280,
"version":0,
"dateCreated":"2016-10-05T10:18:08.896+0000",
"dateModified":null,
"stringId":"Asia/Kuching",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":247,
"version":0,
"dateCreated":"2016-10-05T10:18:08.846+0000",
"dateModified":null,
"stringId":"Asia/Calcutta",
"offsetString":"+0530"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":214,
"version":0,
"dateCreated":"2016-10-05T10:18:08.795+0000",
"dateModified":null,
"stringId":"America/Virgin",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":181,
"version":0,
"dateCreated":"2016-10-05T10:18:08.742+0000",
"dateModified":null,
"stringId":"America/Port_of_Spain",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":148,
"version":0,
"dateCreated":"2016-10-05T10:18:08.686+0000",
"dateModified":null,
"stringId":"America/Lower_Princes",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":115,
"version":0,
"dateCreated":"2016-10-05T10:18:08.623+0000",
"dateModified":null,
"stringId":"America/Godthab",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":82,
"version":0,
"dateCreated":"2016-10-05T10:18:08.549+0000",
"dateModified":null,
"stringId":"America/Blanc-Sablon",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:18:08.477+0000",
"dateModified":null,
"stringId":"Africa/Porto-Novo",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:18:08.398+0000",
"dateModified":null,
"stringId":"Africa/Ceuta",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":611,
"version":0,
"dateCreated":"2016-10-05T10:18:09.508+0000",
"dateModified":null,
"stringId":"NST",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":578,
"version":0,
"dateCreated":"2016-10-05T10:18:09.449+0000",
"dateModified":null,
"stringId":"US/Hawaii",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":545,
"version":0,
"dateCreated":"2016-10-05T10:18:09.388+0000",
"dateModified":null,
"stringId":"Pacific/Samoa",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":512,
"version":0,
"dateCreated":"2016-10-05T10:18:09.323+0000",
"dateModified":null,
"stringId":"Pacific/Bougainville",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":479,
"version":0,
"dateCreated":"2016-10-05T10:18:09.246+0000",
"dateModified":null,
"stringId":"GMT0",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":446,
"version":0,
"dateCreated":"2016-10-05T10:18:09.186+0000",
"dateModified":null,
"stringId":"Europe/Minsk",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":413,
"version":0,
"dateCreated":"2016-10-05T10:18:09.134+0000",
"dateModified":null,
"stringId":"Etc/UCT",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":380,
"version":0,
"dateCreated":"2016-10-05T10:18:09.067+0000",
"dateModified":null,
"stringId":"Egypt",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":347,
"version":0,
"dateCreated":"2016-10-05T10:18:09.000+0000",
"dateModified":null,
"stringId":"Australia/Lindeman",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":314,
"version":0,
"dateCreated":"2016-10-05T10:18:08.938+0000",
"dateModified":null,
"stringId":"Asia/Tokyo",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":281,
"version":0,
"dateCreated":"2016-10-05T10:18:08.897+0000",
"dateModified":null,
"stringId":"Asia/Kuwait",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":248,
"version":0,
"dateCreated":"2016-10-05T10:18:08.848+0000",
"dateModified":null,
"stringId":"Asia/Chita",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":215,
"version":0,
"dateCreated":"2016-10-05T10:18:08.797+0000",
"dateModified":null,
"stringId":"America/Whitehorse",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":182,
"version":0,
"dateCreated":"2016-10-05T10:18:08.744+0000",
"dateModified":null,
"stringId":"America/Porto_Acre",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":149,
"version":0,
"dateCreated":"2016-10-05T10:18:08.688+0000",
"dateModified":null,
"stringId":"America/Maceio",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":116,
"version":0,
"dateCreated":"2016-10-05T10:18:08.625+0000",
"dateModified":null,
"stringId":"America/Goose_Bay",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":83,
"version":0,
"dateCreated":"2016-10-05T10:18:08.552+0000",
"dateModified":null,
"stringId":"America/Boa_Vista",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":50,
"version":0,
"dateCreated":"2016-10-05T10:18:08.479+0000",
"dateModified":null,
"stringId":"Africa/Sao_Tome",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:18:08.400+0000",
"dateModified":null,
"stringId":"Africa/Conakry",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":612,
"version":0,
"dateCreated":"2016-10-05T10:18:09.510+0000",
"dateModified":null,
"stringId":"PLT",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":579,
"version":0,
"dateCreated":"2016-10-05T10:18:09.450+0000",
"dateModified":null,
"stringId":"US/Indiana-Starke",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":546,
"version":0,
"dateCreated":"2016-10-05T10:18:09.389+0000",
"dateModified":null,
"stringId":"Pacific/Tahiti",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":513,
"version":0,
"dateCreated":"2016-10-05T10:18:09.327+0000",
"dateModified":null,
"stringId":"Pacific/Chatham",
"offsetString":"+1245"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":480,
"version":0,
"dateCreated":"2016-10-05T10:18:09.248+0000",
"dateModified":null,
"stringId":"Greenwich",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":447,
"version":0,
"dateCreated":"2016-10-05T10:18:09.187+0000",
"dateModified":null,
"stringId":"Europe/Monaco",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":414,
"version":0,
"dateCreated":"2016-10-05T10:18:09.136+0000",
"dateModified":null,
"stringId":"Etc/UTC",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":381,
"version":0,
"dateCreated":"2016-10-05T10:18:09.069+0000",
"dateModified":null,
"stringId":"Eire",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":348,
"version":0,
"dateCreated":"2016-10-05T10:18:09.001+0000",
"dateModified":null,
"stringId":"Australia/Lord_Howe",
"offsetString":"+1030"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":315,
"version":0,
"dateCreated":"2016-10-05T10:18:08.940+0000",
"dateModified":null,
"stringId":"Asia/Ujung_Pandang",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":282,
"version":0,
"dateCreated":"2016-10-05T10:18:08.898+0000",
"dateModified":null,
"stringId":"Asia/Macao",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":249,
"version":0,
"dateCreated":"2016-10-05T10:18:08.849+0000",
"dateModified":null,
"stringId":"Asia/Choibalsan",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":216,
"version":0,
"dateCreated":"2016-10-05T10:18:08.798+0000",
"dateModified":null,
"stringId":"America/Winnipeg",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":183,
"version":0,
"dateCreated":"2016-10-05T10:18:08.745+0000",
"dateModified":null,
"stringId":"America/Porto_Velho",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":150,
"version":0,
"dateCreated":"2016-10-05T10:18:08.690+0000",
"dateModified":null,
"stringId":"America/Managua",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":117,
"version":0,
"dateCreated":"2016-10-05T10:18:08.627+0000",
"dateModified":null,
"stringId":"America/Grand_Turk",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":84,
"version":0,
"dateCreated":"2016-10-05T10:18:08.554+0000",
"dateModified":null,
"stringId":"America/Bogota",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:18:08.482+0000",
"dateModified":null,
"stringId":"Africa/Timbuktu",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:18:08.403+0000",
"dateModified":null,
"stringId":"Africa/Dakar",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":613,
"version":0,
"dateCreated":"2016-10-05T10:18:09.512+0000",
"dateModified":null,
"stringId":"PNT",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":580,
"version":0,
"dateCreated":"2016-10-05T10:18:09.452+0000",
"dateModified":null,
"stringId":"US/Michigan",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":547,
"version":0,
"dateCreated":"2016-10-05T10:18:09.391+0000",
"dateModified":null,
"stringId":"Pacific/Tarawa",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":514,
"version":0,
"dateCreated":"2016-10-05T10:18:09.330+0000",
"dateModified":null,
"stringId":"Pacific/Chuuk",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":481,
"version":0,
"dateCreated":"2016-10-05T10:18:09.249+0000",
"dateModified":null,
"stringId":"Hongkong",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":448,
"version":0,
"dateCreated":"2016-10-05T10:18:09.189+0000",
"dateModified":null,
"stringId":"Europe/Moscow",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":415,
"version":0,
"dateCreated":"2016-10-05T10:18:09.137+0000",
"dateModified":null,
"stringId":"Etc/Universal",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":382,
"version":0,
"dateCreated":"2016-10-05T10:18:09.072+0000",
"dateModified":null,
"stringId":"Etc/GMT",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":349,
"version":0,
"dateCreated":"2016-10-05T10:18:09.003+0000",
"dateModified":null,
"stringId":"Australia/Melbourne",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":316,
"version":0,
"dateCreated":"2016-10-05T10:18:08.941+0000",
"dateModified":null,
"stringId":"Asia/Ulaanbaatar",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":283,
"version":0,
"dateCreated":"2016-10-05T10:18:08.900+0000",
"dateModified":null,
"stringId":"Asia/Macau",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":250,
"version":0,
"dateCreated":"2016-10-05T10:18:08.851+0000",
"dateModified":null,
"stringId":"Asia/Chongqing",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":217,
"version":0,
"dateCreated":"2016-10-05T10:18:08.799+0000",
"dateModified":null,
"stringId":"America/Yakutat",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":184,
"version":0,
"dateCreated":"2016-10-05T10:18:08.746+0000",
"dateModified":null,
"stringId":"America/Puerto_Rico",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":151,
"version":0,
"dateCreated":"2016-10-05T10:18:08.692+0000",
"dateModified":null,
"stringId":"America/Manaus",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":118,
"version":0,
"dateCreated":"2016-10-05T10:18:08.629+0000",
"dateModified":null,
"stringId":"America/Grenada",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":85,
"version":0,
"dateCreated":"2016-10-05T10:18:08.557+0000",
"dateModified":null,
"stringId":"America/Boise",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:18:08.484+0000",
"dateModified":null,
"stringId":"Africa/Tripoli",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:18:08.405+0000",
"dateModified":null,
"stringId":"Africa/Dar_es_Salaam",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":614,
"version":0,
"dateCreated":"2016-10-05T10:18:09.513+0000",
"dateModified":null,
"stringId":"PRT",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":581,
"version":0,
"dateCreated":"2016-10-05T10:18:09.454+0000",
"dateModified":null,
"stringId":"US/Mountain",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":548,
"version":0,
"dateCreated":"2016-10-05T10:18:09.393+0000",
"dateModified":null,
"stringId":"Pacific/Tongatapu",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":515,
"version":0,
"dateCreated":"2016-10-05T10:18:09.332+0000",
"dateModified":null,
"stringId":"Pacific/Easter",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":482,
"version":0,
"dateCreated":"2016-10-05T10:18:09.251+0000",
"dateModified":null,
"stringId":"Iceland",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":449,
"version":0,
"dateCreated":"2016-10-05T10:18:09.190+0000",
"dateModified":null,
"stringId":"Europe/Nicosia",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":416,
"version":0,
"dateCreated":"2016-10-05T10:18:09.139+0000",
"dateModified":null,
"stringId":"Etc/Zulu",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":383,
"version":0,
"dateCreated":"2016-10-05T10:18:09.076+0000",
"dateModified":null,
"stringId":"Etc/GMT+0",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":350,
"version":0,
"dateCreated":"2016-10-05T10:18:09.006+0000",
"dateModified":null,
"stringId":"Australia/NSW",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":317,
"version":0,
"dateCreated":"2016-10-05T10:18:08.942+0000",
"dateModified":null,
"stringId":"Asia/Ulan_Bator",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":284,
"version":0,
"dateCreated":"2016-10-05T10:18:08.901+0000",
"dateModified":null,
"stringId":"Asia/Magadan",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":251,
"version":0,
"dateCreated":"2016-10-05T10:18:08.852+0000",
"dateModified":null,
"stringId":"Asia/Chungking",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":218,
"version":0,
"dateCreated":"2016-10-05T10:18:08.801+0000",
"dateModified":null,
"stringId":"America/Yellowknife",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":185,
"version":0,
"dateCreated":"2016-10-05T10:18:08.747+0000",
"dateModified":null,
"stringId":"America/Rainy_River",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":152,
"version":0,
"dateCreated":"2016-10-05T10:18:08.693+0000",
"dateModified":null,
"stringId":"America/Marigot",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":119,
"version":0,
"dateCreated":"2016-10-05T10:18:08.630+0000",
"dateModified":null,
"stringId":"America/Guadeloupe",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":86,
"version":0,
"dateCreated":"2016-10-05T10:18:08.563+0000",
"dateModified":null,
"stringId":"America/Buenos_Aires",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:18:08.487+0000",
"dateModified":null,
"stringId":"Africa/Tunis",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:18:08.408+0000",
"dateModified":null,
"stringId":"Africa/Djibouti",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":615,
"version":0,
"dateCreated":"2016-10-05T10:18:09.515+0000",
"dateModified":null,
"stringId":"PST",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":582,
"version":0,
"dateCreated":"2016-10-05T10:18:09.456+0000",
"dateModified":null,
"stringId":"US/Pacific",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":549,
"version":0,
"dateCreated":"2016-10-05T10:18:09.395+0000",
"dateModified":null,
"stringId":"Pacific/Truk",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":516,
"version":0,
"dateCreated":"2016-10-05T10:18:09.336+0000",
"dateModified":null,
"stringId":"Pacific/Efate",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":483,
"version":0,
"dateCreated":"2016-10-05T10:18:09.253+0000",
"dateModified":null,
"stringId":"Indian/Antananarivo",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":450,
"version":0,
"dateCreated":"2016-10-05T10:18:09.192+0000",
"dateModified":null,
"stringId":"Europe/Oslo",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":417,
"version":0,
"dateCreated":"2016-10-05T10:18:09.140+0000",
"dateModified":null,
"stringId":"Europe/Amsterdam",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":384,
"version":0,
"dateCreated":"2016-10-05T10:18:09.079+0000",
"dateModified":null,
"stringId":"Etc/GMT+1",
"offsetString":"-100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":351,
"version":0,
"dateCreated":"2016-10-05T10:18:09.008+0000",
"dateModified":null,
"stringId":"Australia/North",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":318,
"version":0,
"dateCreated":"2016-10-05T10:18:08.944+0000",
"dateModified":null,
"stringId":"Asia/Urumqi",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":285,
"version":0,
"dateCreated":"2016-10-05T10:18:08.902+0000",
"dateModified":null,
"stringId":"Asia/Makassar",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":252,
"version":0,
"dateCreated":"2016-10-05T10:18:08.854+0000",
"dateModified":null,
"stringId":"Asia/Colombo",
"offsetString":"+0530"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":219,
"version":0,
"dateCreated":"2016-10-05T10:18:08.802+0000",
"dateModified":null,
"stringId":"Antarctica/Casey",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":186,
"version":0,
"dateCreated":"2016-10-05T10:18:08.748+0000",
"dateModified":null,
"stringId":"America/Rankin_Inlet",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":153,
"version":0,
"dateCreated":"2016-10-05T10:18:08.695+0000",
"dateModified":null,
"stringId":"America/Martinique",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":120,
"version":0,
"dateCreated":"2016-10-05T10:18:08.632+0000",
"dateModified":null,
"stringId":"America/Guatemala",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":87,
"version":0,
"dateCreated":"2016-10-05T10:18:08.567+0000",
"dateModified":null,
"stringId":"America/Cambridge_Bay",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:18:08.489+0000",
"dateModified":null,
"stringId":"Africa/Windhoek",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:18:08.410+0000",
"dateModified":null,
"stringId":"Africa/Douala",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":616,
"version":0,
"dateCreated":"2016-10-05T10:18:09.516+0000",
"dateModified":null,
"stringId":"SST",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":583,
"version":0,
"dateCreated":"2016-10-05T10:18:09.458+0000",
"dateModified":null,
"stringId":"US/Pacific-New",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":550,
"version":0,
"dateCreated":"2016-10-05T10:18:09.396+0000",
"dateModified":null,
"stringId":"Pacific/Wake",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":517,
"version":0,
"dateCreated":"2016-10-05T10:18:09.337+0000",
"dateModified":null,
"stringId":"Pacific/Enderbury",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":484,
"version":0,
"dateCreated":"2016-10-05T10:18:09.256+0000",
"dateModified":null,
"stringId":"Indian/Chagos",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":451,
"version":0,
"dateCreated":"2016-10-05T10:18:09.194+0000",
"dateModified":null,
"stringId":"Europe/Paris",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":418,
"version":0,
"dateCreated":"2016-10-05T10:18:09.142+0000",
"dateModified":null,
"stringId":"Europe/Andorra",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":385,
"version":0,
"dateCreated":"2016-10-05T10:18:09.081+0000",
"dateModified":null,
"stringId":"Etc/GMT+10",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":352,
"version":0,
"dateCreated":"2016-10-05T10:18:09.010+0000",
"dateModified":null,
"stringId":"Australia/Perth",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":319,
"version":0,
"dateCreated":"2016-10-05T10:18:08.945+0000",
"dateModified":null,
"stringId":"Asia/Ust-Nera",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":286,
"version":0,
"dateCreated":"2016-10-05T10:18:08.903+0000",
"dateModified":null,
"stringId":"Asia/Manila",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":253,
"version":0,
"dateCreated":"2016-10-05T10:18:08.857+0000",
"dateModified":null,
"stringId":"Asia/Dacca",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":220,
"version":0,
"dateCreated":"2016-10-05T10:18:08.803+0000",
"dateModified":null,
"stringId":"Antarctica/Davis",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":187,
"version":0,
"dateCreated":"2016-10-05T10:18:08.749+0000",
"dateModified":null,
"stringId":"America/Recife",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":154,
"version":0,
"dateCreated":"2016-10-05T10:18:08.697+0000",
"dateModified":null,
"stringId":"America/Matamoros",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":121,
"version":0,
"dateCreated":"2016-10-05T10:18:08.634+0000",
"dateModified":null,
"stringId":"America/Guayaquil",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":88,
"version":0,
"dateCreated":"2016-10-05T10:18:08.571+0000",
"dateModified":null,
"stringId":"America/Campo_Grande",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:18:08.491+0000",
"dateModified":null,
"stringId":"America/Adak",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:18:08.413+0000",
"dateModified":null,
"stringId":"Africa/El_Aaiun",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":617,
"version":0,
"dateCreated":"2016-10-05T10:18:09.520+0000",
"dateModified":null,
"stringId":"VST",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":584,
"version":0,
"dateCreated":"2016-10-05T10:18:09.460+0000",
"dateModified":null,
"stringId":"US/Samoa",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":551,
"version":0,
"dateCreated":"2016-10-05T10:18:09.398+0000",
"dateModified":null,
"stringId":"Pacific/Wallis",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":518,
"version":0,
"dateCreated":"2016-10-05T10:18:09.339+0000",
"dateModified":null,
"stringId":"Pacific/Fakaofo",
"offsetString":"+1300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":485,
"version":0,
"dateCreated":"2016-10-05T10:18:09.257+0000",
"dateModified":null,
"stringId":"Indian/Christmas",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":452,
"version":0,
"dateCreated":"2016-10-05T10:18:09.195+0000",
"dateModified":null,
"stringId":"Europe/Podgorica",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":419,
"version":0,
"dateCreated":"2016-10-05T10:18:09.144+0000",
"dateModified":null,
"stringId":"Europe/Athens",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":386,
"version":0,
"dateCreated":"2016-10-05T10:18:09.087+0000",
"dateModified":null,
"stringId":"Etc/GMT+11",
"offsetString":"-1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":353,
"version":0,
"dateCreated":"2016-10-05T10:18:09.012+0000",
"dateModified":null,
"stringId":"Australia/Queensland",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":320,
"version":0,
"dateCreated":"2016-10-05T10:18:08.947+0000",
"dateModified":null,
"stringId":"Asia/Vientiane",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":287,
"version":0,
"dateCreated":"2016-10-05T10:18:08.904+0000",
"dateModified":null,
"stringId":"Asia/Muscat",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":254,
"version":0,
"dateCreated":"2016-10-05T10:18:08.860+0000",
"dateModified":null,
"stringId":"Asia/Damascus",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":221,
"version":0,
"dateCreated":"2016-10-05T10:18:08.805+0000",
"dateModified":null,
"stringId":"Antarctica/DumontDUrville",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":188,
"version":0,
"dateCreated":"2016-10-05T10:18:08.750+0000",
"dateModified":null,
"stringId":"America/Regina",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":155,
"version":0,
"dateCreated":"2016-10-05T10:18:08.698+0000",
"dateModified":null,
"stringId":"America/Mazatlan",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":122,
"version":0,
"dateCreated":"2016-10-05T10:18:08.636+0000",
"dateModified":null,
"stringId":"America/Guyana",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":89,
"version":0,
"dateCreated":"2016-10-05T10:18:08.573+0000",
"dateModified":null,
"stringId":"America/Cancun",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:18:08.493+0000",
"dateModified":null,
"stringId":"America/Anchorage",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:18:08.415+0000",
"dateModified":null,
"stringId":"Africa/Freetown",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":585,
"version":0,
"dateCreated":"2016-10-05T10:18:09.461+0000",
"dateModified":null,
"stringId":"UTC",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":552,
"version":0,
"dateCreated":"2016-10-05T10:18:09.400+0000",
"dateModified":null,
"stringId":"Pacific/Yap",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":519,
"version":0,
"dateCreated":"2016-10-05T10:18:09.341+0000",
"dateModified":null,
"stringId":"Pacific/Fiji",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":486,
"version":0,
"dateCreated":"2016-10-05T10:18:09.260+0000",
"dateModified":null,
"stringId":"Indian/Cocos",
"offsetString":"+0630"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":453,
"version":0,
"dateCreated":"2016-10-05T10:18:09.197+0000",
"dateModified":null,
"stringId":"Europe/Prague",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":420,
"version":0,
"dateCreated":"2016-10-05T10:18:09.146+0000",
"dateModified":null,
"stringId":"Europe/Belfast",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":387,
"version":0,
"dateCreated":"2016-10-05T10:18:09.090+0000",
"dateModified":null,
"stringId":"Etc/GMT+12",
"offsetString":"-1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":354,
"version":0,
"dateCreated":"2016-10-05T10:18:09.013+0000",
"dateModified":null,
"stringId":"Australia/South",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":321,
"version":0,
"dateCreated":"2016-10-05T10:18:08.948+0000",
"dateModified":null,
"stringId":"Asia/Vladivostok",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":288,
"version":0,
"dateCreated":"2016-10-05T10:18:08.905+0000",
"dateModified":null,
"stringId":"Asia/Nicosia",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":255,
"version":0,
"dateCreated":"2016-10-05T10:18:08.862+0000",
"dateModified":null,
"stringId":"Asia/Dhaka",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":222,
"version":0,
"dateCreated":"2016-10-05T10:18:08.806+0000",
"dateModified":null,
"stringId":"Antarctica/Macquarie",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":189,
"version":0,
"dateCreated":"2016-10-05T10:18:08.751+0000",
"dateModified":null,
"stringId":"America/Resolute",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":156,
"version":0,
"dateCreated":"2016-10-05T10:18:08.700+0000",
"dateModified":null,
"stringId":"America/Mendoza",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":123,
"version":0,
"dateCreated":"2016-10-05T10:18:08.638+0000",
"dateModified":null,
"stringId":"America/Halifax",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":90,
"version":0,
"dateCreated":"2016-10-05T10:18:08.575+0000",
"dateModified":null,
"stringId":"America/Caracas",
"offsetString":"-4-30"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:18:08.496+0000",
"dateModified":null,
"stringId":"America/Anguilla",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:18:08.418+0000",
"dateModified":null,
"stringId":"Africa/Gaborone",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":586,
"version":0,
"dateCreated":"2016-10-05T10:18:09.463+0000",
"dateModified":null,
"stringId":"Universal",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":553,
"version":0,
"dateCreated":"2016-10-05T10:18:09.403+0000",
"dateModified":null,
"stringId":"Poland",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":520,
"version":0,
"dateCreated":"2016-10-05T10:18:09.343+0000",
"dateModified":null,
"stringId":"Pacific/Funafuti",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":487,
"version":0,
"dateCreated":"2016-10-05T10:18:09.262+0000",
"dateModified":null,
"stringId":"Indian/Comoro",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":454,
"version":0,
"dateCreated":"2016-10-05T10:18:09.199+0000",
"dateModified":null,
"stringId":"Europe/Riga",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":421,
"version":0,
"dateCreated":"2016-10-05T10:18:09.147+0000",
"dateModified":null,
"stringId":"Europe/Belgrade",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":388,
"version":0,
"dateCreated":"2016-10-05T10:18:09.091+0000",
"dateModified":null,
"stringId":"Etc/GMT+2",
"offsetString":"-200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":355,
"version":0,
"dateCreated":"2016-10-05T10:18:09.015+0000",
"dateModified":null,
"stringId":"Australia/Sydney",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":322,
"version":0,
"dateCreated":"2016-10-05T10:18:08.950+0000",
"dateModified":null,
"stringId":"Asia/Yakutsk",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":289,
"version":0,
"dateCreated":"2016-10-05T10:18:08.907+0000",
"dateModified":null,
"stringId":"Asia/Novokuznetsk",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":256,
"version":0,
"dateCreated":"2016-10-05T10:18:08.864+0000",
"dateModified":null,
"stringId":"Asia/Dili",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":223,
"version":0,
"dateCreated":"2016-10-05T10:18:08.807+0000",
"dateModified":null,
"stringId":"Antarctica/Mawson",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":190,
"version":0,
"dateCreated":"2016-10-05T10:18:08.753+0000",
"dateModified":null,
"stringId":"America/Rio_Branco",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":157,
"version":0,
"dateCreated":"2016-10-05T10:18:08.702+0000",
"dateModified":null,
"stringId":"America/Menominee",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":124,
"version":0,
"dateCreated":"2016-10-05T10:18:08.640+0000",
"dateModified":null,
"stringId":"America/Havana",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":91,
"version":0,
"dateCreated":"2016-10-05T10:18:08.576+0000",
"dateModified":null,
"stringId":"America/Catamarca",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:18:08.498+0000",
"dateModified":null,
"stringId":"America/Antigua",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:18:08.421+0000",
"dateModified":null,
"stringId":"Africa/Harare",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":587,
"version":0,
"dateCreated":"2016-10-05T10:18:09.465+0000",
"dateModified":null,
"stringId":"W-SU",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":554,
"version":0,
"dateCreated":"2016-10-05T10:18:09.405+0000",
"dateModified":null,
"stringId":"Portugal",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":521,
"version":0,
"dateCreated":"2016-10-05T10:18:09.344+0000",
"dateModified":null,
"stringId":"Pacific/Galapagos",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":488,
"version":0,
"dateCreated":"2016-10-05T10:18:09.264+0000",
"dateModified":null,
"stringId":"Indian/Kerguelen",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":455,
"version":0,
"dateCreated":"2016-10-05T10:18:09.200+0000",
"dateModified":null,
"stringId":"Europe/Rome",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":422,
"version":0,
"dateCreated":"2016-10-05T10:18:09.149+0000",
"dateModified":null,
"stringId":"Europe/Berlin",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":389,
"version":0,
"dateCreated":"2016-10-05T10:18:09.093+0000",
"dateModified":null,
"stringId":"Etc/GMT+3",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":356,
"version":0,
"dateCreated":"2016-10-05T10:18:09.017+0000",
"dateModified":null,
"stringId":"Australia/Tasmania",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":323,
"version":0,
"dateCreated":"2016-10-05T10:18:08.952+0000",
"dateModified":null,
"stringId":"Asia/Yekaterinburg",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":290,
"version":0,
"dateCreated":"2016-10-05T10:18:08.908+0000",
"dateModified":null,
"stringId":"Asia/Novosibirsk",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":257,
"version":0,
"dateCreated":"2016-10-05T10:18:08.866+0000",
"dateModified":null,
"stringId":"Asia/Dubai",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":224,
"version":0,
"dateCreated":"2016-10-05T10:18:08.809+0000",
"dateModified":null,
"stringId":"Antarctica/McMurdo",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":191,
"version":0,
"dateCreated":"2016-10-05T10:18:08.755+0000",
"dateModified":null,
"stringId":"America/Rosario",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":158,
"version":0,
"dateCreated":"2016-10-05T10:18:08.704+0000",
"dateModified":null,
"stringId":"America/Merida",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":125,
"version":0,
"dateCreated":"2016-10-05T10:18:08.642+0000",
"dateModified":null,
"stringId":"America/Hermosillo",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":92,
"version":0,
"dateCreated":"2016-10-05T10:18:08.578+0000",
"dateModified":null,
"stringId":"America/Cayenne",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:18:08.500+0000",
"dateModified":null,
"stringId":"America/Araguaina",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:18:08.423+0000",
"dateModified":null,
"stringId":"Africa/Johannesburg",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":588,
"version":0,
"dateCreated":"2016-10-05T10:18:09.467+0000",
"dateModified":null,
"stringId":"WET",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":555,
"version":0,
"dateCreated":"2016-10-05T10:18:09.407+0000",
"dateModified":null,
"stringId":"ROK",
"offsetString":"+0900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":522,
"version":0,
"dateCreated":"2016-10-05T10:18:09.345+0000",
"dateModified":null,
"stringId":"Pacific/Gambier",
"offsetString":"-900"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":489,
"version":0,
"dateCreated":"2016-10-05T10:18:09.266+0000",
"dateModified":null,
"stringId":"Indian/Mahe",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":456,
"version":0,
"dateCreated":"2016-10-05T10:18:09.202+0000",
"dateModified":null,
"stringId":"Europe/Samara",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":423,
"version":0,
"dateCreated":"2016-10-05T10:18:09.150+0000",
"dateModified":null,
"stringId":"Europe/Bratislava",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":390,
"version":0,
"dateCreated":"2016-10-05T10:18:09.094+0000",
"dateModified":null,
"stringId":"Etc/GMT+4",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":357,
"version":0,
"dateCreated":"2016-10-05T10:18:09.019+0000",
"dateModified":null,
"stringId":"Australia/Victoria",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":324,
"version":0,
"dateCreated":"2016-10-05T10:18:08.954+0000",
"dateModified":null,
"stringId":"Asia/Yerevan",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":291,
"version":0,
"dateCreated":"2016-10-05T10:18:08.909+0000",
"dateModified":null,
"stringId":"Asia/Omsk",
"offsetString":"+0600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":258,
"version":0,
"dateCreated":"2016-10-05T10:18:08.867+0000",
"dateModified":null,
"stringId":"Asia/Dushanbe",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":225,
"version":0,
"dateCreated":"2016-10-05T10:18:08.810+0000",
"dateModified":null,
"stringId":"Antarctica/Palmer",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":192,
"version":0,
"dateCreated":"2016-10-05T10:18:08.756+0000",
"dateModified":null,
"stringId":"America/Santa_Isabel",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":159,
"version":0,
"dateCreated":"2016-10-05T10:18:08.705+0000",
"dateModified":null,
"stringId":"America/Metlakatla",
"offsetString":"-800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":126,
"version":0,
"dateCreated":"2016-10-05T10:18:08.644+0000",
"dateModified":null,
"stringId":"America/Indiana/Indianapolis",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":93,
"version":0,
"dateCreated":"2016-10-05T10:18:08.579+0000",
"dateModified":null,
"stringId":"America/Cayman",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":60,
"version":0,
"dateCreated":"2016-10-05T10:18:08.503+0000",
"dateModified":null,
"stringId":"America/Argentina/Buenos_Aires",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:18:08.425+0000",
"dateModified":null,
"stringId":"Africa/Juba",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":589,
"version":0,
"dateCreated":"2016-10-05T10:18:09.469+0000",
"dateModified":null,
"stringId":"Zulu",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":556,
"version":0,
"dateCreated":"2016-10-05T10:18:09.409+0000",
"dateModified":null,
"stringId":"Singapore",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":523,
"version":0,
"dateCreated":"2016-10-05T10:18:09.347+0000",
"dateModified":null,
"stringId":"Pacific/Guadalcanal",
"offsetString":"+1100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":490,
"version":0,
"dateCreated":"2016-10-05T10:18:09.267+0000",
"dateModified":null,
"stringId":"Indian/Maldives",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":457,
"version":0,
"dateCreated":"2016-10-05T10:18:09.204+0000",
"dateModified":null,
"stringId":"Europe/San_Marino",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":424,
"version":0,
"dateCreated":"2016-10-05T10:18:09.151+0000",
"dateModified":null,
"stringId":"Europe/Brussels",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":391,
"version":0,
"dateCreated":"2016-10-05T10:18:09.096+0000",
"dateModified":null,
"stringId":"Etc/GMT+5",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":358,
"version":0,
"dateCreated":"2016-10-05T10:18:09.021+0000",
"dateModified":null,
"stringId":"Australia/West",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":325,
"version":0,
"dateCreated":"2016-10-05T10:18:08.956+0000",
"dateModified":null,
"stringId":"Atlantic/Azores",
"offsetString":"-100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":292,
"version":0,
"dateCreated":"2016-10-05T10:18:08.910+0000",
"dateModified":null,
"stringId":"Asia/Oral",
"offsetString":"+0500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":259,
"version":0,
"dateCreated":"2016-10-05T10:18:08.869+0000",
"dateModified":null,
"stringId":"Asia/Gaza",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":226,
"version":0,
"dateCreated":"2016-10-05T10:18:08.811+0000",
"dateModified":null,
"stringId":"Antarctica/Rothera",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":193,
"version":0,
"dateCreated":"2016-10-05T10:18:08.758+0000",
"dateModified":null,
"stringId":"America/Santarem",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":160,
"version":0,
"dateCreated":"2016-10-05T10:18:08.706+0000",
"dateModified":null,
"stringId":"America/Mexico_City",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":127,
"version":0,
"dateCreated":"2016-10-05T10:18:08.645+0000",
"dateModified":null,
"stringId":"America/Indiana/Knox",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":94,
"version":0,
"dateCreated":"2016-10-05T10:18:08.581+0000",
"dateModified":null,
"stringId":"America/Chicago",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:18:08.505+0000",
"dateModified":null,
"stringId":"America/Argentina/Catamarca",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:18:08.427+0000",
"dateModified":null,
"stringId":"Africa/Kampala",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":590,
"version":0,
"dateCreated":"2016-10-05T10:18:09.470+0000",
"dateModified":null,
"stringId":"EST",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":557,
"version":0,
"dateCreated":"2016-10-05T10:18:09.411+0000",
"dateModified":null,
"stringId":"SystemV/AST4",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":524,
"version":0,
"dateCreated":"2016-10-05T10:18:09.348+0000",
"dateModified":null,
"stringId":"Pacific/Guam",
"offsetString":"+1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":491,
"version":0,
"dateCreated":"2016-10-05T10:18:09.269+0000",
"dateModified":null,
"stringId":"Indian/Mauritius",
"offsetString":"+0400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":458,
"version":0,
"dateCreated":"2016-10-05T10:18:09.205+0000",
"dateModified":null,
"stringId":"Europe/Sarajevo",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":425,
"version":0,
"dateCreated":"2016-10-05T10:18:09.154+0000",
"dateModified":null,
"stringId":"Europe/Bucharest",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":392,
"version":0,
"dateCreated":"2016-10-05T10:18:09.098+0000",
"dateModified":null,
"stringId":"Etc/GMT+6",
"offsetString":"-600"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":359,
"version":0,
"dateCreated":"2016-10-05T10:18:09.022+0000",
"dateModified":null,
"stringId":"Australia/Yancowinna",
"offsetString":"+0930"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":326,
"version":0,
"dateCreated":"2016-10-05T10:18:08.958+0000",
"dateModified":null,
"stringId":"Atlantic/Bermuda",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":293,
"version":0,
"dateCreated":"2016-10-05T10:18:08.911+0000",
"dateModified":null,
"stringId":"Asia/Phnom_Penh",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":260,
"version":0,
"dateCreated":"2016-10-05T10:18:08.871+0000",
"dateModified":null,
"stringId":"Asia/Harbin",
"offsetString":"+0800"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":227,
"version":0,
"dateCreated":"2016-10-05T10:18:08.813+0000",
"dateModified":null,
"stringId":"Antarctica/South_Pole",
"offsetString":"+1200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":194,
"version":0,
"dateCreated":"2016-10-05T10:18:08.759+0000",
"dateModified":null,
"stringId":"America/Santiago",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":161,
"version":0,
"dateCreated":"2016-10-05T10:18:08.708+0000",
"dateModified":null,
"stringId":"America/Miquelon",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":128,
"version":0,
"dateCreated":"2016-10-05T10:18:08.647+0000",
"dateModified":null,
"stringId":"America/Indiana/Marengo",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":95,
"version":0,
"dateCreated":"2016-10-05T10:18:08.582+0000",
"dateModified":null,
"stringId":"America/Chihuahua",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":62,
"version":0,
"dateCreated":"2016-10-05T10:18:08.507+0000",
"dateModified":null,
"stringId":"America/Argentina/ComodRivadavia",
"offsetString":"-300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:18:08.429+0000",
"dateModified":null,
"stringId":"Africa/Khartoum",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":591,
"version":0,
"dateCreated":"2016-10-05T10:18:09.472+0000",
"dateModified":null,
"stringId":"HST",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":558,
"version":0,
"dateCreated":"2016-10-05T10:18:09.412+0000",
"dateModified":null,
"stringId":"SystemV/AST4ADT",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":525,
"version":0,
"dateCreated":"2016-10-05T10:18:09.351+0000",
"dateModified":null,
"stringId":"Pacific/Honolulu",
"offsetString":"-1000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":492,
"version":0,
"dateCreated":"2016-10-05T10:18:09.270+0000",
"dateModified":null,
"stringId":"Indian/Mayotte",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":459,
"version":0,
"dateCreated":"2016-10-05T10:18:09.207+0000",
"dateModified":null,
"stringId":"Europe/Simferopol",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":426,
"version":0,
"dateCreated":"2016-10-05T10:18:09.155+0000",
"dateModified":null,
"stringId":"Europe/Budapest",
"offsetString":"+0100"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":393,
"version":0,
"dateCreated":"2016-10-05T10:18:09.100+0000",
"dateModified":null,
"stringId":"Etc/GMT+7",
"offsetString":"-700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":360,
"version":0,
"dateCreated":"2016-10-05T10:18:09.024+0000",
"dateModified":null,
"stringId":"Brazil/Acre",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":327,
"version":0,
"dateCreated":"2016-10-05T10:18:08.960+0000",
"dateModified":null,
"stringId":"Atlantic/Canary",
"offsetString":"+0000"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":294,
"version":0,
"dateCreated":"2016-10-05T10:18:08.912+0000",
"dateModified":null,
"stringId":"Asia/Pontianak",
"offsetString":"+0700"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":261,
"version":0,
"dateCreated":"2016-10-05T10:18:08.872+0000",
"dateModified":null,
"stringId":"Asia/Hebron",
"offsetString":"+0200"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":228,
"version":0,
"dateCreated":"2016-10-05T10:18:08.814+0000",
"dateModified":null,
"stringId":"Antarctica/Syowa",
"offsetString":"+0300"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":195,
"version":0,
"dateCreated":"2016-10-05T10:18:08.761+0000",
"dateModified":null,
"stringId":"America/Santo_Domingo",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":162,
"version":0,
"dateCreated":"2016-10-05T10:18:08.710+0000",
"dateModified":null,
"stringId":"America/Moncton",
"offsetString":"-400"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":129,
"version":0,
"dateCreated":"2016-10-05T10:18:08.650+0000",
"dateModified":null,
"stringId":"America/Indiana/Petersburg",
"offsetString":"-500"
},
{
"@class":"com.sohnar.trafficlite.transfer.dbenums.TimeZoneTO",
"id":96,
"version":0,
"dateCreated":"2016-10-05T10:18:08.584+0000",
"dateModified":null,
"stringId":"America/Coral_Harbour",
"offsetString":"-500"
}
]
Returns page of invoice objects.
https://api.sohnar.com/TrafficLiteServer/openapi/invoice
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter to limit result. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/invoice HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/invoice HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:37 GMT
<pagedResult maxResults="5" windowSize="5" currentPage="1">
<invoice id="5" version="0" dateCreated="2016-10-05T12:19:15.327+02:00">
<invoiceNumber>IN5</invoiceNumber>
<issueDate>2016-10-05T12:19:15.321+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>26</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="108" version="0" dateCreated="2016-10-05T12:19:15.328+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>577</id>
</jobTaskId>
<uuid>61d90f64-8e58-4d66-a9f9-f6da231e78c3</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="109" version="0" dateCreated="2016-10-05T12:19:15.329+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>576</id>
</jobTaskId>
<uuid>2642390a-c683-4c24-a900-750bf363a459</uuid>
<invoicedNet>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="111" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>579</id>
</jobTaskId>
<uuid>8ba34d04-9d85-4deb-9488-c15597b03c4a</uuid>
<invoicedNet>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="110" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>578</id>
</jobTaskId>
<uuid>404a33e8-5568-4408-a987-1784e5a15d45</uuid>
<invoicedNet>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
<invoice id="4" version="0" dateCreated="2016-10-05T12:19:14.806+02:00">
<invoiceNumber>IN4</invoiceNumber>
<issueDate>2016-10-05T12:19:14.743+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>27</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="61" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>611</id>
</jobTaskId>
<uuid>9f9a6457-7686-4e2b-9394-973e83fb13e8</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="78" version="0" dateCreated="2016-10-05T12:19:14.838+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>626</id>
</jobTaskId>
<uuid>92cf135e-ba38-4797-a330-659413544552</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="99" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>607</id>
</jobTaskId>
<uuid>5c5c7252-5863-4715-aa8a-5d2cee80970f</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="100" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>636</id>
</jobTaskId>
<uuid>61d1f761-091d-41f2-8b34-41cbbc42c0e9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="84" version="0" dateCreated="2016-10-05T12:19:14.844+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>608</id>
</jobTaskId>
<uuid>db7d6f83-350f-473d-85c4-93126a7241cd</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="94" version="0" dateCreated="2016-10-05T12:19:14.853+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>630</id>
</jobTaskId>
<uuid>3836657f-bd52-42b3-bd3b-d9a8e77e11a0</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="57" version="0" dateCreated="2016-10-05T12:19:14.813+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>581</id>
</jobTaskId>
<uuid>e032d946-b859-48b3-8d94-0ac4b3c3dae0</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="96" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>609</id>
</jobTaskId>
<uuid>8e9a85f3-d7f0-4d3a-9e45-485a0130b854</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="70" version="0" dateCreated="2016-10-05T12:19:14.830+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>631</id>
</jobTaskId>
<uuid>21cffa8c-84bb-46ed-8591-f3c1fc6dd999</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="64" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>587</id>
</jobTaskId>
<uuid>5f48d52b-158c-4783-8141-4b252c4acf5a</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="104" version="0" dateCreated="2016-10-05T12:19:14.863+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>586</id>
</jobTaskId>
<uuid>bced3309-dd3a-4bea-a23b-131580c767f2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="62" version="0" dateCreated="2016-10-05T12:19:14.822+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>584</id>
</jobTaskId>
<uuid>35b60963-88e9-4de3-a61d-474493926f46</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="74" version="0" dateCreated="2016-10-05T12:19:14.834+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>612</id>
</jobTaskId>
<uuid>a13bb6b0-bbc5-467f-a547-1b0daf290bf5</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="97" version="0" dateCreated="2016-10-05T12:19:14.856+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>601</id>
</jobTaskId>
<uuid>284de946-8b8d-474b-81d7-00f7a0f9f2fb</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="85" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>617</id>
</jobTaskId>
<uuid>5606a802-9f81-4e23-b761-53452d63a2a6</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="87" version="0" dateCreated="2016-10-05T12:19:14.843+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>597</id>
</jobTaskId>
<uuid>c79f1a93-c4d9-4de2-98ed-20ce95431160</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="67" version="0" dateCreated="2016-10-05T12:19:14.827+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>585</id>
</jobTaskId>
<uuid>347e1d01-be52-4b34-96b5-eefed41d2ce4</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="58" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>618</id>
</jobTaskId>
<uuid>c9f783e8-d3fd-4771-adc1-af2816fda630</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="55" version="0" dateCreated="2016-10-05T12:19:14.816+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>582</id>
</jobTaskId>
<uuid>ee59ef9c-1e57-4ac8-b173-057d39c0e1dd</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="73" version="0" dateCreated="2016-10-05T12:19:14.833+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>621</id>
</jobTaskId>
<uuid>1cbcf959-5669-451e-93c9-98749d5cadda</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="80" version="0" dateCreated="2016-10-05T12:19:14.840+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>616</id>
</jobTaskId>
<uuid>fb855908-51ef-444b-9cc1-929fc61c8cce</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="88" version="0" dateCreated="2016-10-05T12:19:14.847+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>580</id>
</jobTaskId>
<uuid>00029b2c-52f4-409d-a2fb-16282b3ddb69</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="68" version="0" dateCreated="2016-10-05T12:19:14.828+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>624</id>
</jobTaskId>
<uuid>0b2f5e10-3546-4bd1-9711-83b676ed6dc0</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="89" version="0" dateCreated="2016-10-05T12:19:14.848+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>632</id>
</jobTaskId>
<uuid>f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="92" version="0" dateCreated="2016-10-05T12:19:14.852+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>634</id>
</jobTaskId>
<uuid>ae961427-8cbb-461d-a1b4-35b7a094ead7</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="102" version="0" dateCreated="2016-10-05T12:19:14.861+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>619</id>
</jobTaskId>
<uuid>6a1cac34-efb0-4cbb-9803-4094d42fb5f4</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="54" version="0" dateCreated="2016-10-05T12:19:14.814+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>589</id>
</jobTaskId>
<uuid>90b59842-ffbe-4344-9b7a-3027f94a2bdc</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="59" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>622</id>
</jobTaskId>
<uuid>47bf01c7-6026-4d09-9778-3ea7aaf4d057</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="66" version="0" dateCreated="2016-10-05T12:19:14.826+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>628</id>
</jobTaskId>
<uuid>f6c6b1e7-e3bf-4059-929a-6d279a2ca517</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="83" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>592</id>
</jobTaskId>
<uuid>c3d4c143-44ab-4747-89bd-99dafe59a31a</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="63" version="0" dateCreated="2016-10-05T12:19:14.820+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>620</id>
</jobTaskId>
<uuid>1f09bfeb-ff54-49dc-afae-89d4efa53ad8</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="51" version="0" dateCreated="2016-10-05T12:19:14.807+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>613</id>
</jobTaskId>
<uuid>dee7ae9b-0086-4a53-ab1d-1bb174817f84</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="53" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>598</id>
</jobTaskId>
<uuid>9059e279-0870-4c1e-8780-697ef47118b2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="103" version="0" dateCreated="2016-10-05T12:19:14.862+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>595</id>
</jobTaskId>
<uuid>a607aad3-d9f5-48d0-9644-fac150b36029</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="75" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>583</id>
</jobTaskId>
<uuid>10479b19-16d7-455f-81c4-4abb65c61c0a</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="49" version="0" dateCreated="2016-10-05T12:19:14.809+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>615</id>
</jobTaskId>
<uuid>d79aaeb2-13ed-4186-a5b6-ae2503507508</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="69" version="0" dateCreated="2016-10-05T12:19:14.825+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>594</id>
</jobTaskId>
<uuid>3ee9145a-daa4-4dbe-9ece-20473d78da0e</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="71" version="0" dateCreated="2016-10-05T12:19:14.831+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>610</id>
</jobTaskId>
<uuid>801f582c-6553-4479-a0ab-0e5552c6b5f9</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="101" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>614</id>
</jobTaskId>
<uuid>0c869b0d-a0ff-45d2-bdca-6cdd49525506</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="50" version="0" dateCreated="2016-10-05T12:19:14.810+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>635</id>
</jobTaskId>
<uuid>fa5eb789-5330-4a68-83c1-f97f7d395d41</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="91" version="0" dateCreated="2016-10-05T12:19:14.851+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>604</id>
</jobTaskId>
<uuid>896991b6-1c57-43f0-b373-dd388e5358ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="56" version="0" dateCreated="2016-10-05T12:19:14.817+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>637</id>
</jobTaskId>
<uuid>1d7f6522-e386-4613-b599-c84653002971</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="105" version="0" dateCreated="2016-10-05T12:19:14.860+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>627</id>
</jobTaskId>
<uuid>a71060f2-4b65-4d1a-94ee-d85939b679a4</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="72" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>639</id>
</jobTaskId>
<uuid>4d747ece-32ad-4b55-bec8-576186877a32</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="81" version="0" dateCreated="2016-10-05T12:19:14.837+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>596</id>
</jobTaskId>
<uuid>bf7d4c2c-2208-4264-aced-0401083a3278</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="65" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>633</id>
</jobTaskId>
<uuid>5793b299-1971-45d9-a34c-3713b10d5253</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="98" version="0" dateCreated="2016-10-05T12:19:14.857+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>605</id>
</jobTaskId>
<uuid>fe6690ec-6cae-4be3-9333-218254d3e3a0</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="107" version="0" dateCreated="2016-10-05T12:19:14.866+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>603</id>
</jobTaskId>
<uuid>1dd02975-9a03-4b5e-acf1-f7a583b765d2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="86" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>629</id>
</jobTaskId>
<uuid>1087589d-a66d-4429-9117-3e392b4a8d28</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="77" version="0" dateCreated="2016-10-05T12:19:14.836+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>588</id>
</jobTaskId>
<uuid>d20eb07b-d50d-4ce6-93b1-bb9f5cefa427</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="93" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>623</id>
</jobTaskId>
<uuid>299bc63f-910a-4d76-aec2-bfa90550025c</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="76" version="0" dateCreated="2016-10-05T12:19:14.835+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>590</id>
</jobTaskId>
<uuid>7f3171ca-74af-42a0-8bdd-3108b49c325e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="48" version="0" dateCreated="2016-10-05T12:19:14.808+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>593</id>
</jobTaskId>
<uuid>dd67433a-3af9-47b2-9d87-7e0490cce01a</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="79" version="0" dateCreated="2016-10-05T12:19:14.839+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>600</id>
</jobTaskId>
<uuid>7ab9a513-871b-4f80-ad2b-4cab55d6f91f</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="52" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>602</id>
</jobTaskId>
<uuid>ce771224-8665-4c37-be0c-d8ce813afec5</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="82" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>591</id>
</jobTaskId>
<uuid>d67af635-0c6d-4e33-b2c0-1deca2ed81f6</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="95" version="0" dateCreated="2016-10-05T12:19:14.854+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>606</id>
</jobTaskId>
<uuid>0dccf07a-72f3-4470-b229-54f012ead263</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="106" version="0" dateCreated="2016-10-05T12:19:14.865+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>625</id>
</jobTaskId>
<uuid>4eca1cf1-19bd-41b3-916e-91be2304d760</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="90" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>599</id>
</jobTaskId>
<uuid>c8010cf0-9142-452b-aad5-6d1d4ba6fb35</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="60" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>638</id>
</jobTaskId>
<uuid>d574a471-fc5a-476a-9f04-be8027f0c866</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
<invoice id="3" version="0" dateCreated="2016-10-05T12:19:10.772+02:00">
<invoiceNumber>IN3</invoiceNumber>
<issueDate>2016-10-05T12:19:10.764+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>28</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="44" version="0" dateCreated="2016-10-05T12:19:10.777+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>640</id>
</jobTaskId>
<uuid>0b568b89-25da-4579-ad4d-3893c8f92a23</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="39" version="0" dateCreated="2016-10-05T12:19:10.773+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>643</id>
</jobTaskId>
<uuid>24707461-a2bc-477d-9f3e-383297e37582</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="46" version="0" dateCreated="2016-10-05T12:19:10.779+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>642</id>
</jobTaskId>
<uuid>dc5ce255-e091-4f85-a781-d6d6dc66bb52</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="47" version="0" dateCreated="2016-10-05T12:19:10.780+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>650</id>
</jobTaskId>
<uuid>5f987bba-811d-4dc1-8f0b-3928706b4594</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="41" version="0" dateCreated="2016-10-05T12:19:10.775+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>649</id>
</jobTaskId>
<uuid>7a91ddf7-91c9-4119-8d42-09868d99bc7f</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="42" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>644</id>
</jobTaskId>
<uuid>3626e30e-0f6b-4514-bd1f-e83758814567</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="40" version="0" dateCreated="2016-10-05T12:19:10.774+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>648</id>
</jobTaskId>
<uuid>5135008e-7e23-40a9-911a-e91e4d75922d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="45" version="0" dateCreated="2016-10-05T12:19:10.778+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>646</id>
</jobTaskId>
<uuid>34143b86-1ba6-44b1-8462-c31ba3ed1544</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="43" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>641</id>
</jobTaskId>
<uuid>400d5866-844c-4980-a423-c89dc2d5e230</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
<invoice id="2" version="0" dateCreated="2016-10-05T12:19:09.436+02:00">
<invoiceNumber>IN2</invoiceNumber>
<issueDate>2016-10-05T12:19:09.410+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>29</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="36" version="0" dateCreated="2016-10-05T12:19:09.450+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>651</id>
</jobTaskId>
<uuid>3b6709c5-7ec7-4723-a858-20c6c2a19c81</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="33" version="0" dateCreated="2016-10-05T12:19:09.444+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>661</id>
</jobTaskId>
<uuid>b403b12e-2eef-424b-93e8-55cf3ad628ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="38" version="0" dateCreated="2016-10-05T12:19:09.453+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>658</id>
</jobTaskId>
<uuid>3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="31" version="0" dateCreated="2016-10-05T12:19:09.440+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>656</id>
</jobTaskId>
<uuid>3f3fb6de-0a7c-4172-8d8d-33201c99f95d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="30" version="0" dateCreated="2016-10-05T12:19:09.438+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>655</id>
</jobTaskId>
<uuid>a003ba38-23e9-43d7-ab14-be13029d8945</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="32" version="0" dateCreated="2016-10-05T12:19:09.442+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>660</id>
</jobTaskId>
<uuid>6c8e3626-b63f-4e0b-8e12-b3d9a904f699</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="37" version="0" dateCreated="2016-10-05T12:19:09.452+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>652</id>
</jobTaskId>
<uuid>ad1c0319-ff41-40c6-b9f4-c87494300ea8</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="35" version="0" dateCreated="2016-10-05T12:19:09.448+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>659</id>
</jobTaskId>
<uuid>2607208b-1713-466e-8835-da27d9894396</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="34" version="0" dateCreated="2016-10-05T12:19:09.446+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>657</id>
</jobTaskId>
<uuid>349f3d88-0d6f-4c56-9ac3-f291342fcc5e</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
<invoice id="1" version="0" dateCreated="2016-10-05T12:19:07.561+02:00">
<invoiceNumber>IN1</invoiceNumber>
<issueDate>2016-10-05T12:19:07.529+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>30</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="6" version="0" dateCreated="2016-10-05T12:19:07.578+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>667</id>
</jobTaskId>
<uuid>f01cb716-6ff2-4384-863a-fcc17ccd6636</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="4" version="0" dateCreated="2016-10-05T12:19:07.575+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>676</id>
</jobTaskId>
<uuid>bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="7" version="0" dateCreated="2016-10-05T12:19:07.581+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>678</id>
</jobTaskId>
<uuid>84f8aa8c-454e-4c95-a3fc-0764b9bd1524</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="25" version="0" dateCreated="2016-10-05T12:19:07.613+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>664</id>
</jobTaskId>
<uuid>c95b4156-88f6-4241-8a1a-6cc6192597bd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="1" version="1" dateCreated="2016-10-05T12:19:07.564+02:00" dateModified="2016-10-05T12:27:32.748+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>672</id>
</jobTaskId>
<uuid>d8f95d07-82c2-476e-b7d3-e9f15dfa8162</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>false</process>
<exported>true</exported>
</invoiceLineItem>
<invoiceLineItem id="22" version="0" dateCreated="2016-10-05T12:19:07.607+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>682</id>
</jobTaskId>
<uuid>b4332415-6e0f-4489-a1a6-c310b826f0c4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="29" version="0" dateCreated="2016-10-05T12:19:07.617+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>687</id>
</jobTaskId>
<uuid>ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="16" version="0" dateCreated="2016-10-05T12:19:07.595+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>662</id>
</jobTaskId>
<uuid>551108ae-5abd-4cc1-bafa-68ff5329193c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="28" version="0" dateCreated="2016-10-05T12:19:07.616+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>688</id>
</jobTaskId>
<uuid>88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="23" version="0" dateCreated="2016-10-05T12:19:07.609+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>690</id>
</jobTaskId>
<uuid>5f45b76b-5354-4b40-8b5b-625011db3afd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="10" version="0" dateCreated="2016-10-05T12:19:07.587+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>665</id>
</jobTaskId>
<uuid>cc96f182-9682-4bcf-bd25-55e1a6b285f3</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="20" version="0" dateCreated="2016-10-05T12:19:07.600+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>681</id>
</jobTaskId>
<uuid>0704f6d2-e5b9-4dd8-907c-39a76a72e8dc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="17" version="0" dateCreated="2016-10-05T12:19:07.597+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>686</id>
</jobTaskId>
<uuid>7407e08b-bd1b-4b8f-8c7e-83322c12ce6c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="26" version="0" dateCreated="2016-10-05T12:19:07.614+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>684</id>
</jobTaskId>
<uuid>241752a0-2eff-4c48-a9b7-cc03251c240d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="8" version="0" dateCreated="2016-10-05T12:19:07.582+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>669</id>
</jobTaskId>
<uuid>2c56226e-a0e5-429b-a376-9030803220ed</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="19" version="0" dateCreated="2016-10-05T12:19:07.599+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>673</id>
</jobTaskId>
<uuid>38187bbb-5995-40d1-bf97-f9c8eebf75cc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="5" version="0" dateCreated="2016-10-05T12:19:07.576+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>677</id>
</jobTaskId>
<uuid>ad420d7a-ed91-4ad2-af6a-629bcbca6dff</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="2" version="1" dateCreated="2016-10-05T12:19:07.566+02:00" dateModified="2016-10-05T12:27:36.216+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>670</id>
</jobTaskId>
<uuid>7f6a3659-e2d4-4183-a707-ff0e3dec8e3d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>false</process>
<exported>true</exported>
</invoiceLineItem>
<invoiceLineItem id="9" version="0" dateCreated="2016-10-05T12:19:07.585+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>679</id>
</jobTaskId>
<uuid>71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="24" version="0" dateCreated="2016-10-05T12:19:07.611+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>685</id>
</jobTaskId>
<uuid>012cd955-97a5-4908-b002-c43994892dd4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="15" version="0" dateCreated="2016-10-05T12:19:07.594+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>675</id>
</jobTaskId>
<uuid>6eb5df64-b903-4392-85e3-0dde2006823d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="27" version="0" dateCreated="2016-10-05T12:19:07.615+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>683</id>
</jobTaskId>
<uuid>3b52df9c-3912-4a12-9ac0-bded852b9955</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="3" version="0" dateCreated="2016-10-05T12:19:07.569+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>663</id>
</jobTaskId>
<uuid>61c2cb52-b893-4d22-90a4-4f2555535f1e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="18" version="0" dateCreated="2016-10-05T12:19:07.598+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>674</id>
</jobTaskId>
<uuid>ab6ef13b-c282-43e5-8241-679952a1087b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="13" version="0" dateCreated="2016-10-05T12:19:07.592+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>689</id>
</jobTaskId>
<uuid>aa5d1190-3d02-4ea2-a57d-12a628338249</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="12" version="0" dateCreated="2016-10-05T12:19:07.590+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>671</id>
</jobTaskId>
<uuid>f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="21" version="0" dateCreated="2016-10-05T12:19:07.602+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>680</id>
</jobTaskId>
<uuid>80637ec3-24b4-4ec1-8927-ecb58382cd8d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="14" version="0" dateCreated="2016-10-05T12:19:07.593+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>668</id>
</jobTaskId>
<uuid>f0f8dbe9-97ea-4623-896c-6f2483d54616</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="11" version="0" dateCreated="2016-10-05T12:19:07.588+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>666</id>
</jobTaskId>
<uuid>cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:37 GMT
{
"maxResults":5,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:15.327+0000",
"dateModified":null,
"invoiceNumber":"IN5",
"issueDate":"2016-10-05T10:19:15.321+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":26
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":108,
"version":0,
"dateCreated":"2016-10-05T10:19:15.328+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":577
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61d90f64-8e58-4d66-a9f9-f6da231e78c3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":109,
"version":0,
"dateCreated":"2016-10-05T10:19:15.329+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":576
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2642390a-c683-4c24-a900-750bf363a459",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1440.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":111,
"version":0,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":579
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"8ba34d04-9d85-4deb-9488-c15597b03c4a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1920.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":110,
"version":0,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":578
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"404a33e8-5568-4408-a987-1784e5a15d45",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":640.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:19:14.806+0000",
"dateModified":null,
"invoiceNumber":"IN4",
"issueDate":"2016-10-05T10:19:14.743+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":27
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":611
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"9f9a6457-7686-4e2b-9394-973e83fb13e8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":78,
"version":0,
"dateCreated":"2016-10-05T10:19:14.838+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":626
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"92cf135e-ba38-4797-a330-659413544552",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":99,
"version":0,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":607
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5c5c7252-5863-4715-aa8a-5d2cee80970f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":100,
"version":0,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":636
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61d1f761-091d-41f2-8b34-41cbbc42c0e9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":84,
"version":0,
"dateCreated":"2016-10-05T10:19:14.844+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":608
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"db7d6f83-350f-473d-85c4-93126a7241cd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":94,
"version":0,
"dateCreated":"2016-10-05T10:19:14.853+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":630
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3836657f-bd52-42b3-bd3b-d9a8e77e11a0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:19:14.813+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":581
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"e032d946-b859-48b3-8d94-0ac4b3c3dae0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":96,
"version":0,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":609
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"8e9a85f3-d7f0-4d3a-9e45-485a0130b854",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":70,
"version":0,
"dateCreated":"2016-10-05T10:19:14.830+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":631
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"21cffa8c-84bb-46ed-8591-f3c1fc6dd999",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":64,
"version":0,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":587
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f48d52b-158c-4783-8141-4b252c4acf5a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":104,
"version":0,
"dateCreated":"2016-10-05T10:19:14.863+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":586
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bced3309-dd3a-4bea-a23b-131580c767f2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":62,
"version":0,
"dateCreated":"2016-10-05T10:19:14.822+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":584
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"35b60963-88e9-4de3-a61d-474493926f46",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":74,
"version":0,
"dateCreated":"2016-10-05T10:19:14.834+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":612
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a13bb6b0-bbc5-467f-a547-1b0daf290bf5",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":97,
"version":0,
"dateCreated":"2016-10-05T10:19:14.856+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":601
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"284de946-8b8d-474b-81d7-00f7a0f9f2fb",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":85,
"version":0,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":617
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5606a802-9f81-4e23-b761-53452d63a2a6",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":87,
"version":0,
"dateCreated":"2016-10-05T10:19:14.843+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":597
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c79f1a93-c4d9-4de2-98ed-20ce95431160",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":67,
"version":0,
"dateCreated":"2016-10-05T10:19:14.827+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":585
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"347e1d01-be52-4b34-96b5-eefed41d2ce4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":618
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c9f783e8-d3fd-4771-adc1-af2816fda630",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:19:14.816+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":582
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ee59ef9c-1e57-4ac8-b173-057d39c0e1dd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":73,
"version":0,
"dateCreated":"2016-10-05T10:19:14.833+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":621
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1cbcf959-5669-451e-93c9-98749d5cadda",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":80,
"version":0,
"dateCreated":"2016-10-05T10:19:14.840+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":616
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fb855908-51ef-444b-9cc1-929fc61c8cce",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":88,
"version":0,
"dateCreated":"2016-10-05T10:19:14.847+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":580
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"00029b2c-52f4-409d-a2fb-16282b3ddb69",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":68,
"version":0,
"dateCreated":"2016-10-05T10:19:14.828+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":624
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0b2f5e10-3546-4bd1-9711-83b676ed6dc0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":89,
"version":0,
"dateCreated":"2016-10-05T10:19:14.848+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":632
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":92,
"version":0,
"dateCreated":"2016-10-05T10:19:14.852+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":634
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ae961427-8cbb-461d-a1b4-35b7a094ead7",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":102,
"version":0,
"dateCreated":"2016-10-05T10:19:14.861+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":619
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6a1cac34-efb0-4cbb-9803-4094d42fb5f4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:19:14.814+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":589
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"90b59842-ffbe-4344-9b7a-3027f94a2bdc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":622
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"47bf01c7-6026-4d09-9778-3ea7aaf4d057",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":66,
"version":0,
"dateCreated":"2016-10-05T10:19:14.826+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":628
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f6c6b1e7-e3bf-4059-929a-6d279a2ca517",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":83,
"version":0,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":592
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c3d4c143-44ab-4747-89bd-99dafe59a31a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:19:14.820+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":620
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1f09bfeb-ff54-49dc-afae-89d4efa53ad8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:19:14.807+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":613
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dee7ae9b-0086-4a53-ab1d-1bb174817f84",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":598
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"9059e279-0870-4c1e-8780-697ef47118b2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":103,
"version":0,
"dateCreated":"2016-10-05T10:19:14.862+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":595
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a607aad3-d9f5-48d0-9644-fac150b36029",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":75,
"version":0,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":583
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"10479b19-16d7-455f-81c4-4abb65c61c0a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:19:14.809+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":615
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d79aaeb2-13ed-4186-a5b6-ae2503507508",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":69,
"version":0,
"dateCreated":"2016-10-05T10:19:14.825+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":594
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3ee9145a-daa4-4dbe-9ece-20473d78da0e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":71,
"version":0,
"dateCreated":"2016-10-05T10:19:14.831+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":610
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"801f582c-6553-4479-a0ab-0e5552c6b5f9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":101,
"version":0,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":614
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0c869b0d-a0ff-45d2-bdca-6cdd49525506",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":50,
"version":0,
"dateCreated":"2016-10-05T10:19:14.810+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":635
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fa5eb789-5330-4a68-83c1-f97f7d395d41",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":91,
"version":0,
"dateCreated":"2016-10-05T10:19:14.851+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":604
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"896991b6-1c57-43f0-b373-dd388e5358ec",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:19:14.817+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":637
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1d7f6522-e386-4613-b599-c84653002971",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":105,
"version":0,
"dateCreated":"2016-10-05T10:19:14.860+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":627
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a71060f2-4b65-4d1a-94ee-d85939b679a4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":72,
"version":0,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":639
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"4d747ece-32ad-4b55-bec8-576186877a32",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":81,
"version":0,
"dateCreated":"2016-10-05T10:19:14.837+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":596
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bf7d4c2c-2208-4264-aced-0401083a3278",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":65,
"version":0,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":633
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5793b299-1971-45d9-a34c-3713b10d5253",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":98,
"version":0,
"dateCreated":"2016-10-05T10:19:14.857+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":605
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fe6690ec-6cae-4be3-9333-218254d3e3a0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":107,
"version":0,
"dateCreated":"2016-10-05T10:19:14.866+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":603
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1dd02975-9a03-4b5e-acf1-f7a583b765d2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":86,
"version":0,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":629
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1087589d-a66d-4429-9117-3e392b4a8d28",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":77,
"version":0,
"dateCreated":"2016-10-05T10:19:14.836+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":588
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d20eb07b-d50d-4ce6-93b1-bb9f5cefa427",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":93,
"version":0,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":623
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"299bc63f-910a-4d76-aec2-bfa90550025c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":76,
"version":0,
"dateCreated":"2016-10-05T10:19:14.835+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":590
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7f3171ca-74af-42a0-8bdd-3108b49c325e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":48,
"version":0,
"dateCreated":"2016-10-05T10:19:14.808+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":593
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dd67433a-3af9-47b2-9d87-7e0490cce01a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":79,
"version":0,
"dateCreated":"2016-10-05T10:19:14.839+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":600
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7ab9a513-871b-4f80-ad2b-4cab55d6f91f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":602
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ce771224-8665-4c37-be0c-d8ce813afec5",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":82,
"version":0,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":591
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d67af635-0c6d-4e33-b2c0-1deca2ed81f6",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":95,
"version":0,
"dateCreated":"2016-10-05T10:19:14.854+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":606
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0dccf07a-72f3-4470-b229-54f012ead263",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":106,
"version":0,
"dateCreated":"2016-10-05T10:19:14.865+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":625
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"4eca1cf1-19bd-41b3-916e-91be2304d760",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":90,
"version":0,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":599
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c8010cf0-9142-452b-aad5-6d1d4ba6fb35",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":60,
"version":0,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":638
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d574a471-fc5a-476a-9f04-be8027f0c866",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:19:10.772+0000",
"dateModified":null,
"invoiceNumber":"IN3",
"issueDate":"2016-10-05T10:19:10.764+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":28
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":44,
"version":0,
"dateCreated":"2016-10-05T10:19:10.777+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":640
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0b568b89-25da-4579-ad4d-3893c8f92a23",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":39,
"version":0,
"dateCreated":"2016-10-05T10:19:10.773+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":643
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"24707461-a2bc-477d-9f3e-383297e37582",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":46,
"version":0,
"dateCreated":"2016-10-05T10:19:10.779+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":642
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dc5ce255-e091-4f85-a781-d6d6dc66bb52",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":47,
"version":0,
"dateCreated":"2016-10-05T10:19:10.780+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":650
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f987bba-811d-4dc1-8f0b-3928706b4594",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":41,
"version":0,
"dateCreated":"2016-10-05T10:19:10.775+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":649
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7a91ddf7-91c9-4119-8d42-09868d99bc7f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":42,
"version":0,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":644
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3626e30e-0f6b-4514-bd1f-e83758814567",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":40,
"version":0,
"dateCreated":"2016-10-05T10:19:10.774+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":648
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5135008e-7e23-40a9-911a-e91e4d75922d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":45,
"version":0,
"dateCreated":"2016-10-05T10:19:10.778+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":646
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"34143b86-1ba6-44b1-8462-c31ba3ed1544",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":641
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"400d5866-844c-4980-a423-c89dc2d5e230",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceTO",
"id":2,
"version":0,
"dateCreated":"2016-10-05T10:19:09.436+0000",
"dateModified":null,
"invoiceNumber":"IN2",
"issueDate":"2016-10-05T10:19:09.410+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":29
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:19:09.450+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":651
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3b6709c5-7ec7-4723-a858-20c6c2a19c81",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:19:09.444+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":661
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"b403b12e-2eef-424b-93e8-55cf3ad628ec",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:19:09.453+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":658
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:19:09.440+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":656
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3f3fb6de-0a7c-4172-8d8d-33201c99f95d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:19:09.438+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":655
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a003ba38-23e9-43d7-ab14-be13029d8945",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:19:09.442+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":660
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6c8e3626-b63f-4e0b-8e12-b3d9a904f699",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":37,
"version":0,
"dateCreated":"2016-10-05T10:19:09.452+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":652
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ad1c0319-ff41-40c6-b9f4-c87494300ea8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:19:09.448+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":659
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2607208b-1713-466e-8835-da27d9894396",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:19:09.446+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":657
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"349f3d88-0d6f-4c56-9ac3-f291342fcc5e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:19:07.561+0000",
"dateModified":null,
"invoiceNumber":"IN1",
"issueDate":"2016-10-05T10:19:07.529+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":30
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:19:07.578+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":667
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f01cb716-6ff2-4384-863a-fcc17ccd6636",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:19:07.575+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":676
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:19:07.581+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":678
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"84f8aa8c-454e-4c95-a3fc-0764b9bd1524",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:19:07.613+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":664
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c95b4156-88f6-4241-8a1a-6cc6192597bd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:19:07.564+0000",
"dateModified":"2016-10-05T10:27:32.748+0000",
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":672
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d8f95d07-82c2-476e-b7d3-e9f15dfa8162",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":false,
"exported":true,
"processErrorMessage":null
},
{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:19:07.607+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":682
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"b4332415-6e0f-4489-a1a6-c310b826f0c4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:07.617+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":687
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:19:07.595+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":662
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"551108ae-5abd-4cc1-bafa-68ff5329193c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:07.616+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":688
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:19:07.609+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":690
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f45b76b-5354-4b40-8b5b-625011db3afd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:19:07.587+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":665
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cc96f182-9682-4bcf-bd25-55e1a6b285f3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:19:07.600+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":681
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0704f6d2-e5b9-4dd8-907c-39a76a72e8dc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:19:07.597+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":686
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7407e08b-bd1b-4b8f-8c7e-83322c12ce6c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:07.614+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":684
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"241752a0-2eff-4c48-a9b7-cc03251c240d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:19:07.582+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":669
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2c56226e-a0e5-429b-a376-9030803220ed",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:19:07.599+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":673
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"38187bbb-5995-40d1-bf97-f9c8eebf75cc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:07.576+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":677
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ad420d7a-ed91-4ad2-af6a-629bcbca6dff",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:19:07.566+0000",
"dateModified":"2016-10-05T10:27:36.216+0000",
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":670
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7f6a3659-e2d4-4183-a707-ff0e3dec8e3d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":false,
"exported":true,
"processErrorMessage":null
},
{
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:19:07.585+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":679
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:19:07.611+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":685
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"012cd955-97a5-4908-b002-c43994892dd4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:19:07.594+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":675
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6eb5df64-b903-4392-85e3-0dde2006823d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:07.615+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":683
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3b52df9c-3912-4a12-9ac0-bded852b9955",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:19:07.569+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":663
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61c2cb52-b893-4d22-90a4-4f2555535f1e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:19:07.598+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":674
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ab6ef13b-c282-43e5-8241-679952a1087b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:19:07.592+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":689
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"aa5d1190-3d02-4ea2-a57d-12a628338249",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:19:07.590+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":671
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:19:07.602+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":680
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"80637ec3-24b4-4ec1-8927-ecb58382cd8d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:19:07.593+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":668
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f0f8dbe9-97ea-4623-896c-6f2483d54616",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:19:07.588+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":666
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
}
],
"windowSize":5,
"currentPage":1
}
Returns list of all invoice items with process flag set to true and exported flag set to false.
https://api.sohnar.com/TrafficLiteServer/openapi/invoice/items
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/invoice/items HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/invoice/items HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:39 GMT
<list>
<invoiceLineItem id="3" version="0" dateCreated="2016-10-05T12:19:07.569+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>663</id>
</jobTaskId>
<uuid>61c2cb52-b893-4d22-90a4-4f2555535f1e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="4" version="0" dateCreated="2016-10-05T12:19:07.575+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>676</id>
</jobTaskId>
<uuid>bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="5" version="0" dateCreated="2016-10-05T12:19:07.576+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>677</id>
</jobTaskId>
<uuid>ad420d7a-ed91-4ad2-af6a-629bcbca6dff</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="6" version="0" dateCreated="2016-10-05T12:19:07.578+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>667</id>
</jobTaskId>
<uuid>f01cb716-6ff2-4384-863a-fcc17ccd6636</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="7" version="0" dateCreated="2016-10-05T12:19:07.581+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>678</id>
</jobTaskId>
<uuid>84f8aa8c-454e-4c95-a3fc-0764b9bd1524</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="8" version="0" dateCreated="2016-10-05T12:19:07.582+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>669</id>
</jobTaskId>
<uuid>2c56226e-a0e5-429b-a376-9030803220ed</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="9" version="0" dateCreated="2016-10-05T12:19:07.585+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>679</id>
</jobTaskId>
<uuid>71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="10" version="0" dateCreated="2016-10-05T12:19:07.587+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>665</id>
</jobTaskId>
<uuid>cc96f182-9682-4bcf-bd25-55e1a6b285f3</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="11" version="0" dateCreated="2016-10-05T12:19:07.588+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>666</id>
</jobTaskId>
<uuid>cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="12" version="0" dateCreated="2016-10-05T12:19:07.590+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>671</id>
</jobTaskId>
<uuid>f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="13" version="0" dateCreated="2016-10-05T12:19:07.592+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>689</id>
</jobTaskId>
<uuid>aa5d1190-3d02-4ea2-a57d-12a628338249</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="14" version="0" dateCreated="2016-10-05T12:19:07.593+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>668</id>
</jobTaskId>
<uuid>f0f8dbe9-97ea-4623-896c-6f2483d54616</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="15" version="0" dateCreated="2016-10-05T12:19:07.594+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>675</id>
</jobTaskId>
<uuid>6eb5df64-b903-4392-85e3-0dde2006823d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="16" version="0" dateCreated="2016-10-05T12:19:07.595+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>662</id>
</jobTaskId>
<uuid>551108ae-5abd-4cc1-bafa-68ff5329193c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="17" version="0" dateCreated="2016-10-05T12:19:07.597+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>686</id>
</jobTaskId>
<uuid>7407e08b-bd1b-4b8f-8c7e-83322c12ce6c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="18" version="0" dateCreated="2016-10-05T12:19:07.598+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>674</id>
</jobTaskId>
<uuid>ab6ef13b-c282-43e5-8241-679952a1087b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="19" version="0" dateCreated="2016-10-05T12:19:07.599+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>673</id>
</jobTaskId>
<uuid>38187bbb-5995-40d1-bf97-f9c8eebf75cc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="20" version="0" dateCreated="2016-10-05T12:19:07.600+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>681</id>
</jobTaskId>
<uuid>0704f6d2-e5b9-4dd8-907c-39a76a72e8dc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="21" version="0" dateCreated="2016-10-05T12:19:07.602+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>680</id>
</jobTaskId>
<uuid>80637ec3-24b4-4ec1-8927-ecb58382cd8d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="22" version="0" dateCreated="2016-10-05T12:19:07.607+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>682</id>
</jobTaskId>
<uuid>b4332415-6e0f-4489-a1a6-c310b826f0c4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="23" version="0" dateCreated="2016-10-05T12:19:07.609+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>690</id>
</jobTaskId>
<uuid>5f45b76b-5354-4b40-8b5b-625011db3afd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="24" version="0" dateCreated="2016-10-05T12:19:07.611+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>685</id>
</jobTaskId>
<uuid>012cd955-97a5-4908-b002-c43994892dd4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="25" version="0" dateCreated="2016-10-05T12:19:07.613+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>664</id>
</jobTaskId>
<uuid>c95b4156-88f6-4241-8a1a-6cc6192597bd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="26" version="0" dateCreated="2016-10-05T12:19:07.614+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>684</id>
</jobTaskId>
<uuid>241752a0-2eff-4c48-a9b7-cc03251c240d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="27" version="0" dateCreated="2016-10-05T12:19:07.615+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>683</id>
</jobTaskId>
<uuid>3b52df9c-3912-4a12-9ac0-bded852b9955</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="28" version="0" dateCreated="2016-10-05T12:19:07.616+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>688</id>
</jobTaskId>
<uuid>88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="29" version="0" dateCreated="2016-10-05T12:19:07.617+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>687</id>
</jobTaskId>
<uuid>ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="30" version="0" dateCreated="2016-10-05T12:19:09.438+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>655</id>
</jobTaskId>
<uuid>a003ba38-23e9-43d7-ab14-be13029d8945</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="31" version="0" dateCreated="2016-10-05T12:19:09.440+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>656</id>
</jobTaskId>
<uuid>3f3fb6de-0a7c-4172-8d8d-33201c99f95d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="32" version="0" dateCreated="2016-10-05T12:19:09.442+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>660</id>
</jobTaskId>
<uuid>6c8e3626-b63f-4e0b-8e12-b3d9a904f699</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="33" version="0" dateCreated="2016-10-05T12:19:09.444+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>661</id>
</jobTaskId>
<uuid>b403b12e-2eef-424b-93e8-55cf3ad628ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="34" version="0" dateCreated="2016-10-05T12:19:09.446+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>657</id>
</jobTaskId>
<uuid>349f3d88-0d6f-4c56-9ac3-f291342fcc5e</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="35" version="0" dateCreated="2016-10-05T12:19:09.448+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>659</id>
</jobTaskId>
<uuid>2607208b-1713-466e-8835-da27d9894396</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="36" version="0" dateCreated="2016-10-05T12:19:09.450+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>651</id>
</jobTaskId>
<uuid>3b6709c5-7ec7-4723-a858-20c6c2a19c81</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="37" version="0" dateCreated="2016-10-05T12:19:09.452+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>652</id>
</jobTaskId>
<uuid>ad1c0319-ff41-40c6-b9f4-c87494300ea8</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="38" version="0" dateCreated="2016-10-05T12:19:09.453+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>658</id>
</jobTaskId>
<uuid>3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="39" version="0" dateCreated="2016-10-05T12:19:10.773+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>643</id>
</jobTaskId>
<uuid>24707461-a2bc-477d-9f3e-383297e37582</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="40" version="0" dateCreated="2016-10-05T12:19:10.774+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>648</id>
</jobTaskId>
<uuid>5135008e-7e23-40a9-911a-e91e4d75922d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="41" version="0" dateCreated="2016-10-05T12:19:10.775+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>649</id>
</jobTaskId>
<uuid>7a91ddf7-91c9-4119-8d42-09868d99bc7f</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="42" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>644</id>
</jobTaskId>
<uuid>3626e30e-0f6b-4514-bd1f-e83758814567</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="43" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>641</id>
</jobTaskId>
<uuid>400d5866-844c-4980-a423-c89dc2d5e230</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="44" version="0" dateCreated="2016-10-05T12:19:10.777+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>640</id>
</jobTaskId>
<uuid>0b568b89-25da-4579-ad4d-3893c8f92a23</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="45" version="0" dateCreated="2016-10-05T12:19:10.778+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>646</id>
</jobTaskId>
<uuid>34143b86-1ba6-44b1-8462-c31ba3ed1544</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="46" version="0" dateCreated="2016-10-05T12:19:10.779+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>642</id>
</jobTaskId>
<uuid>dc5ce255-e091-4f85-a781-d6d6dc66bb52</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="47" version="0" dateCreated="2016-10-05T12:19:10.780+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>650</id>
</jobTaskId>
<uuid>5f987bba-811d-4dc1-8f0b-3928706b4594</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="48" version="0" dateCreated="2016-10-05T12:19:14.808+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>593</id>
</jobTaskId>
<uuid>dd67433a-3af9-47b2-9d87-7e0490cce01a</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="49" version="0" dateCreated="2016-10-05T12:19:14.809+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>615</id>
</jobTaskId>
<uuid>d79aaeb2-13ed-4186-a5b6-ae2503507508</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="50" version="0" dateCreated="2016-10-05T12:19:14.810+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>635</id>
</jobTaskId>
<uuid>fa5eb789-5330-4a68-83c1-f97f7d395d41</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="51" version="0" dateCreated="2016-10-05T12:19:14.807+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>613</id>
</jobTaskId>
<uuid>dee7ae9b-0086-4a53-ab1d-1bb174817f84</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="52" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>602</id>
</jobTaskId>
<uuid>ce771224-8665-4c37-be0c-d8ce813afec5</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="53" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>598</id>
</jobTaskId>
<uuid>9059e279-0870-4c1e-8780-697ef47118b2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="54" version="0" dateCreated="2016-10-05T12:19:14.814+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>589</id>
</jobTaskId>
<uuid>90b59842-ffbe-4344-9b7a-3027f94a2bdc</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="55" version="0" dateCreated="2016-10-05T12:19:14.816+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>582</id>
</jobTaskId>
<uuid>ee59ef9c-1e57-4ac8-b173-057d39c0e1dd</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="56" version="0" dateCreated="2016-10-05T12:19:14.817+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>637</id>
</jobTaskId>
<uuid>1d7f6522-e386-4613-b599-c84653002971</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="57" version="0" dateCreated="2016-10-05T12:19:14.813+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>581</id>
</jobTaskId>
<uuid>e032d946-b859-48b3-8d94-0ac4b3c3dae0</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="58" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>618</id>
</jobTaskId>
<uuid>c9f783e8-d3fd-4771-adc1-af2816fda630</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="59" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>622</id>
</jobTaskId>
<uuid>47bf01c7-6026-4d09-9778-3ea7aaf4d057</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="60" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>638</id>
</jobTaskId>
<uuid>d574a471-fc5a-476a-9f04-be8027f0c866</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="61" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>611</id>
</jobTaskId>
<uuid>9f9a6457-7686-4e2b-9394-973e83fb13e8</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="62" version="0" dateCreated="2016-10-05T12:19:14.822+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>584</id>
</jobTaskId>
<uuid>35b60963-88e9-4de3-a61d-474493926f46</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="63" version="0" dateCreated="2016-10-05T12:19:14.820+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>620</id>
</jobTaskId>
<uuid>1f09bfeb-ff54-49dc-afae-89d4efa53ad8</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="64" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>587</id>
</jobTaskId>
<uuid>5f48d52b-158c-4783-8141-4b252c4acf5a</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="65" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>633</id>
</jobTaskId>
<uuid>5793b299-1971-45d9-a34c-3713b10d5253</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="66" version="0" dateCreated="2016-10-05T12:19:14.826+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>628</id>
</jobTaskId>
<uuid>f6c6b1e7-e3bf-4059-929a-6d279a2ca517</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="67" version="0" dateCreated="2016-10-05T12:19:14.827+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>585</id>
</jobTaskId>
<uuid>347e1d01-be52-4b34-96b5-eefed41d2ce4</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="68" version="0" dateCreated="2016-10-05T12:19:14.828+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>624</id>
</jobTaskId>
<uuid>0b2f5e10-3546-4bd1-9711-83b676ed6dc0</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="69" version="0" dateCreated="2016-10-05T12:19:14.825+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>594</id>
</jobTaskId>
<uuid>3ee9145a-daa4-4dbe-9ece-20473d78da0e</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="70" version="0" dateCreated="2016-10-05T12:19:14.830+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>631</id>
</jobTaskId>
<uuid>21cffa8c-84bb-46ed-8591-f3c1fc6dd999</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="71" version="0" dateCreated="2016-10-05T12:19:14.831+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>610</id>
</jobTaskId>
<uuid>801f582c-6553-4479-a0ab-0e5552c6b5f9</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="72" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>639</id>
</jobTaskId>
<uuid>4d747ece-32ad-4b55-bec8-576186877a32</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="73" version="0" dateCreated="2016-10-05T12:19:14.833+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>621</id>
</jobTaskId>
<uuid>1cbcf959-5669-451e-93c9-98749d5cadda</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="74" version="0" dateCreated="2016-10-05T12:19:14.834+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>612</id>
</jobTaskId>
<uuid>a13bb6b0-bbc5-467f-a547-1b0daf290bf5</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="75" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>583</id>
</jobTaskId>
<uuid>10479b19-16d7-455f-81c4-4abb65c61c0a</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="76" version="0" dateCreated="2016-10-05T12:19:14.835+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>590</id>
</jobTaskId>
<uuid>7f3171ca-74af-42a0-8bdd-3108b49c325e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="77" version="0" dateCreated="2016-10-05T12:19:14.836+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>588</id>
</jobTaskId>
<uuid>d20eb07b-d50d-4ce6-93b1-bb9f5cefa427</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="78" version="0" dateCreated="2016-10-05T12:19:14.838+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>626</id>
</jobTaskId>
<uuid>92cf135e-ba38-4797-a330-659413544552</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="79" version="0" dateCreated="2016-10-05T12:19:14.839+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>600</id>
</jobTaskId>
<uuid>7ab9a513-871b-4f80-ad2b-4cab55d6f91f</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="80" version="0" dateCreated="2016-10-05T12:19:14.840+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>616</id>
</jobTaskId>
<uuid>fb855908-51ef-444b-9cc1-929fc61c8cce</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="81" version="0" dateCreated="2016-10-05T12:19:14.837+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>596</id>
</jobTaskId>
<uuid>bf7d4c2c-2208-4264-aced-0401083a3278</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="82" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>591</id>
</jobTaskId>
<uuid>d67af635-0c6d-4e33-b2c0-1deca2ed81f6</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="83" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>592</id>
</jobTaskId>
<uuid>c3d4c143-44ab-4747-89bd-99dafe59a31a</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="84" version="0" dateCreated="2016-10-05T12:19:14.844+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>608</id>
</jobTaskId>
<uuid>db7d6f83-350f-473d-85c4-93126a7241cd</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="85" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>617</id>
</jobTaskId>
<uuid>5606a802-9f81-4e23-b761-53452d63a2a6</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="86" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>629</id>
</jobTaskId>
<uuid>1087589d-a66d-4429-9117-3e392b4a8d28</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="87" version="0" dateCreated="2016-10-05T12:19:14.843+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>597</id>
</jobTaskId>
<uuid>c79f1a93-c4d9-4de2-98ed-20ce95431160</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="88" version="0" dateCreated="2016-10-05T12:19:14.847+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>580</id>
</jobTaskId>
<uuid>00029b2c-52f4-409d-a2fb-16282b3ddb69</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="89" version="0" dateCreated="2016-10-05T12:19:14.848+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>632</id>
</jobTaskId>
<uuid>f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="90" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>599</id>
</jobTaskId>
<uuid>c8010cf0-9142-452b-aad5-6d1d4ba6fb35</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="91" version="0" dateCreated="2016-10-05T12:19:14.851+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>604</id>
</jobTaskId>
<uuid>896991b6-1c57-43f0-b373-dd388e5358ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="92" version="0" dateCreated="2016-10-05T12:19:14.852+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>634</id>
</jobTaskId>
<uuid>ae961427-8cbb-461d-a1b4-35b7a094ead7</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="93" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>623</id>
</jobTaskId>
<uuid>299bc63f-910a-4d76-aec2-bfa90550025c</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="94" version="0" dateCreated="2016-10-05T12:19:14.853+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>630</id>
</jobTaskId>
<uuid>3836657f-bd52-42b3-bd3b-d9a8e77e11a0</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="95" version="0" dateCreated="2016-10-05T12:19:14.854+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>606</id>
</jobTaskId>
<uuid>0dccf07a-72f3-4470-b229-54f012ead263</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="96" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>609</id>
</jobTaskId>
<uuid>8e9a85f3-d7f0-4d3a-9e45-485a0130b854</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="97" version="0" dateCreated="2016-10-05T12:19:14.856+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>601</id>
</jobTaskId>
<uuid>284de946-8b8d-474b-81d7-00f7a0f9f2fb</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="98" version="0" dateCreated="2016-10-05T12:19:14.857+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>605</id>
</jobTaskId>
<uuid>fe6690ec-6cae-4be3-9333-218254d3e3a0</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="99" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>607</id>
</jobTaskId>
<uuid>5c5c7252-5863-4715-aa8a-5d2cee80970f</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="100" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>636</id>
</jobTaskId>
<uuid>61d1f761-091d-41f2-8b34-41cbbc42c0e9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="101" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>614</id>
</jobTaskId>
<uuid>0c869b0d-a0ff-45d2-bdca-6cdd49525506</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="102" version="0" dateCreated="2016-10-05T12:19:14.861+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>619</id>
</jobTaskId>
<uuid>6a1cac34-efb0-4cbb-9803-4094d42fb5f4</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="103" version="0" dateCreated="2016-10-05T12:19:14.862+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>595</id>
</jobTaskId>
<uuid>a607aad3-d9f5-48d0-9644-fac150b36029</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="104" version="0" dateCreated="2016-10-05T12:19:14.863+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>586</id>
</jobTaskId>
<uuid>bced3309-dd3a-4bea-a23b-131580c767f2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="105" version="0" dateCreated="2016-10-05T12:19:14.860+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>627</id>
</jobTaskId>
<uuid>a71060f2-4b65-4d1a-94ee-d85939b679a4</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="106" version="0" dateCreated="2016-10-05T12:19:14.865+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>625</id>
</jobTaskId>
<uuid>4eca1cf1-19bd-41b3-916e-91be2304d760</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="107" version="0" dateCreated="2016-10-05T12:19:14.866+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>603</id>
</jobTaskId>
<uuid>1dd02975-9a03-4b5e-acf1-f7a583b765d2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="108" version="0" dateCreated="2016-10-05T12:19:15.328+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>577</id>
</jobTaskId>
<uuid>61d90f64-8e58-4d66-a9f9-f6da231e78c3</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="109" version="0" dateCreated="2016-10-05T12:19:15.329+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>576</id>
</jobTaskId>
<uuid>2642390a-c683-4c24-a900-750bf363a459</uuid>
<invoicedNet>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="110" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>578</id>
</jobTaskId>
<uuid>404a33e8-5568-4408-a987-1784e5a15d45</uuid>
<invoicedNet>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="111" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>579</id>
</jobTaskId>
<uuid>8ba34d04-9d85-4deb-9488-c15597b03c4a</uuid>
<invoicedNet>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</list>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:39 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:19:07.569+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":663
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61c2cb52-b893-4d22-90a4-4f2555535f1e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:19:07.575+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":676
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:07.576+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":677
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ad420d7a-ed91-4ad2-af6a-629bcbca6dff",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:19:07.578+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":667
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f01cb716-6ff2-4384-863a-fcc17ccd6636",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:19:07.581+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":678
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"84f8aa8c-454e-4c95-a3fc-0764b9bd1524",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:19:07.582+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":669
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2c56226e-a0e5-429b-a376-9030803220ed",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:19:07.585+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":679
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:19:07.587+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":665
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cc96f182-9682-4bcf-bd25-55e1a6b285f3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:19:07.588+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":666
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:19:07.590+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":671
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:19:07.592+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":689
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"aa5d1190-3d02-4ea2-a57d-12a628338249",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:19:07.593+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":668
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f0f8dbe9-97ea-4623-896c-6f2483d54616",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:19:07.594+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":675
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6eb5df64-b903-4392-85e3-0dde2006823d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:19:07.595+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":662
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"551108ae-5abd-4cc1-bafa-68ff5329193c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:19:07.597+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":686
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7407e08b-bd1b-4b8f-8c7e-83322c12ce6c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:19:07.598+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":674
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ab6ef13b-c282-43e5-8241-679952a1087b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:19:07.599+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":673
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"38187bbb-5995-40d1-bf97-f9c8eebf75cc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:19:07.600+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":681
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0704f6d2-e5b9-4dd8-907c-39a76a72e8dc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:19:07.602+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":680
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"80637ec3-24b4-4ec1-8927-ecb58382cd8d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:19:07.607+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":682
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"b4332415-6e0f-4489-a1a6-c310b826f0c4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:19:07.609+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":690
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f45b76b-5354-4b40-8b5b-625011db3afd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:19:07.611+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":685
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"012cd955-97a5-4908-b002-c43994892dd4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:19:07.613+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":664
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c95b4156-88f6-4241-8a1a-6cc6192597bd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:07.614+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":684
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"241752a0-2eff-4c48-a9b7-cc03251c240d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:07.615+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":683
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3b52df9c-3912-4a12-9ac0-bded852b9955",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:07.616+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":688
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:07.617+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":687
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:19:09.438+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":655
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a003ba38-23e9-43d7-ab14-be13029d8945",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:19:09.440+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":656
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3f3fb6de-0a7c-4172-8d8d-33201c99f95d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:19:09.442+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":660
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6c8e3626-b63f-4e0b-8e12-b3d9a904f699",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:19:09.444+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":661
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"b403b12e-2eef-424b-93e8-55cf3ad628ec",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:19:09.446+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":657
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"349f3d88-0d6f-4c56-9ac3-f291342fcc5e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:19:09.448+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":659
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2607208b-1713-466e-8835-da27d9894396",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:19:09.450+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":651
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3b6709c5-7ec7-4723-a858-20c6c2a19c81",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":37,
"version":0,
"dateCreated":"2016-10-05T10:19:09.452+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":652
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ad1c0319-ff41-40c6-b9f4-c87494300ea8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:19:09.453+0000",
"dateModified":null,
"invoiceId":{
"id":2
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":658
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":39,
"version":0,
"dateCreated":"2016-10-05T10:19:10.773+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":643
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"24707461-a2bc-477d-9f3e-383297e37582",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":40,
"version":0,
"dateCreated":"2016-10-05T10:19:10.774+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":648
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5135008e-7e23-40a9-911a-e91e4d75922d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":41,
"version":0,
"dateCreated":"2016-10-05T10:19:10.775+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":649
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7a91ddf7-91c9-4119-8d42-09868d99bc7f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":42,
"version":0,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":644
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3626e30e-0f6b-4514-bd1f-e83758814567",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":43,
"version":0,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":641
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"400d5866-844c-4980-a423-c89dc2d5e230",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":44,
"version":0,
"dateCreated":"2016-10-05T10:19:10.777+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":640
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0b568b89-25da-4579-ad4d-3893c8f92a23",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":45,
"version":0,
"dateCreated":"2016-10-05T10:19:10.778+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":646
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"34143b86-1ba6-44b1-8462-c31ba3ed1544",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":46,
"version":0,
"dateCreated":"2016-10-05T10:19:10.779+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":642
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dc5ce255-e091-4f85-a781-d6d6dc66bb52",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":47,
"version":0,
"dateCreated":"2016-10-05T10:19:10.780+0000",
"dateModified":null,
"invoiceId":{
"id":3
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":650
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f987bba-811d-4dc1-8f0b-3928706b4594",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":48,
"version":0,
"dateCreated":"2016-10-05T10:19:14.808+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":593
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dd67433a-3af9-47b2-9d87-7e0490cce01a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":49,
"version":0,
"dateCreated":"2016-10-05T10:19:14.809+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":615
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d79aaeb2-13ed-4186-a5b6-ae2503507508",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":50,
"version":0,
"dateCreated":"2016-10-05T10:19:14.810+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":635
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fa5eb789-5330-4a68-83c1-f97f7d395d41",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":51,
"version":0,
"dateCreated":"2016-10-05T10:19:14.807+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":613
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"dee7ae9b-0086-4a53-ab1d-1bb174817f84",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":52,
"version":0,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":602
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ce771224-8665-4c37-be0c-d8ce813afec5",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":53,
"version":0,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":598
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"9059e279-0870-4c1e-8780-697ef47118b2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":54,
"version":0,
"dateCreated":"2016-10-05T10:19:14.814+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":589
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"90b59842-ffbe-4344-9b7a-3027f94a2bdc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":55,
"version":0,
"dateCreated":"2016-10-05T10:19:14.816+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":582
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ee59ef9c-1e57-4ac8-b173-057d39c0e1dd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":56,
"version":0,
"dateCreated":"2016-10-05T10:19:14.817+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":637
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1d7f6522-e386-4613-b599-c84653002971",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":57,
"version":0,
"dateCreated":"2016-10-05T10:19:14.813+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":581
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"e032d946-b859-48b3-8d94-0ac4b3c3dae0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":58,
"version":0,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":618
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c9f783e8-d3fd-4771-adc1-af2816fda630",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":59,
"version":0,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":622
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"47bf01c7-6026-4d09-9778-3ea7aaf4d057",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":60,
"version":0,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":638
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d574a471-fc5a-476a-9f04-be8027f0c866",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":61,
"version":0,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":611
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"9f9a6457-7686-4e2b-9394-973e83fb13e8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":62,
"version":0,
"dateCreated":"2016-10-05T10:19:14.822+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":584
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"35b60963-88e9-4de3-a61d-474493926f46",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":63,
"version":0,
"dateCreated":"2016-10-05T10:19:14.820+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":620
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1f09bfeb-ff54-49dc-afae-89d4efa53ad8",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":64,
"version":0,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":587
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f48d52b-158c-4783-8141-4b252c4acf5a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":65,
"version":0,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":633
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5793b299-1971-45d9-a34c-3713b10d5253",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":66,
"version":0,
"dateCreated":"2016-10-05T10:19:14.826+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":628
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f6c6b1e7-e3bf-4059-929a-6d279a2ca517",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":67,
"version":0,
"dateCreated":"2016-10-05T10:19:14.827+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":585
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"347e1d01-be52-4b34-96b5-eefed41d2ce4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":68,
"version":0,
"dateCreated":"2016-10-05T10:19:14.828+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":624
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0b2f5e10-3546-4bd1-9711-83b676ed6dc0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":69,
"version":0,
"dateCreated":"2016-10-05T10:19:14.825+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":594
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3ee9145a-daa4-4dbe-9ece-20473d78da0e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":70,
"version":0,
"dateCreated":"2016-10-05T10:19:14.830+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":631
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"21cffa8c-84bb-46ed-8591-f3c1fc6dd999",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":71,
"version":0,
"dateCreated":"2016-10-05T10:19:14.831+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":610
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"801f582c-6553-4479-a0ab-0e5552c6b5f9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":72,
"version":0,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":639
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"4d747ece-32ad-4b55-bec8-576186877a32",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":73,
"version":0,
"dateCreated":"2016-10-05T10:19:14.833+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":621
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1cbcf959-5669-451e-93c9-98749d5cadda",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":74,
"version":0,
"dateCreated":"2016-10-05T10:19:14.834+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":612
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a13bb6b0-bbc5-467f-a547-1b0daf290bf5",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":75,
"version":0,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":583
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"10479b19-16d7-455f-81c4-4abb65c61c0a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":76,
"version":0,
"dateCreated":"2016-10-05T10:19:14.835+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":590
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7f3171ca-74af-42a0-8bdd-3108b49c325e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":77,
"version":0,
"dateCreated":"2016-10-05T10:19:14.836+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":588
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d20eb07b-d50d-4ce6-93b1-bb9f5cefa427",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":78,
"version":0,
"dateCreated":"2016-10-05T10:19:14.838+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":626
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"92cf135e-ba38-4797-a330-659413544552",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":79,
"version":0,
"dateCreated":"2016-10-05T10:19:14.839+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":600
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7ab9a513-871b-4f80-ad2b-4cab55d6f91f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":80,
"version":0,
"dateCreated":"2016-10-05T10:19:14.840+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":616
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fb855908-51ef-444b-9cc1-929fc61c8cce",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":81,
"version":0,
"dateCreated":"2016-10-05T10:19:14.837+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":596
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bf7d4c2c-2208-4264-aced-0401083a3278",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":82,
"version":0,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":591
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d67af635-0c6d-4e33-b2c0-1deca2ed81f6",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":83,
"version":0,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":592
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c3d4c143-44ab-4747-89bd-99dafe59a31a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":84,
"version":0,
"dateCreated":"2016-10-05T10:19:14.844+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":608
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"db7d6f83-350f-473d-85c4-93126a7241cd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":85,
"version":0,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":617
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5606a802-9f81-4e23-b761-53452d63a2a6",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":86,
"version":0,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":629
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1087589d-a66d-4429-9117-3e392b4a8d28",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":87,
"version":0,
"dateCreated":"2016-10-05T10:19:14.843+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":597
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c79f1a93-c4d9-4de2-98ed-20ce95431160",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":88,
"version":0,
"dateCreated":"2016-10-05T10:19:14.847+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":580
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"00029b2c-52f4-409d-a2fb-16282b3ddb69",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":89,
"version":0,
"dateCreated":"2016-10-05T10:19:14.848+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":632
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":90,
"version":0,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":599
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c8010cf0-9142-452b-aad5-6d1d4ba6fb35",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":91,
"version":0,
"dateCreated":"2016-10-05T10:19:14.851+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":604
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"896991b6-1c57-43f0-b373-dd388e5358ec",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":92,
"version":0,
"dateCreated":"2016-10-05T10:19:14.852+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":634
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ae961427-8cbb-461d-a1b4-35b7a094ead7",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":93,
"version":0,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":623
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"299bc63f-910a-4d76-aec2-bfa90550025c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":94,
"version":0,
"dateCreated":"2016-10-05T10:19:14.853+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":630
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3836657f-bd52-42b3-bd3b-d9a8e77e11a0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":95,
"version":0,
"dateCreated":"2016-10-05T10:19:14.854+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":606
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0dccf07a-72f3-4470-b229-54f012ead263",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":96,
"version":0,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":609
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"8e9a85f3-d7f0-4d3a-9e45-485a0130b854",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":97,
"version":0,
"dateCreated":"2016-10-05T10:19:14.856+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":601
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"284de946-8b8d-474b-81d7-00f7a0f9f2fb",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":98,
"version":0,
"dateCreated":"2016-10-05T10:19:14.857+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":605
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"fe6690ec-6cae-4be3-9333-218254d3e3a0",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":99,
"version":0,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":607
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5c5c7252-5863-4715-aa8a-5d2cee80970f",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":100,
"version":0,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":636
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61d1f761-091d-41f2-8b34-41cbbc42c0e9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":101,
"version":0,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":614
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0c869b0d-a0ff-45d2-bdca-6cdd49525506",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":102,
"version":0,
"dateCreated":"2016-10-05T10:19:14.861+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":619
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6a1cac34-efb0-4cbb-9803-4094d42fb5f4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":103,
"version":0,
"dateCreated":"2016-10-05T10:19:14.862+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":595
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a607aad3-d9f5-48d0-9644-fac150b36029",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":104,
"version":0,
"dateCreated":"2016-10-05T10:19:14.863+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":586
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bced3309-dd3a-4bea-a23b-131580c767f2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":105,
"version":0,
"dateCreated":"2016-10-05T10:19:14.860+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":627
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"a71060f2-4b65-4d1a-94ee-d85939b679a4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":3200.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":106,
"version":0,
"dateCreated":"2016-10-05T10:19:14.865+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":625
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"4eca1cf1-19bd-41b3-916e-91be2304d760",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":107,
"version":0,
"dateCreated":"2016-10-05T10:19:14.866+0000",
"dateModified":null,
"invoiceId":{
"id":4
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":603
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"1dd02975-9a03-4b5e-acf1-f7a583b765d2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1600.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":108,
"version":0,
"dateCreated":"2016-10-05T10:19:15.328+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":577
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61d90f64-8e58-4d66-a9f9-f6da231e78c3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":800.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":109,
"version":0,
"dateCreated":"2016-10-05T10:19:15.329+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":576
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2642390a-c683-4c24-a900-750bf363a459",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1440.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":110,
"version":0,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":578
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"404a33e8-5568-4408-a987-1784e5a15d45",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":640.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"id":111,
"version":0,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"dateModified":null,
"invoiceId":{
"id":5
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":579
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"8ba34d04-9d85-4deb-9488-c15597b03c4a",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":1920.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
]
Returns single invoice object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/invoice/{id}
| name | description | default |
|---|---|---|
| id | Invoice's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/invoice/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/invoice/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:37 GMT
<invoice id="1" version="0" dateCreated="2016-10-05T12:19:07.561+02:00">
<invoiceNumber>IN1</invoiceNumber>
<issueDate>2016-10-05T12:19:07.529+02:00</issueDate>
<recipientsLocationId>7</recipientsLocationId>
<templateId>1</templateId>
<jobId>
<id>30</id>
</jobId>
<process>false</process>
<exported>false</exported>
<invoiceLineItems>
<invoiceLineItem id="6" version="0" dateCreated="2016-10-05T12:19:07.578+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>667</id>
</jobTaskId>
<uuid>f01cb716-6ff2-4384-863a-fcc17ccd6636</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="4" version="0" dateCreated="2016-10-05T12:19:07.575+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>676</id>
</jobTaskId>
<uuid>bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="7" version="0" dateCreated="2016-10-05T12:19:07.581+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>678</id>
</jobTaskId>
<uuid>84f8aa8c-454e-4c95-a3fc-0764b9bd1524</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="25" version="0" dateCreated="2016-10-05T12:19:07.613+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>664</id>
</jobTaskId>
<uuid>c95b4156-88f6-4241-8a1a-6cc6192597bd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="1" version="1" dateCreated="2016-10-05T12:19:07.564+02:00" dateModified="2016-10-05T12:27:32.748+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>672</id>
</jobTaskId>
<uuid>d8f95d07-82c2-476e-b7d3-e9f15dfa8162</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>false</process>
<exported>true</exported>
</invoiceLineItem>
<invoiceLineItem id="22" version="0" dateCreated="2016-10-05T12:19:07.607+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>682</id>
</jobTaskId>
<uuid>b4332415-6e0f-4489-a1a6-c310b826f0c4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="29" version="0" dateCreated="2016-10-05T12:19:07.617+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>687</id>
</jobTaskId>
<uuid>ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="16" version="0" dateCreated="2016-10-05T12:19:07.595+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>662</id>
</jobTaskId>
<uuid>551108ae-5abd-4cc1-bafa-68ff5329193c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="28" version="0" dateCreated="2016-10-05T12:19:07.616+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>688</id>
</jobTaskId>
<uuid>88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="23" version="0" dateCreated="2016-10-05T12:19:07.609+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>690</id>
</jobTaskId>
<uuid>5f45b76b-5354-4b40-8b5b-625011db3afd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="10" version="0" dateCreated="2016-10-05T12:19:07.587+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>665</id>
</jobTaskId>
<uuid>cc96f182-9682-4bcf-bd25-55e1a6b285f3</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="20" version="0" dateCreated="2016-10-05T12:19:07.600+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>681</id>
</jobTaskId>
<uuid>0704f6d2-e5b9-4dd8-907c-39a76a72e8dc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="17" version="0" dateCreated="2016-10-05T12:19:07.597+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>686</id>
</jobTaskId>
<uuid>7407e08b-bd1b-4b8f-8c7e-83322c12ce6c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="26" version="0" dateCreated="2016-10-05T12:19:07.614+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>684</id>
</jobTaskId>
<uuid>241752a0-2eff-4c48-a9b7-cc03251c240d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="8" version="0" dateCreated="2016-10-05T12:19:07.582+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>669</id>
</jobTaskId>
<uuid>2c56226e-a0e5-429b-a376-9030803220ed</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="19" version="0" dateCreated="2016-10-05T12:19:07.599+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>673</id>
</jobTaskId>
<uuid>38187bbb-5995-40d1-bf97-f9c8eebf75cc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="5" version="0" dateCreated="2016-10-05T12:19:07.576+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>677</id>
</jobTaskId>
<uuid>ad420d7a-ed91-4ad2-af6a-629bcbca6dff</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="2" version="1" dateCreated="2016-10-05T12:19:07.566+02:00" dateModified="2016-10-05T12:27:36.216+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>670</id>
</jobTaskId>
<uuid>7f6a3659-e2d4-4183-a707-ff0e3dec8e3d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>false</process>
<exported>true</exported>
</invoiceLineItem>
<invoiceLineItem id="9" version="0" dateCreated="2016-10-05T12:19:07.585+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>679</id>
</jobTaskId>
<uuid>71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="24" version="0" dateCreated="2016-10-05T12:19:07.611+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>685</id>
</jobTaskId>
<uuid>012cd955-97a5-4908-b002-c43994892dd4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="15" version="0" dateCreated="2016-10-05T12:19:07.594+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>675</id>
</jobTaskId>
<uuid>6eb5df64-b903-4392-85e3-0dde2006823d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="27" version="0" dateCreated="2016-10-05T12:19:07.615+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>683</id>
</jobTaskId>
<uuid>3b52df9c-3912-4a12-9ac0-bded852b9955</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="3" version="0" dateCreated="2016-10-05T12:19:07.569+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>663</id>
</jobTaskId>
<uuid>61c2cb52-b893-4d22-90a4-4f2555535f1e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="18" version="0" dateCreated="2016-10-05T12:19:07.598+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>674</id>
</jobTaskId>
<uuid>ab6ef13b-c282-43e5-8241-679952a1087b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="13" version="0" dateCreated="2016-10-05T12:19:07.592+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>689</id>
</jobTaskId>
<uuid>aa5d1190-3d02-4ea2-a57d-12a628338249</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="12" version="0" dateCreated="2016-10-05T12:19:07.590+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>671</id>
</jobTaskId>
<uuid>f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="21" version="0" dateCreated="2016-10-05T12:19:07.602+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>680</id>
</jobTaskId>
<uuid>80637ec3-24b4-4ec1-8927-ecb58382cd8d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="14" version="0" dateCreated="2016-10-05T12:19:07.593+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>668</id>
</jobTaskId>
<uuid>f0f8dbe9-97ea-4623-896c-6f2483d54616</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="11" version="0" dateCreated="2016-10-05T12:19:07.588+02:00">
<invoiceId reference="../../invoiceLineItem/invoiceId"/>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>666</id>
</jobTaskId>
<uuid>cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</invoiceLineItems>
<creditTermsId>
<id>1</id>
</creditTermsId>
<creditTerms id="1" version="0" dateCreated="2016-10-05T12:18:13.527+02:00">
<description>30 Days</description>
<value>30</value>
<isDefault>true</isDefault>
</creditTerms>
</invoice>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:37 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:19:07.561+0000",
"dateModified":null,
"invoiceNumber":"IN1",
"issueDate":"2016-10-05T10:19:07.529+0000",
"recipientsLocationId":7,
"templateId":1,
"jobId":{
"id":30
},
"process":false,
"exported":false,
"processErrorMessage":null,
"paidDate":null,
"paymentReference":null,
"invoiceLineItems":[
{
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:19:07.578+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":667
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f01cb716-6ff2-4384-863a-fcc17ccd6636",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":4,
"version":0,
"dateCreated":"2016-10-05T10:19:07.575+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":676
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:19:07.581+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":678
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"84f8aa8c-454e-4c95-a3fc-0764b9bd1524",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:19:07.613+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":664
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"c95b4156-88f6-4241-8a1a-6cc6192597bd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:19:07.564+0000",
"dateModified":"2016-10-05T10:27:32.748+0000",
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":672
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"d8f95d07-82c2-476e-b7d3-e9f15dfa8162",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":false,
"exported":true,
"processErrorMessage":null
},
{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:19:07.607+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":682
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"b4332415-6e0f-4489-a1a6-c310b826f0c4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:07.617+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":687
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":16,
"version":0,
"dateCreated":"2016-10-05T10:19:07.595+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":662
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"551108ae-5abd-4cc1-bafa-68ff5329193c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:07.616+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":688
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:19:07.609+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":690
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"5f45b76b-5354-4b40-8b5b-625011db3afd",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:19:07.587+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":665
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cc96f182-9682-4bcf-bd25-55e1a6b285f3",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:19:07.600+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":681
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"0704f6d2-e5b9-4dd8-907c-39a76a72e8dc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":17,
"version":0,
"dateCreated":"2016-10-05T10:19:07.597+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":686
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7407e08b-bd1b-4b8f-8c7e-83322c12ce6c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:07.614+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":684
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"241752a0-2eff-4c48-a9b7-cc03251c240d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:19:07.582+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":669
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"2c56226e-a0e5-429b-a376-9030803220ed",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:19:07.599+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":673
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"38187bbb-5995-40d1-bf97-f9c8eebf75cc",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":5,
"version":0,
"dateCreated":"2016-10-05T10:19:07.576+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":677
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ad420d7a-ed91-4ad2-af6a-629bcbca6dff",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:19:07.566+0000",
"dateModified":"2016-10-05T10:27:36.216+0000",
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":670
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"7f6a3659-e2d4-4183-a707-ff0e3dec8e3d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":false,
"exported":true,
"processErrorMessage":null
},
{
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:19:07.585+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":679
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:19:07.611+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":685
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"012cd955-97a5-4908-b002-c43994892dd4",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":15,
"version":0,
"dateCreated":"2016-10-05T10:19:07.594+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":675
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"6eb5df64-b903-4392-85e3-0dde2006823d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:07.615+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":683
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"3b52df9c-3912-4a12-9ac0-bded852b9955",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:19:07.569+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":663
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"61c2cb52-b893-4d22-90a4-4f2555535f1e",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:19:07.598+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":674
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"ab6ef13b-c282-43e5-8241-679952a1087b",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":13,
"version":0,
"dateCreated":"2016-10-05T10:19:07.592+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":689
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"aa5d1190-3d02-4ea2-a57d-12a628338249",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":12,
"version":0,
"dateCreated":"2016-10-05T10:19:07.590+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":671
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:19:07.602+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":680
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"80637ec3-24b4-4ec1-8927-ecb58382cd8d",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":14,
"version":0,
"dateCreated":"2016-10-05T10:19:07.593+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":668
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"f0f8dbe9-97ea-4623-896c-6f2483d54616",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
},
{
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:19:07.588+0000",
"dateModified":null,
"invoiceId":{
"id":1
},
"chargeBandType":"TIME_FEE",
"jobTaskId":{
"id":666
},
"jobExpenseId":null,
"jobThirdPartyCostId":null,
"uuid":"cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2",
"invoicedNetOtherCurrency":null,
"invoicedNet":{
"amountString":2400.00,
"currencyType":"GBP"
},
"invoicedTaxOneOtherCurrency":null,
"invoicedTaxOne":{
"amountString":0.00,
"currencyType":"GBP"
},
"taxOneRate":0.0000,
"invoicedTaxTwoOtherCurrency":null,
"invoicedTaxTwo":null,
"taxTwoRate":null,
"process":true,
"exported":false,
"processErrorMessage":null
}
],
"creditTermsId":{
"id":1
},
"creditTerms":{
"@class":"com.sohnar.trafficlite.transfer.trafficcompany.lists.CreditTermsListItemTO",
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:13.527+0000",
"dateModified":null,
"description":"30 Days",
"value":"30",
"isDefault":true
}
}
Updates process/exported flags on submitted invoice line items.
https://api.sohnar.com/TrafficLiteServer/openapi/invoice/items
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/invoice/items HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<list>
<invoiceLineItem id="2" version="0" dateCreated="2016-10-05T12:19:07.566+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>670</id>
</jobTaskId>
<uuid>7f6a3659-e2d4-4183-a707-ff0e3dec8e3d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<exported>true</exported>
<process>false</process>
</invoiceLineItem>
<invoiceLineItem id="3" version="0" dateCreated="2016-10-05T12:19:07.569+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>663</id>
</jobTaskId>
<uuid>61c2cb52-b893-4d22-90a4-4f2555535f1e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="4" version="0" dateCreated="2016-10-05T12:19:07.575+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>676</id>
</jobTaskId>
<uuid>bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="5" version="0" dateCreated="2016-10-05T12:19:07.576+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>677</id>
</jobTaskId>
<uuid>ad420d7a-ed91-4ad2-af6a-629bcbca6dff</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="6" version="0" dateCreated="2016-10-05T12:19:07.578+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>667</id>
</jobTaskId>
<uuid>f01cb716-6ff2-4384-863a-fcc17ccd6636</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="7" version="0" dateCreated="2016-10-05T12:19:07.581+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>678</id>
</jobTaskId>
<uuid>84f8aa8c-454e-4c95-a3fc-0764b9bd1524</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="8" version="0" dateCreated="2016-10-05T12:19:07.582+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>669</id>
</jobTaskId>
<uuid>2c56226e-a0e5-429b-a376-9030803220ed</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="9" version="0" dateCreated="2016-10-05T12:19:07.585+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>679</id>
</jobTaskId>
<uuid>71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="10" version="0" dateCreated="2016-10-05T12:19:07.587+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>665</id>
</jobTaskId>
<uuid>cc96f182-9682-4bcf-bd25-55e1a6b285f3</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="11" version="0" dateCreated="2016-10-05T12:19:07.588+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>666</id>
</jobTaskId>
<uuid>cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="12" version="0" dateCreated="2016-10-05T12:19:07.590+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>671</id>
</jobTaskId>
<uuid>f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="13" version="0" dateCreated="2016-10-05T12:19:07.592+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>689</id>
</jobTaskId>
<uuid>aa5d1190-3d02-4ea2-a57d-12a628338249</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="14" version="0" dateCreated="2016-10-05T12:19:07.593+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>668</id>
</jobTaskId>
<uuid>f0f8dbe9-97ea-4623-896c-6f2483d54616</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="15" version="0" dateCreated="2016-10-05T12:19:07.594+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>675</id>
</jobTaskId>
<uuid>6eb5df64-b903-4392-85e3-0dde2006823d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="16" version="0" dateCreated="2016-10-05T12:19:07.595+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>662</id>
</jobTaskId>
<uuid>551108ae-5abd-4cc1-bafa-68ff5329193c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="17" version="0" dateCreated="2016-10-05T12:19:07.597+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>686</id>
</jobTaskId>
<uuid>7407e08b-bd1b-4b8f-8c7e-83322c12ce6c</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="18" version="0" dateCreated="2016-10-05T12:19:07.598+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>674</id>
</jobTaskId>
<uuid>ab6ef13b-c282-43e5-8241-679952a1087b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="19" version="0" dateCreated="2016-10-05T12:19:07.599+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>673</id>
</jobTaskId>
<uuid>38187bbb-5995-40d1-bf97-f9c8eebf75cc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="20" version="0" dateCreated="2016-10-05T12:19:07.600+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>681</id>
</jobTaskId>
<uuid>0704f6d2-e5b9-4dd8-907c-39a76a72e8dc</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="21" version="0" dateCreated="2016-10-05T12:19:07.602+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>680</id>
</jobTaskId>
<uuid>80637ec3-24b4-4ec1-8927-ecb58382cd8d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="22" version="0" dateCreated="2016-10-05T12:19:07.607+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>682</id>
</jobTaskId>
<uuid>b4332415-6e0f-4489-a1a6-c310b826f0c4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="23" version="0" dateCreated="2016-10-05T12:19:07.609+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>690</id>
</jobTaskId>
<uuid>5f45b76b-5354-4b40-8b5b-625011db3afd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="24" version="0" dateCreated="2016-10-05T12:19:07.611+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>685</id>
</jobTaskId>
<uuid>012cd955-97a5-4908-b002-c43994892dd4</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="25" version="0" dateCreated="2016-10-05T12:19:07.613+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>664</id>
</jobTaskId>
<uuid>c95b4156-88f6-4241-8a1a-6cc6192597bd</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="26" version="0" dateCreated="2016-10-05T12:19:07.614+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>684</id>
</jobTaskId>
<uuid>241752a0-2eff-4c48-a9b7-cc03251c240d</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="27" version="0" dateCreated="2016-10-05T12:19:07.615+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>683</id>
</jobTaskId>
<uuid>3b52df9c-3912-4a12-9ac0-bded852b9955</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="28" version="0" dateCreated="2016-10-05T12:19:07.616+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>688</id>
</jobTaskId>
<uuid>88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="29" version="0" dateCreated="2016-10-05T12:19:07.617+02:00">
<invoiceId>
<id>1</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>687</id>
</jobTaskId>
<uuid>ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="30" version="0" dateCreated="2016-10-05T12:19:09.438+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>655</id>
</jobTaskId>
<uuid>a003ba38-23e9-43d7-ab14-be13029d8945</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="31" version="0" dateCreated="2016-10-05T12:19:09.440+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>656</id>
</jobTaskId>
<uuid>3f3fb6de-0a7c-4172-8d8d-33201c99f95d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="32" version="0" dateCreated="2016-10-05T12:19:09.442+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>660</id>
</jobTaskId>
<uuid>6c8e3626-b63f-4e0b-8e12-b3d9a904f699</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="33" version="0" dateCreated="2016-10-05T12:19:09.444+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>661</id>
</jobTaskId>
<uuid>b403b12e-2eef-424b-93e8-55cf3ad628ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="34" version="0" dateCreated="2016-10-05T12:19:09.446+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>657</id>
</jobTaskId>
<uuid>349f3d88-0d6f-4c56-9ac3-f291342fcc5e</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="35" version="0" dateCreated="2016-10-05T12:19:09.448+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>659</id>
</jobTaskId>
<uuid>2607208b-1713-466e-8835-da27d9894396</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="36" version="0" dateCreated="2016-10-05T12:19:09.450+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>651</id>
</jobTaskId>
<uuid>3b6709c5-7ec7-4723-a858-20c6c2a19c81</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="37" version="0" dateCreated="2016-10-05T12:19:09.452+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>652</id>
</jobTaskId>
<uuid>ad1c0319-ff41-40c6-b9f4-c87494300ea8</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="38" version="0" dateCreated="2016-10-05T12:19:09.453+02:00">
<invoiceId>
<id>2</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>658</id>
</jobTaskId>
<uuid>3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="39" version="0" dateCreated="2016-10-05T12:19:10.773+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>643</id>
</jobTaskId>
<uuid>24707461-a2bc-477d-9f3e-383297e37582</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="40" version="0" dateCreated="2016-10-05T12:19:10.774+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>648</id>
</jobTaskId>
<uuid>5135008e-7e23-40a9-911a-e91e4d75922d</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="41" version="0" dateCreated="2016-10-05T12:19:10.775+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>649</id>
</jobTaskId>
<uuid>7a91ddf7-91c9-4119-8d42-09868d99bc7f</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="42" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>644</id>
</jobTaskId>
<uuid>3626e30e-0f6b-4514-bd1f-e83758814567</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="43" version="0" dateCreated="2016-10-05T12:19:10.776+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>641</id>
</jobTaskId>
<uuid>400d5866-844c-4980-a423-c89dc2d5e230</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="44" version="0" dateCreated="2016-10-05T12:19:10.777+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>640</id>
</jobTaskId>
<uuid>0b568b89-25da-4579-ad4d-3893c8f92a23</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="45" version="0" dateCreated="2016-10-05T12:19:10.778+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>646</id>
</jobTaskId>
<uuid>34143b86-1ba6-44b1-8462-c31ba3ed1544</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="46" version="0" dateCreated="2016-10-05T12:19:10.779+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>642</id>
</jobTaskId>
<uuid>dc5ce255-e091-4f85-a781-d6d6dc66bb52</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="47" version="0" dateCreated="2016-10-05T12:19:10.780+02:00">
<invoiceId>
<id>3</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>650</id>
</jobTaskId>
<uuid>5f987bba-811d-4dc1-8f0b-3928706b4594</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="48" version="0" dateCreated="2016-10-05T12:19:14.808+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>593</id>
</jobTaskId>
<uuid>dd67433a-3af9-47b2-9d87-7e0490cce01a</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="49" version="0" dateCreated="2016-10-05T12:19:14.809+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>615</id>
</jobTaskId>
<uuid>d79aaeb2-13ed-4186-a5b6-ae2503507508</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="50" version="0" dateCreated="2016-10-05T12:19:14.810+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>635</id>
</jobTaskId>
<uuid>fa5eb789-5330-4a68-83c1-f97f7d395d41</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="51" version="0" dateCreated="2016-10-05T12:19:14.807+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>613</id>
</jobTaskId>
<uuid>dee7ae9b-0086-4a53-ab1d-1bb174817f84</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="52" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>602</id>
</jobTaskId>
<uuid>ce771224-8665-4c37-be0c-d8ce813afec5</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="53" version="0" dateCreated="2016-10-05T12:19:14.812+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>598</id>
</jobTaskId>
<uuid>9059e279-0870-4c1e-8780-697ef47118b2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="54" version="0" dateCreated="2016-10-05T12:19:14.814+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>589</id>
</jobTaskId>
<uuid>90b59842-ffbe-4344-9b7a-3027f94a2bdc</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="55" version="0" dateCreated="2016-10-05T12:19:14.816+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>582</id>
</jobTaskId>
<uuid>ee59ef9c-1e57-4ac8-b173-057d39c0e1dd</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="56" version="0" dateCreated="2016-10-05T12:19:14.817+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>637</id>
</jobTaskId>
<uuid>1d7f6522-e386-4613-b599-c84653002971</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="57" version="0" dateCreated="2016-10-05T12:19:14.813+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>581</id>
</jobTaskId>
<uuid>e032d946-b859-48b3-8d94-0ac4b3c3dae0</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="58" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>618</id>
</jobTaskId>
<uuid>c9f783e8-d3fd-4771-adc1-af2816fda630</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="59" version="0" dateCreated="2016-10-05T12:19:14.819+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>622</id>
</jobTaskId>
<uuid>47bf01c7-6026-4d09-9778-3ea7aaf4d057</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="60" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>638</id>
</jobTaskId>
<uuid>d574a471-fc5a-476a-9f04-be8027f0c866</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="61" version="0" dateCreated="2016-10-05T12:19:14.821+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>611</id>
</jobTaskId>
<uuid>9f9a6457-7686-4e2b-9394-973e83fb13e8</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="62" version="0" dateCreated="2016-10-05T12:19:14.822+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>584</id>
</jobTaskId>
<uuid>35b60963-88e9-4de3-a61d-474493926f46</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="63" version="0" dateCreated="2016-10-05T12:19:14.820+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>620</id>
</jobTaskId>
<uuid>1f09bfeb-ff54-49dc-afae-89d4efa53ad8</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="64" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>587</id>
</jobTaskId>
<uuid>5f48d52b-158c-4783-8141-4b252c4acf5a</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="65" version="0" dateCreated="2016-10-05T12:19:14.824+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>633</id>
</jobTaskId>
<uuid>5793b299-1971-45d9-a34c-3713b10d5253</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="66" version="0" dateCreated="2016-10-05T12:19:14.826+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>628</id>
</jobTaskId>
<uuid>f6c6b1e7-e3bf-4059-929a-6d279a2ca517</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="67" version="0" dateCreated="2016-10-05T12:19:14.827+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>585</id>
</jobTaskId>
<uuid>347e1d01-be52-4b34-96b5-eefed41d2ce4</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="68" version="0" dateCreated="2016-10-05T12:19:14.828+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>624</id>
</jobTaskId>
<uuid>0b2f5e10-3546-4bd1-9711-83b676ed6dc0</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="69" version="0" dateCreated="2016-10-05T12:19:14.825+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>594</id>
</jobTaskId>
<uuid>3ee9145a-daa4-4dbe-9ece-20473d78da0e</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="70" version="0" dateCreated="2016-10-05T12:19:14.830+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>631</id>
</jobTaskId>
<uuid>21cffa8c-84bb-46ed-8591-f3c1fc6dd999</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="71" version="0" dateCreated="2016-10-05T12:19:14.831+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>610</id>
</jobTaskId>
<uuid>801f582c-6553-4479-a0ab-0e5552c6b5f9</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="72" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>639</id>
</jobTaskId>
<uuid>4d747ece-32ad-4b55-bec8-576186877a32</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="73" version="0" dateCreated="2016-10-05T12:19:14.833+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>621</id>
</jobTaskId>
<uuid>1cbcf959-5669-451e-93c9-98749d5cadda</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="74" version="0" dateCreated="2016-10-05T12:19:14.834+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>612</id>
</jobTaskId>
<uuid>a13bb6b0-bbc5-467f-a547-1b0daf290bf5</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="75" version="0" dateCreated="2016-10-05T12:19:14.832+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>583</id>
</jobTaskId>
<uuid>10479b19-16d7-455f-81c4-4abb65c61c0a</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="76" version="0" dateCreated="2016-10-05T12:19:14.835+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>590</id>
</jobTaskId>
<uuid>7f3171ca-74af-42a0-8bdd-3108b49c325e</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="77" version="0" dateCreated="2016-10-05T12:19:14.836+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>588</id>
</jobTaskId>
<uuid>d20eb07b-d50d-4ce6-93b1-bb9f5cefa427</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="78" version="0" dateCreated="2016-10-05T12:19:14.838+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>626</id>
</jobTaskId>
<uuid>92cf135e-ba38-4797-a330-659413544552</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="79" version="0" dateCreated="2016-10-05T12:19:14.839+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>600</id>
</jobTaskId>
<uuid>7ab9a513-871b-4f80-ad2b-4cab55d6f91f</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="80" version="0" dateCreated="2016-10-05T12:19:14.840+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>616</id>
</jobTaskId>
<uuid>fb855908-51ef-444b-9cc1-929fc61c8cce</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="81" version="0" dateCreated="2016-10-05T12:19:14.837+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>596</id>
</jobTaskId>
<uuid>bf7d4c2c-2208-4264-aced-0401083a3278</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="82" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>591</id>
</jobTaskId>
<uuid>d67af635-0c6d-4e33-b2c0-1deca2ed81f6</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="83" version="0" dateCreated="2016-10-05T12:19:14.842+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>592</id>
</jobTaskId>
<uuid>c3d4c143-44ab-4747-89bd-99dafe59a31a</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="84" version="0" dateCreated="2016-10-05T12:19:14.844+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>608</id>
</jobTaskId>
<uuid>db7d6f83-350f-473d-85c4-93126a7241cd</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="85" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>617</id>
</jobTaskId>
<uuid>5606a802-9f81-4e23-b761-53452d63a2a6</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="86" version="0" dateCreated="2016-10-05T12:19:14.845+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>629</id>
</jobTaskId>
<uuid>1087589d-a66d-4429-9117-3e392b4a8d28</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="87" version="0" dateCreated="2016-10-05T12:19:14.843+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>597</id>
</jobTaskId>
<uuid>c79f1a93-c4d9-4de2-98ed-20ce95431160</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="88" version="0" dateCreated="2016-10-05T12:19:14.847+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>580</id>
</jobTaskId>
<uuid>00029b2c-52f4-409d-a2fb-16282b3ddb69</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="89" version="0" dateCreated="2016-10-05T12:19:14.848+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>632</id>
</jobTaskId>
<uuid>f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="90" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>599</id>
</jobTaskId>
<uuid>c8010cf0-9142-452b-aad5-6d1d4ba6fb35</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="91" version="0" dateCreated="2016-10-05T12:19:14.851+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>604</id>
</jobTaskId>
<uuid>896991b6-1c57-43f0-b373-dd388e5358ec</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="92" version="0" dateCreated="2016-10-05T12:19:14.852+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>634</id>
</jobTaskId>
<uuid>ae961427-8cbb-461d-a1b4-35b7a094ead7</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="93" version="0" dateCreated="2016-10-05T12:19:14.849+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>623</id>
</jobTaskId>
<uuid>299bc63f-910a-4d76-aec2-bfa90550025c</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="94" version="0" dateCreated="2016-10-05T12:19:14.853+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>630</id>
</jobTaskId>
<uuid>3836657f-bd52-42b3-bd3b-d9a8e77e11a0</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="95" version="0" dateCreated="2016-10-05T12:19:14.854+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>606</id>
</jobTaskId>
<uuid>0dccf07a-72f3-4470-b229-54f012ead263</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="96" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>609</id>
</jobTaskId>
<uuid>8e9a85f3-d7f0-4d3a-9e45-485a0130b854</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="97" version="0" dateCreated="2016-10-05T12:19:14.856+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>601</id>
</jobTaskId>
<uuid>284de946-8b8d-474b-81d7-00f7a0f9f2fb</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="98" version="0" dateCreated="2016-10-05T12:19:14.857+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>605</id>
</jobTaskId>
<uuid>fe6690ec-6cae-4be3-9333-218254d3e3a0</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="99" version="0" dateCreated="2016-10-05T12:19:14.855+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>607</id>
</jobTaskId>
<uuid>5c5c7252-5863-4715-aa8a-5d2cee80970f</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="100" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>636</id>
</jobTaskId>
<uuid>61d1f761-091d-41f2-8b34-41cbbc42c0e9</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="101" version="0" dateCreated="2016-10-05T12:19:14.859+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>614</id>
</jobTaskId>
<uuid>0c869b0d-a0ff-45d2-bdca-6cdd49525506</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="102" version="0" dateCreated="2016-10-05T12:19:14.861+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>619</id>
</jobTaskId>
<uuid>6a1cac34-efb0-4cbb-9803-4094d42fb5f4</uuid>
<invoicedNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="103" version="0" dateCreated="2016-10-05T12:19:14.862+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>595</id>
</jobTaskId>
<uuid>a607aad3-d9f5-48d0-9644-fac150b36029</uuid>
<invoicedNet>
<amountString>400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="104" version="0" dateCreated="2016-10-05T12:19:14.863+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>586</id>
</jobTaskId>
<uuid>bced3309-dd3a-4bea-a23b-131580c767f2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="105" version="0" dateCreated="2016-10-05T12:19:14.860+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>627</id>
</jobTaskId>
<uuid>a71060f2-4b65-4d1a-94ee-d85939b679a4</uuid>
<invoicedNet>
<amountString>3200.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="106" version="0" dateCreated="2016-10-05T12:19:14.865+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>625</id>
</jobTaskId>
<uuid>4eca1cf1-19bd-41b3-916e-91be2304d760</uuid>
<invoicedNet>
<amountString>2400.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="107" version="0" dateCreated="2016-10-05T12:19:14.866+02:00">
<invoiceId>
<id>4</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>603</id>
</jobTaskId>
<uuid>1dd02975-9a03-4b5e-acf1-f7a583b765d2</uuid>
<invoicedNet>
<amountString>1600.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="108" version="0" dateCreated="2016-10-05T12:19:15.328+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>577</id>
</jobTaskId>
<uuid>61d90f64-8e58-4d66-a9f9-f6da231e78c3</uuid>
<invoicedNet>
<amountString>800.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="109" version="0" dateCreated="2016-10-05T12:19:15.329+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>576</id>
</jobTaskId>
<uuid>2642390a-c683-4c24-a900-750bf363a459</uuid>
<invoicedNet>
<amountString>1440.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="110" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>578</id>
</jobTaskId>
<uuid>404a33e8-5568-4408-a987-1784e5a15d45</uuid>
<invoicedNet>
<amountString>640.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
<invoiceLineItem id="111" version="0" dateCreated="2016-10-05T12:19:15.330+02:00">
<invoiceId>
<id>5</id>
</invoiceId>
<chargeBandType>TIME_FEE</chargeBandType>
<jobTaskId>
<id>579</id>
</jobTaskId>
<uuid>8ba34d04-9d85-4deb-9488-c15597b03c4a</uuid>
<invoicedNet>
<amountString>1920.00</amountString>
<currencyType>GBP</currencyType>
</invoicedNet>
<invoicedTaxOne>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</invoicedTaxOne>
<taxOneRate>0.0000</taxOneRate>
<process>true</process>
<exported>false</exported>
</invoiceLineItem>
</list>
POST /TrafficLiteServer/openapi/invoice/items HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
[
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":"true",
"taxOneRate":0,
"process":"false",
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":672
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"d8f95d07-82c2-476e-b7d3-e9f15dfa8162",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.564+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":1,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":670
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"7f6a3659-e2d4-4183-a707-ff0e3dec8e3d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.566+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":2,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":663
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"61c2cb52-b893-4d22-90a4-4f2555535f1e",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.569+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":3,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":676
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"bbf23dc5-85d6-4a9b-ac2f-2ff31b1a6e1d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.575+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":4,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":677
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ad420d7a-ed91-4ad2-af6a-629bcbca6dff",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.576+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":5,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":667
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"f01cb716-6ff2-4384-863a-fcc17ccd6636",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.578+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":6,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":678
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"84f8aa8c-454e-4c95-a3fc-0764b9bd1524",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.581+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":7,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":669
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"2c56226e-a0e5-429b-a376-9030803220ed",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.582+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":8,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":679
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"71ed5c10-c8e6-4c4d-ad91-c9eacaf69b4c",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.585+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":9,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":665
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"cc96f182-9682-4bcf-bd25-55e1a6b285f3",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.587+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":10,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":666
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"cd5e9f58-d2ca-4a3a-a6a7-b6e4000fddf2",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.588+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":11,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":671
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"f14386ca-e2e4-4c22-9f3f-b215bd6c4a2d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.590+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":12,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":689
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"aa5d1190-3d02-4ea2-a57d-12a628338249",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.592+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":13,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":668
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"f0f8dbe9-97ea-4623-896c-6f2483d54616",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.593+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":14,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":675
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"6eb5df64-b903-4392-85e3-0dde2006823d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.594+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":15,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":662
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"551108ae-5abd-4cc1-bafa-68ff5329193c",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.595+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":16,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":686
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"7407e08b-bd1b-4b8f-8c7e-83322c12ce6c",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.597+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":17,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":674
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ab6ef13b-c282-43e5-8241-679952a1087b",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.598+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":18,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":673
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"38187bbb-5995-40d1-bf97-f9c8eebf75cc",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.599+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":19,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":681
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"0704f6d2-e5b9-4dd8-907c-39a76a72e8dc",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.600+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":20,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":680
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"80637ec3-24b4-4ec1-8927-ecb58382cd8d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.602+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":21,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":682
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"b4332415-6e0f-4489-a1a6-c310b826f0c4",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.607+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":22,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":690
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5f45b76b-5354-4b40-8b5b-625011db3afd",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.609+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":23,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":685
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"012cd955-97a5-4908-b002-c43994892dd4",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.611+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":24,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":664
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"c95b4156-88f6-4241-8a1a-6cc6192597bd",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.613+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":25,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":684
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"241752a0-2eff-4c48-a9b7-cc03251c240d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.614+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":26,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":683
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3b52df9c-3912-4a12-9ac0-bded852b9955",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.615+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":27,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":688
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"88d41c53-9ba1-40f1-b7a5-fd10bfd9b5a9",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.616+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":28,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":687
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ea7f228a-fdd1-47d4-9a78-bb11c8d74a3b",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:07.617+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":1
},
"id":29,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":655
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":800
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"a003ba38-23e9-43d7-ab14-be13029d8945",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.438+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":30,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":656
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":800
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3f3fb6de-0a7c-4172-8d8d-33201c99f95d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.440+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":31,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":660
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"6c8e3626-b63f-4e0b-8e12-b3d9a904f699",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.442+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":32,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":661
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"b403b12e-2eef-424b-93e8-55cf3ad628ec",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.444+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":33,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":657
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"349f3d88-0d6f-4c56-9ac3-f291342fcc5e",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.446+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":34,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":659
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"2607208b-1713-466e-8835-da27d9894396",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.448+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":35,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":651
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3b6709c5-7ec7-4723-a858-20c6c2a19c81",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.450+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":36,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":652
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ad1c0319-ff41-40c6-b9f4-c87494300ea8",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.452+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":37,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":658
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3f4266a6-8d2a-43aa-9c6b-2425f5ba8e15",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:09.453+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":2
},
"id":38,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":643
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":800
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"24707461-a2bc-477d-9f3e-383297e37582",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.773+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":39,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":648
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":800
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5135008e-7e23-40a9-911a-e91e4d75922d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.774+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":40,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":649
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"7a91ddf7-91c9-4119-8d42-09868d99bc7f",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.775+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":41,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":644
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3626e30e-0f6b-4514-bd1f-e83758814567",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":42,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":641
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"400d5866-844c-4980-a423-c89dc2d5e230",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.776+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":43,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":640
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"0b568b89-25da-4579-ad4d-3893c8f92a23",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.777+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":44,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":646
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"34143b86-1ba6-44b1-8462-c31ba3ed1544",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.778+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":45,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":642
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"dc5ce255-e091-4f85-a781-d6d6dc66bb52",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.779+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":46,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":650
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5f987bba-811d-4dc1-8f0b-3928706b4594",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:10.780+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":3
},
"id":47,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":593
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"dd67433a-3af9-47b2-9d87-7e0490cce01a",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.808+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":48,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":615
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"d79aaeb2-13ed-4186-a5b6-ae2503507508",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.809+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":49,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":635
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"fa5eb789-5330-4a68-83c1-f97f7d395d41",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.810+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":50,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":613
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"dee7ae9b-0086-4a53-ab1d-1bb174817f84",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.807+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":51,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":602
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ce771224-8665-4c37-be0c-d8ce813afec5",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":52,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":598
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"9059e279-0870-4c1e-8780-697ef47118b2",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.812+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":53,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":589
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"90b59842-ffbe-4344-9b7a-3027f94a2bdc",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.814+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":54,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":582
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ee59ef9c-1e57-4ac8-b173-057d39c0e1dd",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.816+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":55,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":637
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"1d7f6522-e386-4613-b599-c84653002971",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.817+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":56,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":581
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"e032d946-b859-48b3-8d94-0ac4b3c3dae0",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.813+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":57,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":618
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"c9f783e8-d3fd-4771-adc1-af2816fda630",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":58,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":622
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"47bf01c7-6026-4d09-9778-3ea7aaf4d057",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.819+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":59,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":638
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"d574a471-fc5a-476a-9f04-be8027f0c866",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":60,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":611
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"9f9a6457-7686-4e2b-9394-973e83fb13e8",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.821+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":61,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":584
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"35b60963-88e9-4de3-a61d-474493926f46",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.822+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":62,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":620
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"1f09bfeb-ff54-49dc-afae-89d4efa53ad8",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.820+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":63,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":587
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5f48d52b-158c-4783-8141-4b252c4acf5a",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":64,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":633
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5793b299-1971-45d9-a34c-3713b10d5253",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.824+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":65,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":628
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"f6c6b1e7-e3bf-4059-929a-6d279a2ca517",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.826+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":66,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":585
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"347e1d01-be52-4b34-96b5-eefed41d2ce4",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.827+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":67,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":624
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"0b2f5e10-3546-4bd1-9711-83b676ed6dc0",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.828+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":68,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":594
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3ee9145a-daa4-4dbe-9ece-20473d78da0e",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.825+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":69,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":631
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"21cffa8c-84bb-46ed-8591-f3c1fc6dd999",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.830+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":70,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":610
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"801f582c-6553-4479-a0ab-0e5552c6b5f9",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.831+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":71,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":639
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"4d747ece-32ad-4b55-bec8-576186877a32",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":72,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":621
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"1cbcf959-5669-451e-93c9-98749d5cadda",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.833+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":73,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":612
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"a13bb6b0-bbc5-467f-a547-1b0daf290bf5",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.834+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":74,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":583
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"10479b19-16d7-455f-81c4-4abb65c61c0a",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.832+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":75,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":590
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"7f3171ca-74af-42a0-8bdd-3108b49c325e",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.835+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":76,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":588
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"d20eb07b-d50d-4ce6-93b1-bb9f5cefa427",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.836+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":77,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":626
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"92cf135e-ba38-4797-a330-659413544552",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.838+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":78,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":600
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"7ab9a513-871b-4f80-ad2b-4cab55d6f91f",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.839+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":79,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":616
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"fb855908-51ef-444b-9cc1-929fc61c8cce",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.840+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":80,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":596
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"bf7d4c2c-2208-4264-aced-0401083a3278",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.837+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":81,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":591
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"d67af635-0c6d-4e33-b2c0-1deca2ed81f6",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":82,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":592
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"c3d4c143-44ab-4747-89bd-99dafe59a31a",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.842+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":83,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":608
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"db7d6f83-350f-473d-85c4-93126a7241cd",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.844+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":84,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":617
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5606a802-9f81-4e23-b761-53452d63a2a6",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":85,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":629
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"1087589d-a66d-4429-9117-3e392b4a8d28",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.845+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":86,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":597
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"c79f1a93-c4d9-4de2-98ed-20ce95431160",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.843+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":87,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":580
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"00029b2c-52f4-409d-a2fb-16282b3ddb69",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.847+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":88,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":632
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"f8d314ad-f8f4-4f18-9dfc-b10ccec86c6d",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.848+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":89,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":599
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"c8010cf0-9142-452b-aad5-6d1d4ba6fb35",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":90,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":604
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"896991b6-1c57-43f0-b373-dd388e5358ec",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.851+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":91,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":634
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"ae961427-8cbb-461d-a1b4-35b7a094ead7",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.852+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":92,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":623
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"299bc63f-910a-4d76-aec2-bfa90550025c",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.849+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":93,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":630
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"3836657f-bd52-42b3-bd3b-d9a8e77e11a0",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.853+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":94,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":606
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"0dccf07a-72f3-4470-b229-54f012ead263",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.854+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":95,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":609
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"8e9a85f3-d7f0-4d3a-9e45-485a0130b854",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":96,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":601
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"284de946-8b8d-474b-81d7-00f7a0f9f2fb",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.856+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":97,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":605
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"fe6690ec-6cae-4be3-9333-218254d3e3a0",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.857+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":98,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":607
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"5c5c7252-5863-4715-aa8a-5d2cee80970f",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.855+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":99,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":636
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"61d1f761-091d-41f2-8b34-41cbbc42c0e9",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":100,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":614
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"0c869b0d-a0ff-45d2-bdca-6cdd49525506",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.859+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":101,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":619
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"6a1cac34-efb0-4cbb-9803-4094d42fb5f4",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.861+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":102,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":595
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"a607aad3-d9f5-48d0-9644-fac150b36029",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.862+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":103,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":586
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"bced3309-dd3a-4bea-a23b-131580c767f2",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.863+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":104,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":627
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":3200
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"a71060f2-4b65-4d1a-94ee-d85939b679a4",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.860+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":105,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":625
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":2400
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"4eca1cf1-19bd-41b3-916e-91be2304d760",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.865+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":106,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":603
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1600
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"1dd02975-9a03-4b5e-acf1-f7a583b765d2",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:14.866+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":4
},
"id":107,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":577
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":800
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"61d90f64-8e58-4d66-a9f9-f6da231e78c3",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:15.328+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":5
},
"id":108,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":576
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1440
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"2642390a-c683-4c24-a900-750bf363a459",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:15.329+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":5
},
"id":109,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":578
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":640
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"404a33e8-5568-4408-a987-1784e5a15d45",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":5
},
"id":110,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
},
{
"invoicedTaxOne":{
"currencyType":"GBP",
"amountString":0
},
"taxTwoRate":null,
"exported":false,
"taxOneRate":0,
"process":true,
"@class":"com.sohnar.trafficlite.transfer.project.InvoiceLineItemTO",
"jobTaskId":{
"id":579
},
"invoicedNet":{
"currencyType":"GBP",
"amountString":1920
},
"dateModified":null,
"invoicedTaxTwo":null,
"version":0,
"uuid":"8ba34d04-9d85-4deb-9488-c15597b03c4a",
"processErrorMessage":null,
"invoicedNetOtherCurrency":null,
"dateCreated":"2016-10-05T10:19:15.330+0000",
"invoicedTaxOneOtherCurrency":null,
"jobThirdPartyCostId":null,
"chargeBandType":"TIME_FEE",
"invoiceId":{
"id":5
},
"id":111,
"jobExpenseId":null,
"invoicedTaxTwoOtherCurrency":null
}
]
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:37 GMT
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:35 GMT
Returns page of lightweight order objects.
https://api.sohnar.com/TrafficLiteServer/openapi/order
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter for list values. | |
| order | Result's order property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:40 GMT
<pagedResult maxResults="10" windowSize="5" currentPage="1">
<supplierOrderSearchWrapper id="10" version="0" dateCreated="2016-10-05T12:19:03.582+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>4</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="33" version="0" dateCreated="2016-10-05T12:19:03.585+02:00">
<supplierOrderId>
<id>10</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:c3-94ef6</supplierOrderOrderNumber>
<jobNumber>J24</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>84</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="35" version="0" dateCreated="2016-10-05T12:19:03.588+02:00">
<supplierOrderId>
<id>10</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:c3-94ef6</supplierOrderOrderNumber>
<jobNumber>J9</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>32</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="32" version="0" dateCreated="2016-10-05T12:19:03.584+02:00">
<supplierOrderId>
<id>10</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:c3-94ef6</supplierOrderOrderNumber>
<jobNumber>J2</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>7</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="34" version="0" dateCreated="2016-10-05T12:19:03.586+02:00">
<supplierOrderId>
<id>10</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:c3-94ef6</supplierOrderOrderNumber>
<jobNumber>J17</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>55</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>Services</name>
<orderNumber>orderNumber:c3-94ef6</orderNumber>
<notes>Notes for: Services - 1</notes>
<issueDate>2016-10-26T12:19:03.561+02:00</issueDate>
<supplierRef>supplierRef:52-63b10</supplierRef>
<multicurrencyRate>0.7306</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>11</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-26T12:19:03.561+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-26T12:19:03.561+02:00</invoicePaidDate>
<invoiceDate>2016-10-26T12:19:03.561+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:94-bb7c5</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:66-1403a</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:bd-8e32d</processErrorMessage>
<externalCode>externalCode:f9-bd223</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<supplierName>VidZone Digital Media</supplierName>
<supplierExternalCode>externalCode:03-48cc-</supplierExternalCode>
</supplierOrderSearchWrapper>
<supplierOrderSearchWrapper id="9" version="0" dateCreated="2016-10-05T12:19:03.553+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>4</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="29" version="0" dateCreated="2016-10-05T12:19:03.554+02:00">
<supplierOrderId>
<id>9</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:2368f863</supplierOrderOrderNumber>
<jobNumber>J9</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>33</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="31" version="0" dateCreated="2016-10-05T12:19:03.557+02:00">
<supplierOrderId>
<id>9</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:2368f863</supplierOrderOrderNumber>
<jobNumber>J19</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>67</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="30" version="0" dateCreated="2016-10-05T12:19:03.556+02:00">
<supplierOrderId>
<id>9</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:2368f863</supplierOrderOrderNumber>
<jobNumber>J7</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>26</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>Services</name>
<orderNumber>orderNumber:2368f863</orderNumber>
<notes>Notes for: Services - 1</notes>
<issueDate>2016-10-29T12:19:03.527+02:00</issueDate>
<supplierRef>supplierRef:f6a807c2</supplierRef>
<multicurrencyRate>0.4358</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>11</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-29T12:19:03.527+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-29T12:19:03.527+02:00</invoicePaidDate>
<invoiceDate>2016-10-29T12:19:03.527+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:4d80b551</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:83806884</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:8d69b015</processErrorMessage>
<externalCode>externalCode:4c8578b0</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<supplierName>VidZone Digital Media</supplierName>
<supplierExternalCode>externalCode:03-48cc-</supplierExternalCode>
</supplierOrderSearchWrapper>
<supplierOrderSearchWrapper id="8" version="0" dateCreated="2016-10-05T12:19:03.502+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>2</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="25" version="0" dateCreated="2016-10-05T12:19:03.503+02:00">
<supplierOrderId>
<id>8</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:ebeb9-58</supplierOrderOrderNumber>
<jobNumber>J14</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>50</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="27" version="0" dateCreated="2016-10-05T12:19:03.505+02:00">
<supplierOrderId>
<id>8</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:ebeb9-58</supplierOrderOrderNumber>
<jobNumber>J14</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>51</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="26" version="0" dateCreated="2016-10-05T12:19:03.504+02:00">
<supplierOrderId>
<id>8</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:ebeb9-58</supplierOrderOrderNumber>
<jobNumber>J12</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>42</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="28" version="0" dateCreated="2016-10-05T12:19:03.506+02:00">
<supplierOrderId>
<id>8</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:ebeb9-58</supplierOrderOrderNumber>
<jobNumber>J28</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>99</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>Competitor Research</name>
<orderNumber>orderNumber:ebeb9-58</orderNumber>
<notes>Notes for: Competitor Research - 1</notes>
<issueDate>2016-10-08T12:19:03.477+02:00</issueDate>
<supplierRef>supplierRef:e54a8-90</supplierRef>
<multicurrencyRate>0.4428</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>9</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-08T12:19:03.477+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-08T12:19:03.477+02:00</invoicePaidDate>
<invoiceDate>2016-10-08T12:19:03.477+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:33f62-b0</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:6ef5d-e6</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:09705-dd</processErrorMessage>
<externalCode>externalCode:eac0c-e6</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<supplierName>Snappy Snaps</supplierName>
<supplierExternalCode>externalCode:a3c-cec7</supplierExternalCode>
</supplierOrderSearchWrapper>
<supplierOrderSearchWrapper id="7" version="0" dateCreated="2016-10-05T12:19:03.462+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>2</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="24" version="0" dateCreated="2016-10-05T12:19:03.469+02:00">
<supplierOrderId>
<id>7</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:90-49b0-</supplierOrderOrderNumber>
<jobNumber>J27</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>95</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="23" version="0" dateCreated="2016-10-05T12:19:03.468+02:00">
<supplierOrderId>
<id>7</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:90-49b0-</supplierOrderOrderNumber>
<jobNumber>J29</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>102</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="22" version="0" dateCreated="2016-10-05T12:19:03.466+02:00">
<supplierOrderId>
<id>7</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:90-49b0-</supplierOrderOrderNumber>
<jobNumber>J24</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>83</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>Competitor Research</name>
<orderNumber>orderNumber:90-49b0-</orderNumber>
<notes>Notes for: Competitor Research - 1</notes>
<issueDate>2016-10-16T12:19:03.431+02:00</issueDate>
<supplierRef>supplierRef:1d-489b-</supplierRef>
<multicurrencyRate>0.4444</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>9</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-16T12:19:03.431+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-16T12:19:03.431+02:00</invoicePaidDate>
<invoiceDate>2016-10-16T12:19:03.431+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:36-481f-</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:1e-4b71-</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:e9-4756-</processErrorMessage>
<externalCode>externalCode:e2-4de9-</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<supplierName>Snappy Snaps</supplierName>
<supplierExternalCode>externalCode:a3c-cec7</supplierExternalCode>
</supplierOrderSearchWrapper>
<supplierOrderSearchWrapper id="6" version="0" dateCreated="2016-10-05T12:19:03.368+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>1</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="20" version="0" dateCreated="2016-10-05T12:19:03.381+02:00">
<supplierOrderId>
<id>6</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:a428-140</supplierOrderOrderNumber>
<jobNumber>J3</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>13</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="21" version="0" dateCreated="2016-10-05T12:19:03.383+02:00">
<supplierOrderId>
<id>6</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:a428-140</supplierOrderOrderNumber>
<jobNumber>J7</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>21</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="19" version="0" dateCreated="2016-10-05T12:19:03.376+02:00">
<supplierOrderId>
<id>6</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:a428-140</supplierOrderOrderNumber>
<jobNumber>J14</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>49</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="18" version="0" dateCreated="2016-10-05T12:19:03.370+02:00">
<supplierOrderId>
<id>6</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:a428-140</supplierOrderOrderNumber>
<jobNumber>J2</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>6</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>Stationary</name>
<orderNumber>orderNumber:a428-140</orderNumber>
<notes>Notes for: Stationary - 1</notes>
<issueDate>2016-10-24T12:19:03.341+02:00</issueDate>
<supplierRef>supplierRef:996c-858</supplierRef>
<multicurrencyRate>0.4292</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>8</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-24T12:19:03.341+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-24T12:19:03.341+02:00</invoicePaidDate>
<invoiceDate>2016-10-24T12:19:03.341+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:a11c-a3d</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:8420-209</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:8633-54c</processErrorMessage>
<externalCode>externalCode:8db6-886</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<supplierName>UPD Name 0.15961</supplierName>
<supplierExternalCode>externalCode:da-4c23-</supplierExternalCode>
</supplierOrderSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:40 GMT
{
"maxResults":10,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.orders.SupplierOrderSearchWrapperTO",
"id":10,
"version":0,
"dateCreated":"2016-10-05T10:19:03.582+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"supplierId":{
"id":4
},
"lineItems":[
{
"id":33,
"version":0,
"dateCreated":"2016-10-05T10:19:03.585+0000",
"dateModified":null,
"supplierOrderId":{
"id":10
},
"supplierOrderOrderNumber":"orderNumber:c3-94ef6",
"jobNumber":"J24",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":84
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:19:03.588+0000",
"dateModified":null,
"supplierOrderId":{
"id":10
},
"supplierOrderOrderNumber":"orderNumber:c3-94ef6",
"jobNumber":"J9",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":32
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":32,
"version":0,
"dateCreated":"2016-10-05T10:19:03.584+0000",
"dateModified":null,
"supplierOrderId":{
"id":10
},
"supplierOrderOrderNumber":"orderNumber:c3-94ef6",
"jobNumber":"J2",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":7
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:19:03.586+0000",
"dateModified":null,
"supplierOrderId":{
"id":10
},
"supplierOrderOrderNumber":"orderNumber:c3-94ef6",
"jobNumber":"J17",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":55
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"Services",
"orderNumber":"orderNumber:c3-94ef6",
"notes":"Notes for: Services - 1",
"issueDate":"2016-10-26T10:19:03.561+0000",
"supplierRef":"supplierRef:52-63b10",
"multicurrencyRate":0.7306,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":11
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-26T10:19:03.561+0000",
"invoicePaidDate":"2016-10-26T10:19:03.561+0000",
"invoiceDate":"2016-10-26T10:19:03.561+0000",
"invoiceNumber":"invoiceNumber:94-bb7c5",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:66-1403a",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:bd-8e32d",
"ownerId":null,
"externalCode":"externalCode:f9-bd223",
"orderApprovalStatus":"NEW",
"supplierName":"VidZone Digital Media",
"supplierExternalCode":"externalCode:03-48cc-",
"ownerLocation":null,
"ownerLocationName":null,
"ownerDepartment":null,
"ownerDepartmentName":null,
"ownerFirstName":null,
"ownerLastName":null,
"ownerGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.orders.SupplierOrderSearchWrapperTO",
"id":9,
"version":0,
"dateCreated":"2016-10-05T10:19:03.553+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"supplierId":{
"id":4
},
"lineItems":[
{
"id":29,
"version":0,
"dateCreated":"2016-10-05T10:19:03.554+0000",
"dateModified":null,
"supplierOrderId":{
"id":9
},
"supplierOrderOrderNumber":"orderNumber:2368f863",
"jobNumber":"J9",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":33
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":31,
"version":0,
"dateCreated":"2016-10-05T10:19:03.557+0000",
"dateModified":null,
"supplierOrderId":{
"id":9
},
"supplierOrderOrderNumber":"orderNumber:2368f863",
"jobNumber":"J19",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":67
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":30,
"version":0,
"dateCreated":"2016-10-05T10:19:03.556+0000",
"dateModified":null,
"supplierOrderId":{
"id":9
},
"supplierOrderOrderNumber":"orderNumber:2368f863",
"jobNumber":"J7",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":26
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"Services",
"orderNumber":"orderNumber:2368f863",
"notes":"Notes for: Services - 1",
"issueDate":"2016-10-29T10:19:03.527+0000",
"supplierRef":"supplierRef:f6a807c2",
"multicurrencyRate":0.4358,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":11
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-29T10:19:03.527+0000",
"invoicePaidDate":"2016-10-29T10:19:03.527+0000",
"invoiceDate":"2016-10-29T10:19:03.527+0000",
"invoiceNumber":"invoiceNumber:4d80b551",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:83806884",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:8d69b015",
"ownerId":null,
"externalCode":"externalCode:4c8578b0",
"orderApprovalStatus":"NEW",
"supplierName":"VidZone Digital Media",
"supplierExternalCode":"externalCode:03-48cc-",
"ownerLocation":null,
"ownerLocationName":null,
"ownerDepartment":null,
"ownerDepartmentName":null,
"ownerFirstName":null,
"ownerLastName":null,
"ownerGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.orders.SupplierOrderSearchWrapperTO",
"id":8,
"version":0,
"dateCreated":"2016-10-05T10:19:03.502+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"supplierId":{
"id":2
},
"lineItems":[
{
"id":25,
"version":0,
"dateCreated":"2016-10-05T10:19:03.503+0000",
"dateModified":null,
"supplierOrderId":{
"id":8
},
"supplierOrderOrderNumber":"orderNumber:ebeb9-58",
"jobNumber":"J14",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":50
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":27,
"version":0,
"dateCreated":"2016-10-05T10:19:03.505+0000",
"dateModified":null,
"supplierOrderId":{
"id":8
},
"supplierOrderOrderNumber":"orderNumber:ebeb9-58",
"jobNumber":"J14",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":51
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":26,
"version":0,
"dateCreated":"2016-10-05T10:19:03.504+0000",
"dateModified":null,
"supplierOrderId":{
"id":8
},
"supplierOrderOrderNumber":"orderNumber:ebeb9-58",
"jobNumber":"J12",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":42
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":28,
"version":0,
"dateCreated":"2016-10-05T10:19:03.506+0000",
"dateModified":null,
"supplierOrderId":{
"id":8
},
"supplierOrderOrderNumber":"orderNumber:ebeb9-58",
"jobNumber":"J28",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":99
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"Competitor Research",
"orderNumber":"orderNumber:ebeb9-58",
"notes":"Notes for: Competitor Research - 1",
"issueDate":"2016-10-08T10:19:03.477+0000",
"supplierRef":"supplierRef:e54a8-90",
"multicurrencyRate":0.4428,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":9
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-08T10:19:03.477+0000",
"invoicePaidDate":"2016-10-08T10:19:03.477+0000",
"invoiceDate":"2016-10-08T10:19:03.477+0000",
"invoiceNumber":"invoiceNumber:33f62-b0",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:6ef5d-e6",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:09705-dd",
"ownerId":null,
"externalCode":"externalCode:eac0c-e6",
"orderApprovalStatus":"NEW",
"supplierName":"Snappy Snaps",
"supplierExternalCode":"externalCode:a3c-cec7",
"ownerLocation":null,
"ownerLocationName":null,
"ownerDepartment":null,
"ownerDepartmentName":null,
"ownerFirstName":null,
"ownerLastName":null,
"ownerGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.orders.SupplierOrderSearchWrapperTO",
"id":7,
"version":0,
"dateCreated":"2016-10-05T10:19:03.462+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"supplierId":{
"id":2
},
"lineItems":[
{
"id":24,
"version":0,
"dateCreated":"2016-10-05T10:19:03.469+0000",
"dateModified":null,
"supplierOrderId":{
"id":7
},
"supplierOrderOrderNumber":"orderNumber:90-49b0-",
"jobNumber":"J27",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":95
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":23,
"version":0,
"dateCreated":"2016-10-05T10:19:03.468+0000",
"dateModified":null,
"supplierOrderId":{
"id":7
},
"supplierOrderOrderNumber":"orderNumber:90-49b0-",
"jobNumber":"J29",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":102
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":22,
"version":0,
"dateCreated":"2016-10-05T10:19:03.466+0000",
"dateModified":null,
"supplierOrderId":{
"id":7
},
"supplierOrderOrderNumber":"orderNumber:90-49b0-",
"jobNumber":"J24",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":83
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"Competitor Research",
"orderNumber":"orderNumber:90-49b0-",
"notes":"Notes for: Competitor Research - 1",
"issueDate":"2016-10-16T10:19:03.431+0000",
"supplierRef":"supplierRef:1d-489b-",
"multicurrencyRate":0.4444,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":9
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-16T10:19:03.431+0000",
"invoicePaidDate":"2016-10-16T10:19:03.431+0000",
"invoiceDate":"2016-10-16T10:19:03.431+0000",
"invoiceNumber":"invoiceNumber:36-481f-",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:1e-4b71-",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:e9-4756-",
"ownerId":null,
"externalCode":"externalCode:e2-4de9-",
"orderApprovalStatus":"NEW",
"supplierName":"Snappy Snaps",
"supplierExternalCode":"externalCode:a3c-cec7",
"ownerLocation":null,
"ownerLocationName":null,
"ownerDepartment":null,
"ownerDepartmentName":null,
"ownerFirstName":null,
"ownerLastName":null,
"ownerGroups":null
},
{
"@class":"com.sohnar.trafficlite.transfer.orders.SupplierOrderSearchWrapperTO",
"id":6,
"version":0,
"dateCreated":"2016-10-05T10:19:03.368+0000",
"dateModified":null,
"lastUpdatedUserId":7,
"supplierId":{
"id":1
},
"lineItems":[
{
"id":20,
"version":0,
"dateCreated":"2016-10-05T10:19:03.381+0000",
"dateModified":null,
"supplierOrderId":{
"id":6
},
"supplierOrderOrderNumber":"orderNumber:a428-140",
"jobNumber":"J3",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":13
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":19,
"version":0,
"dateCreated":"2016-10-05T10:19:03.376+0000",
"dateModified":null,
"supplierOrderId":{
"id":6
},
"supplierOrderOrderNumber":"orderNumber:a428-140",
"jobNumber":"J14",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":49
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":21,
"version":0,
"dateCreated":"2016-10-05T10:19:03.383+0000",
"dateModified":null,
"supplierOrderId":{
"id":6
},
"supplierOrderOrderNumber":"orderNumber:a428-140",
"jobNumber":"J7",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":21
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":18,
"version":0,
"dateCreated":"2016-10-05T10:19:03.370+0000",
"dateModified":null,
"supplierOrderId":{
"id":6
},
"supplierOrderOrderNumber":"orderNumber:a428-140",
"jobNumber":"J2",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":6
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"Stationary",
"orderNumber":"orderNumber:a428-140",
"notes":"Notes for: Stationary - 1",
"issueDate":"2016-10-24T10:19:03.341+0000",
"supplierRef":"supplierRef:996c-858",
"multicurrencyRate":0.4292,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":8
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-24T10:19:03.341+0000",
"invoicePaidDate":"2016-10-24T10:19:03.341+0000",
"invoiceDate":"2016-10-24T10:19:03.341+0000",
"invoiceNumber":"invoiceNumber:a11c-a3d",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:8420-209",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:8633-54c",
"ownerId":null,
"externalCode":"externalCode:8db6-886",
"orderApprovalStatus":"NEW",
"supplierName":"UPD Name 0.15961",
"supplierExternalCode":"externalCode:da-4c23-",
"ownerLocation":null,
"ownerLocationName":null,
"ownerDepartment":null,
"ownerDepartmentName":null,
"ownerFirstName":null,
"ownerLastName":null,
"ownerGroups":null
}
],
"windowSize":5,
"currentPage":1
}
Returns single order object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/order/{id}
| name | description | default |
|---|---|---|
| id | Order's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/order/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/order/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:42 GMT
<supplierOrder id="1" version="2" dateCreated="2016-10-05T12:19:03.127+02:00" dateModified="2016-10-05T12:27:40.542+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<supplierId>
<id>5</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="1" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J4</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>15</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="2" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J24</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>85</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="3" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J17</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>57</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>UPDATED Order Name 0.8599683411212926</name>
<orderNumber>orderNumber:20-979f3</orderNumber>
<notes>Notes for: Consulting - 1</notes>
<issueDate>2016-10-26T12:19:01.712+02:00</issueDate>
<supplierRef>supplierRef:8e-81fdc</supplierRef>
<multicurrencyRate>0.5551</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>12</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-26T12:19:01.712+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-26T12:19:01.712+02:00</invoicePaidDate>
<invoiceDate>2016-10-26T12:19:01.712+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:54-43d4b</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:2b-2da33</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:53-1870d</processErrorMessage>
<externalCode>externalCode:-bbf68f8</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
</supplierOrder>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:42 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:19:03.127+0000",
"dateModified":"2016-10-05T10:27:40.542+0000",
"lastUpdatedUserId":21,
"supplierId":{
"id":5
},
"lineItems":[
{
"id":1,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.542+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J4",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":15
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":2,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.542+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J24",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":85
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":3,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.542+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J17",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":57
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"UPDATED Order Name 0.8599683411212926",
"orderNumber":"orderNumber:20-979f3",
"notes":"Notes for: Consulting - 1",
"issueDate":"2016-10-26T10:19:01.712+0000",
"supplierRef":"supplierRef:8e-81fdc",
"multicurrencyRate":0.5551,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":12
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-26T10:19:01.712+0000",
"invoicePaidDate":"2016-10-26T10:19:01.712+0000",
"invoiceDate":"2016-10-26T10:19:01.712+0000",
"invoiceNumber":"invoiceNumber:54-43d4b",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:2b-2da33",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:53-1870d",
"ownerId":null,
"externalCode":"externalCode:-bbf68f8",
"orderApprovalStatus":"NEW"
}
Updates order with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/order
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<supplierOrder id="1" version="1" dateCreated="2016-10-05T12:19:03.127+02:00" dateModified="2016-10-05T12:27:40.070+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<supplierId>
<id>5</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="1" version="1" dateModified="2016-10-05T12:27:40.070+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J4</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>15</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="2" version="1" dateModified="2016-10-05T12:27:40.070+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J24</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>85</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="3" version="1" dateModified="2016-10-05T12:27:40.070+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J17</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>57</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<orderNumber>orderNumber:20-979f3</orderNumber>
<notes>Notes for: Consulting - 1</notes>
<issueDate>2016-10-26T12:19:01.712+02:00</issueDate>
<supplierRef>supplierRef:8e-81fdc</supplierRef>
<multicurrencyRate>0.5551</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>12</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-26T12:19:01.712+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-26T12:19:01.712+02:00</invoicePaidDate>
<invoiceDate>2016-10-26T12:19:01.712+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:54-43d4b</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:2b-2da33</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:53-1870d</processErrorMessage>
<externalCode>externalCode:-bbf68f8</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<name>UPDATED Order Name 0.8599683411212926</name>
</supplierOrder>
POST /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"supplierId":{
"id":5
},
"orderNumber":"orderNumber:20-979f3",
"notes":"Notes for: Consulting - 1",
"externalCode":"externalCode:-bbf68f8",
"trafficCompanyLocationDeliveryAddressId":null,
"ownerId":null,
"processErrorMessage":"processErrorMessage:53-1870d",
"orderState":"NOT_ORDERED",
"lineItems":[
{
"supplierOrderId":{
"id":1
},
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.129+0000",
"jobThirdPartyCostId":{
"id":15
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"id":1,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"dateModified":null,
"version":0,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J4"
},
{
"supplierOrderId":{
"id":1
},
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.131+0000",
"jobThirdPartyCostId":{
"id":85
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"id":2,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"dateModified":null,
"version":0,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J24"
},
{
"supplierOrderId":{
"id":1
},
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.133+0000",
"jobThirdPartyCostId":{
"id":57
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"id":3,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"dateModified":null,
"version":0,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J17"
}
],
"lastUpdatedUserId":7,
"otherCurrency":"GBP",
"dateCreated":"2016-10-05T10:19:03.127+0000",
"supplierRecipientAddressId":{
"id":12
},
"deliveryAddress":null,
"multicurrencyEnabled":false,
"processPI":false,
"invoiceNumber":"invoiceNumber:54-43d4b",
"supplierRecipientContactId":null,
"id":1,
"issueDate":"2016-10-26T10:19:01.712+0000",
"invoiceAmountPaidNet":null,
"exported":false,
"process":false,
"dateModified":null,
"invoiceDate":"2016-10-26T10:19:01.712+0000",
"orderApprovalStatus":"NEW",
"version":0,
"clientsAddressId":null,
"supplierOrderUserCategoryListItemId":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-26T10:19:01.712+0000",
"exportedPI":false,
"supplierRef":"supplierRef:8e-81fdc",
"invoicePaidDate":"2016-10-26T10:19:01.712+0000",
"processPIErrorMessage":"processPIErrorMessage:2b-2da33",
"name":"UPDATED Order Name 0.11262828170054306",
"multicurrencyRate":0.5551
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:40 GMT
<supplierOrder id="1" version="2" dateCreated="2016-10-05T12:19:03.127+02:00" dateModified="2016-10-05T12:27:40.542+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<supplierId>
<id>5</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="1" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J4</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>15</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="2" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J24</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>85</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="3" version="1" dateModified="2016-10-05T12:27:40.542+02:00">
<supplierOrderId>
<id>1</id>
</supplierOrderId>
<supplierOrderOrderNumber>orderNumber:20-979f3</supplierOrderOrderNumber>
<jobNumber>J17</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>57</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>UPDATED Order Name 0.8599683411212926</name>
<orderNumber>orderNumber:20-979f3</orderNumber>
<notes>Notes for: Consulting - 1</notes>
<issueDate>2016-10-26T12:19:01.712+02:00</issueDate>
<supplierRef>supplierRef:8e-81fdc</supplierRef>
<multicurrencyRate>0.5551</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>12</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-26T12:19:01.712+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-26T12:19:01.712+02:00</invoicePaidDate>
<invoiceDate>2016-10-26T12:19:01.712+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:54-43d4b</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:2b-2da33</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:53-1870d</processErrorMessage>
<externalCode>externalCode:-bbf68f8</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
</supplierOrder>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:39 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:19:03.127+0000",
"dateModified":"2016-10-05T10:27:40.070+0000",
"lastUpdatedUserId":21,
"supplierId":{
"id":5
},
"lineItems":[
{
"id":1,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.070+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J4",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":15
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":2,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.070+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J24",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":85
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":3,
"version":1,
"dateCreated":null,
"dateModified":"2016-10-05T10:27:40.070+0000",
"supplierOrderId":{
"id":1
},
"supplierOrderOrderNumber":"orderNumber:20-979f3",
"jobNumber":"J17",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":57
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"UPDATED Order Name 0.11262828170054306",
"orderNumber":"orderNumber:20-979f3",
"notes":"Notes for: Consulting - 1",
"issueDate":"2016-10-26T10:19:01.712+0000",
"supplierRef":"supplierRef:8e-81fdc",
"multicurrencyRate":0.5551,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":12
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-26T10:19:01.712+0000",
"invoicePaidDate":"2016-10-26T10:19:01.712+0000",
"invoiceDate":"2016-10-26T10:19:01.712+0000",
"invoiceNumber":"invoiceNumber:54-43d4b",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:2b-2da33",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:53-1870d",
"ownerId":null,
"externalCode":"externalCode:-bbf68f8",
"orderApprovalStatus":"NEW"
}
Adds submitted order and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/order
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<supplierOrder id="-1" version="-1" dateCreated="2016-10-05T12:19:03.170+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<supplierId>
<id>5</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="-1" version="-1" dateCreated="2016-10-05T12:19:03.176+02:00">
<jobNumber>J13</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>46</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="-1" version="-1" dateCreated="2016-10-05T12:19:03.172+02:00">
<jobNumber>J16</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>52</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="-1" version="-1" dateCreated="2016-10-05T12:19:03.175+02:00">
<jobNumber>J12</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>44</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="-1" version="-1" dateCreated="2016-10-05T12:19:03.174+02:00">
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<notes>Notes for: Consulting - 1</notes>
<issueDate>2016-10-10T12:19:03.140+02:00</issueDate>
<supplierRef>supplierRef:ac1-93e8</supplierRef>
<multicurrencyRate>0.4014</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>12</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-10T12:19:03.140+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-10T12:19:03.140+02:00</invoicePaidDate>
<invoiceDate>2016-10-10T12:19:03.140+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:c2d-d532</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:25a-fc7a</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:df3-3e8f</processErrorMessage>
<externalCode>externalCode:d38-6744</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
<name>CREATED Order 0.5963403945008974</name>
</supplierOrder>
PUT /TrafficLiteServer/openapi/order HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"supplierId":{
"id":5
},
"notes":"Notes for: Consulting - 1",
"externalCode":"externalCode:d38-6744",
"trafficCompanyLocationDeliveryAddressId":null,
"ownerId":null,
"processErrorMessage":"processErrorMessage:df3-3e8f",
"orderState":"NOT_ORDERED",
"lineItems":[
{
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.176+0000",
"jobThirdPartyCostId":{
"id":46
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"id":-1,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"version":-1,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J13"
},
{
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.172+0000",
"jobThirdPartyCostId":{
"id":52
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"id":-1,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"version":-1,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J16"
},
{
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.175+0000",
"jobThirdPartyCostId":{
"id":44
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"id":-1,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"version":-1,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J12"
},
{
"orderedDeliveryDate":null,
"invoiceAmount":null,
"orderState":"NOT_ORDERED",
"orderedUnitCostOtherCurrency":null,
"otherCurrency":null,
"actualUnitCost":null,
"dateCreated":"2016-10-05T10:19:03.174+0000",
"jobThirdPartyCostId":{
"id":1
},
"orderedTotalCost":null,
"actualQuantity":null,
"processPI":false,
"id":-1,
"issueDate":null,
"actualDeliveryDate":null,
"orderedQuantity":null,
"taxTypeTwoId":null,
"orderedUnitCost":null,
"specification":null,
"version":-1,
"exportedPI":false,
"supplierRef":null,
"actualUnitCostOtherCurrency":null,
"taxTypeId":null,
"lineItemOrder":null,
"processPIErrorMessage":null,
"tenderLineItemId":null,
"invoiceAmountOtherCurrency":null,
"jobNumber":"J1"
}
],
"lastUpdatedUserId":7,
"otherCurrency":"GBP",
"dateCreated":"2016-10-05T10:19:03.170+0000",
"supplierRecipientAddressId":{
"id":12
},
"deliveryAddress":null,
"multicurrencyEnabled":false,
"processPI":false,
"invoiceNumber":"invoiceNumber:c2d-d532",
"supplierRecipientContactId":null,
"id":"-1",
"issueDate":"2016-10-10T10:19:03.140+0000",
"invoiceAmountPaidNet":null,
"exported":false,
"process":false,
"invoiceDate":"2016-10-10T10:19:03.140+0000",
"orderApprovalStatus":"NEW",
"version":"-1",
"clientsAddressId":null,
"supplierOrderUserCategoryListItemId":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-10T10:19:03.140+0000",
"exportedPI":false,
"supplierRef":"supplierRef:ac1-93e8",
"invoicePaidDate":"2016-10-10T10:19:03.140+0000",
"processPIErrorMessage":"processPIErrorMessage:25a-fc7a",
"name":"CREATED Order 0.34855544434547214",
"multicurrencyRate":0.4014
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:41 GMT
<supplierOrder id="12" version="0" dateCreated="2016-10-05T12:27:42.491+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<supplierId>
<id>5</id>
</supplierId>
<lineItems>
<supplierOrderLineItem id="41" version="0" dateCreated="2016-10-05T12:27:42.495+02:00">
<supplierOrderId>
<id>12</id>
</supplierOrderId>
<supplierOrderOrderNumber>PO2</supplierOrderOrderNumber>
<jobNumber>J12</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>44</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="42" version="0" dateCreated="2016-10-05T12:27:42.497+02:00">
<supplierOrderId>
<id>12</id>
</supplierOrderId>
<supplierOrderOrderNumber>PO2</supplierOrderOrderNumber>
<jobNumber>J13</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>46</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="40" version="0" dateCreated="2016-10-05T12:27:42.493+02:00">
<supplierOrderId>
<id>12</id>
</supplierOrderId>
<supplierOrderOrderNumber>PO2</supplierOrderOrderNumber>
<jobNumber>J1</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>1</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
<supplierOrderLineItem id="43" version="0" dateCreated="2016-10-05T12:27:42.499+02:00">
<supplierOrderId>
<id>12</id>
</supplierOrderId>
<supplierOrderOrderNumber>PO2</supplierOrderOrderNumber>
<jobNumber>J16</jobNumber>
<orderState>NOT_ORDERED</orderState>
<jobThirdPartyCostId>
<id>52</id>
</jobThirdPartyCostId>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
</supplierOrderLineItem>
</lineItems>
<orderState>NOT_ORDERED</orderState>
<name>CREATED Order 0.5963403945008974</name>
<orderNumber>PO2</orderNumber>
<notes>Notes for: Consulting - 1</notes>
<issueDate>2016-10-10T12:19:03.140+02:00</issueDate>
<supplierRef>supplierRef:ac1-93e8</supplierRef>
<multicurrencyRate>0.4014</multicurrencyRate>
<otherCurrency>GBP</otherCurrency>
<multicurrencyEnabled>false</multicurrencyEnabled>
<supplierRecipientAddressId>
<id>12</id>
</supplierRecipientAddressId>
<orderPaymentStatus>NO_INVOICE</orderPaymentStatus>
<invoiceReceivedDate>2016-10-10T12:19:03.140+02:00</invoiceReceivedDate>
<invoicePaidDate>2016-10-10T12:19:03.140+02:00</invoicePaidDate>
<invoiceDate>2016-10-10T12:19:03.140+02:00</invoiceDate>
<invoiceNumber>invoiceNumber:c2d-d532</invoiceNumber>
<processPI>false</processPI>
<exportedPI>false</exportedPI>
<processPIErrorMessage>processPIErrorMessage:25a-fc7a</processPIErrorMessage>
<process>false</process>
<exported>false</exported>
<processErrorMessage>processErrorMessage:df3-3e8f</processErrorMessage>
<externalCode>externalCode:d38-6744</externalCode>
<orderApprovalStatus>NEW</orderApprovalStatus>
</supplierOrder>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:41 GMT
{
"id":11,
"version":0,
"dateCreated":"2016-10-05T10:27:42.059+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"supplierId":{
"id":5
},
"lineItems":[
{
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:27:42.060+0000",
"dateModified":null,
"supplierOrderId":{
"id":11
},
"supplierOrderOrderNumber":"PO1",
"jobNumber":"J16",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":52
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":37,
"version":0,
"dateCreated":"2016-10-05T10:27:42.062+0000",
"dateModified":null,
"supplierOrderId":{
"id":11
},
"supplierOrderOrderNumber":"PO1",
"jobNumber":"J1",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":1
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":38,
"version":0,
"dateCreated":"2016-10-05T10:27:42.064+0000",
"dateModified":null,
"supplierOrderId":{
"id":11
},
"supplierOrderOrderNumber":"PO1",
"jobNumber":"J13",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":46
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
},
{
"id":39,
"version":0,
"dateCreated":"2016-10-05T10:27:42.066+0000",
"dateModified":null,
"supplierOrderId":{
"id":11
},
"supplierOrderOrderNumber":"PO1",
"jobNumber":"J12",
"orderState":"NOT_ORDERED",
"jobThirdPartyCostId":{
"id":44
},
"tenderLineItemId":null,
"lineItemOrder":null,
"supplierRef":null,
"specification":null,
"orderedQuantity":null,
"orderedUnitCost":null,
"orderedUnitCostOtherCurrency":null,
"orderedDeliveryDate":null,
"actualQuantity":null,
"actualUnitCost":null,
"actualUnitCostOtherCurrency":null,
"actualDeliveryDate":null,
"otherCurrency":null,
"issueDate":null,
"taxTypeId":null,
"taxTypeTwoId":null,
"invoiceAmount":null,
"invoiceAmountOtherCurrency":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":null,
"orderedTotalCost":null
}
],
"orderState":"NOT_ORDERED",
"supplierOrderUserCategoryListItemId":null,
"name":"CREATED Order 0.34855544434547214",
"orderNumber":"PO1",
"notes":"Notes for: Consulting - 1",
"issueDate":"2016-10-10T10:19:03.140+0000",
"supplierRef":"supplierRef:ac1-93e8",
"multicurrencyRate":0.4014,
"otherCurrency":"GBP",
"multicurrencyEnabled":false,
"supplierRecipientAddressId":{
"id":12
},
"supplierRecipientContactId":null,
"clientsAddressId":null,
"trafficCompanyLocationDeliveryAddressId":null,
"deliveryAddress":null,
"orderPaymentStatus":"NO_INVOICE",
"invoiceReceivedDate":"2016-10-10T10:19:03.140+0000",
"invoicePaidDate":"2016-10-10T10:19:03.140+0000",
"invoiceDate":"2016-10-10T10:19:03.140+0000",
"invoiceNumber":"invoiceNumber:c2d-d532",
"invoiceAmountPaidNet":null,
"processPI":false,
"exportedPI":false,
"processPIErrorMessage":"processPIErrorMessage:25a-fc7a",
"process":false,
"exported":false,
"processErrorMessage":"processErrorMessage:df3-3e8f",
"ownerId":null,
"externalCode":"externalCode:d38-6744",
"orderApprovalStatus":"NEW"
}
Deletes order object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/order/{id}
| name | description | default |
|---|---|---|
| id | Order's id. |
DELETE /TrafficLiteServer/openapi/order/12 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:42 GMT
Returns page of lightweight expensesheet objects.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expensesheet
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter for list values. | |
| expensesheet | Result's expensesheet property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:46 GMT
<pagedResult maxResults="2" windowSize="5" currentPage="1">
<expenseSheetSearchWrapper id="2" version="1" dateCreated="2016-10-05T12:19:16.129+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>1</id>
</approverId>
<submitterId>
<id>5</id>
</submitterId>
<expenseSheetLineItems>
<expenseSheetLineItem id="4" version="1" dateCreated="2016-10-05T12:19:16.130+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>33</id>
</jobExpenseEntryId>
<jobExpenseEntry id="33" version="0" dateCreated="2016-10-05T12:19:16.103+02:00">
<jobExpenseId>
<id>163</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Subsistence</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>20</quantity>
<costPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>20</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="163" version="0" dateCreated="2016-10-05T12:18:49.935+02:00" dateModified="2016-10-05T12:19:16.105+02:00">
<uuid>f382e8e2-13b1-4a80-91f7-fbdb726af920</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:-47f1-9b</externalNote>
<internalNote>internalNote:-4bcc-9f</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-40f9-a1</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>163</id>
</jobExpenseId>
<uuid>6e63a98b-42f5-4805-a135-ee9a7ea87e96</uuid>
<lineItemOrder>3</lineItemOrder>
<description>Subsistence</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>20.00</quantity>
<incurredPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="6" version="1" dateCreated="2016-10-05T12:19:16.132+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>35</id>
</jobExpenseEntryId>
<jobExpenseEntry id="35" version="0" dateCreated="2016-10-05T12:19:16.123+02:00">
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>30</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="245" version="1" dateCreated="2016-10-05T12:18:55.937+02:00" dateModified="2016-10-05T12:19:16.126+02:00">
<uuid>dd86d5f1-fa91-44c9-829e-3a47e1e7b497</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:0ec-7bfa</externalNote>
<internalNote>internalNote:71d-e83b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:fad-14e7</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<uuid>feda1338-45fe-4f2d-a05b-bbbe9754ea5b</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="5" version="1" dateCreated="2016-10-05T12:19:16.131+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>34</id>
</jobExpenseEntryId>
<jobExpenseEntry id="34" version="0" dateCreated="2016-10-05T12:19:16.113+02:00">
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>25</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="192" version="0" dateCreated="2016-10-05T12:18:52.959+02:00" dateModified="2016-10-05T12:19:16.116+02:00">
<uuid>f1244a8f-77e4-44d8-8463-38558af88001</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:571-489a</externalNote>
<internalNote>internalNote:782-d519</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:c69-17a3</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<uuid>b8a60898-57e9-4633-be82-13206947387c</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
</expenseSheetLineItems>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<name>ExpenseSheet</name>
<expenseSheetStatus>APPROVED</expenseSheetStatus>
<approvedDate>2016-10-05T12:19:16.143+02:00</approvedDate>
<approvedByEmployeeId>
<id>16</id>
</approvedByEmployeeId>
<process>false</process>
<exported>false</exported>
<jobNumbers/>
</expenseSheetSearchWrapper>
<expenseSheetSearchWrapper id="1" version="1" dateCreated="2016-10-05T12:19:16.038+02:00" dateModified="2016-10-05T12:19:16.064+02:00">
<lastUpdatedUserId>7</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems>
<expenseSheetLineItem id="1" version="1" dateCreated="2016-10-05T12:19:16.039+02:00" dateModified="2016-10-05T12:19:16.064+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>30</id>
</jobExpenseEntryId>
<jobExpenseEntry id="30" version="0" dateCreated="2016-10-05T12:19:16.006+02:00">
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>30</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="253" version="1" dateCreated="2016-10-05T12:18:55.945+02:00" dateModified="2016-10-05T12:19:16.010+02:00">
<uuid>442afab1-efe6-439a-a5fe-b05698270c77</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:3a0-23fd</externalNote>
<internalNote>internalNote:28b-0bc1</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:6f1-8ca5</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<uuid>8423c707-7ce6-48c9-b6d9-021a432a7c31</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="2" version="1" dateCreated="2016-10-05T12:19:16.040+02:00" dateModified="2016-10-05T12:19:16.064+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>31</id>
</jobExpenseEntryId>
<jobExpenseEntry id="31" version="0" dateCreated="2016-10-05T12:19:16.021+02:00">
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Subsistence</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20</quantity>
<costPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>20</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="149" version="0" dateCreated="2016-10-05T12:18:49.923+02:00" dateModified="2016-10-05T12:19:16.024+02:00">
<uuid>f66e11ff-412d-40b0-b194-6fda426de604</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:-4c3a-88</externalNote>
<internalNote>internalNote:-4807-bc</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-465f-9f</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<uuid>22dfd802-5ee0-4185-ab87-7c096577e506</uuid>
<lineItemOrder>3</lineItemOrder>
<description>Subsistence</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20.00</quantity>
<incurredPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="3" version="1" dateCreated="2016-10-05T12:19:16.041+02:00" dateModified="2016-10-05T12:19:16.064+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>32</id>
</jobExpenseEntryId>
<jobExpenseEntry id="32" version="0" dateCreated="2016-10-05T12:19:16.031+02:00">
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>25</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="207" version="0" dateCreated="2016-10-05T12:18:52.978+02:00" dateModified="2016-10-05T12:19:16.034+02:00">
<uuid>f9770e11-2fe8-41a2-9235-97a0b0f3d07b</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:16e-6afc</externalNote>
<internalNote>internalNote:18b-986a</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:412-828c</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<uuid>a013add0-b8bb-4d9e-9ab9-82a430da91e7</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
</expenseSheetLineItems>
<expenseSheetNumber>EXP1</expenseSheetNumber>
<name>ExpenseSheet</name>
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:19:16.055+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
<jobNumbers/>
</expenseSheetSearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:45 GMT
{
"maxResults":2,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.ExpenseSheetSearchWrapperTO",
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:19:16.129+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"lastUpdatedUserId":7,
"createdById":{
"id":16
},
"approverId":{
"id":1
},
"submitterId":{
"id":5
},
"expenseSheetUserCategoryListItemId":null,
"expenseSheetLineItems":[
{
"id":4,
"version":1,
"dateCreated":"2016-10-05T10:19:16.130+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":33
},
"jobExpenseId":{
"id":163
},
"uuid":"6e63a98b-42f5-4805-a135-ee9a7ea87e96",
"lineItemOrder":3,
"description":"Subsistence",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":20.00,
"incurredPerItem":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:19:16.132+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":35
},
"jobExpenseId":{
"id":245
},
"uuid":"feda1338-45fe-4f2d-a05b-bbbe9754ea5b",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":5,
"version":1,
"dateCreated":"2016-10-05T10:19:16.131+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":34
},
"jobExpenseId":{
"id":192
},
"uuid":"b8a60898-57e9-4633-be82-13206947387c",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
}
],
"expenseSheetNumber":"EXP2",
"name":"ExpenseSheet",
"description":null,
"expenseSheetStatus":"APPROVED",
"submittedDate":null,
"deniedDate":null,
"approvedDate":"2016-10-05T10:19:16.143+0000",
"paidDate":null,
"approvedByEmployeeId":{
"id":16
},
"submitterComments":null,
"approverComments":null,
"externalCode":null,
"process":false,
"exported":false,
"processErrorMessage":null,
"jobNumbers":[
]
},
{
"@class":"com.sohnar.trafficlite.transfer.expenses.ExpenseSheetSearchWrapperTO",
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:19:16.038+0000",
"dateModified":"2016-10-05T10:19:16.064+0000",
"lastUpdatedUserId":7,
"createdById":{
"id":16
},
"approverId":{
"id":5
},
"submitterId":{
"id":1
},
"expenseSheetUserCategoryListItemId":null,
"expenseSheetLineItems":[
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:19:16.039+0000",
"dateModified":"2016-10-05T10:19:16.064+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":30
},
"jobExpenseId":{
"id":253
},
"uuid":"8423c707-7ce6-48c9-b6d9-021a432a7c31",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":2,
"version":1,
"dateCreated":"2016-10-05T10:19:16.040+0000",
"dateModified":"2016-10-05T10:19:16.064+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":31
},
"jobExpenseId":{
"id":149
},
"uuid":"22dfd802-5ee0-4185-ab87-7c096577e506",
"lineItemOrder":3,
"description":"Subsistence",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":20.00,
"incurredPerItem":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":3,
"version":1,
"dateCreated":"2016-10-05T10:19:16.041+0000",
"dateModified":"2016-10-05T10:19:16.064+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":32
},
"jobExpenseId":{
"id":207
},
"uuid":"a013add0-b8bb-4d9e-9ab9-82a430da91e7",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
}
],
"expenseSheetNumber":"EXP1",
"name":"ExpenseSheet",
"description":null,
"expenseSheetStatus":"SUBMITTED",
"submittedDate":"2016-10-05T10:19:16.055+0000",
"deniedDate":null,
"approvedDate":null,
"paidDate":null,
"approvedByEmployeeId":null,
"submitterComments":null,
"approverComments":null,
"externalCode":null,
"process":false,
"exported":false,
"processErrorMessage":null,
"jobNumbers":[
]
}
],
"windowSize":5,
"currentPage":1
}
Returns single expensesheet object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expensesheet/{id}
| name | description | default |
|---|---|---|
| id | ExpenseSheet's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/expenses/expensesheet/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/expenses/expensesheet/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:50 GMT
<expenseSheet id="1" version="3" dateCreated="2016-10-05T12:19:16.038+02:00" dateModified="2016-10-05T12:27:50.734+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems>
<expenseSheetLineItem id="1" version="2" dateCreated="2016-10-05T12:19:16.039+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>30</id>
</jobExpenseEntryId>
<jobExpenseEntry id="30" version="1" dateCreated="2016-10-05T12:19:16.006+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>30</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="253" version="1" dateCreated="2016-10-05T12:18:55.945+02:00" dateModified="2016-10-05T12:19:16.010+02:00">
<uuid>442afab1-efe6-439a-a5fe-b05698270c77</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:3a0-23fd</externalNote>
<internalNote>internalNote:28b-0bc1</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:6f1-8ca5</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<uuid>8423c707-7ce6-48c9-b6d9-021a432a7c31</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="2" version="2" dateCreated="2016-10-05T12:19:16.040+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>31</id>
</jobExpenseEntryId>
<jobExpenseEntry id="31" version="1" dateCreated="2016-10-05T12:19:16.021+02:00" dateModified="2016-10-05T12:27:50.049+02:00">
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Subsistence</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20</quantity>
<costPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>20</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="149" version="0" dateCreated="2016-10-05T12:18:49.923+02:00" dateModified="2016-10-05T12:19:16.024+02:00">
<uuid>f66e11ff-412d-40b0-b194-6fda426de604</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:-4c3a-88</externalNote>
<internalNote>internalNote:-4807-bc</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-465f-9f</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<uuid>22dfd802-5ee0-4185-ab87-7c096577e506</uuid>
<lineItemOrder>3</lineItemOrder>
<description>Subsistence</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20.00</quantity>
<incurredPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="3" version="2" dateCreated="2016-10-05T12:19:16.041+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>32</id>
</jobExpenseEntryId>
<jobExpenseEntry id="32" version="1" dateCreated="2016-10-05T12:19:16.031+02:00" dateModified="2016-10-05T12:27:50.058+02:00">
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>25</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="207" version="0" dateCreated="2016-10-05T12:18:52.978+02:00" dateModified="2016-10-05T12:19:16.034+02:00">
<uuid>f9770e11-2fe8-41a2-9235-97a0b0f3d07b</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:16e-6afc</externalNote>
<internalNote>internalNote:18b-986a</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:412-828c</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<uuid>a013add0-b8bb-4d9e-9ab9-82a430da91e7</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
</expenseSheetLineItems>
<expenseSheetNumber>EXP1</expenseSheetNumber>
<name>UPDATED ExpenseSheet Name 0.16669583741501315</name>
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:19:16.055+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
</expenseSheet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:50 GMT
{
"id":1,
"version":3,
"dateCreated":"2016-10-05T10:19:16.038+0000",
"dateModified":"2016-10-05T10:27:50.734+0000",
"lastUpdatedUserId":21,
"createdById":{
"id":16
},
"approverId":{
"id":5
},
"submitterId":{
"id":1
},
"expenseSheetUserCategoryListItemId":null,
"expenseSheetLineItems":[
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:19:16.039+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":30
},
"jobExpenseId":{
"id":253
},
"uuid":"8423c707-7ce6-48c9-b6d9-021a432a7c31",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":2,
"version":2,
"dateCreated":"2016-10-05T10:19:16.040+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":31
},
"jobExpenseId":{
"id":149
},
"uuid":"22dfd802-5ee0-4185-ab87-7c096577e506",
"lineItemOrder":3,
"description":"Subsistence",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":20.00,
"incurredPerItem":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":10.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":3,
"version":2,
"dateCreated":"2016-10-05T10:19:16.041+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":32
},
"jobExpenseId":{
"id":207
},
"uuid":"a013add0-b8bb-4d9e-9ab9-82a430da91e7",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
}
],
"expenseSheetNumber":"EXP1",
"name":"UPDATED ExpenseSheet Name 0.16669583741501315",
"description":null,
"expenseSheetStatus":"SUBMITTED",
"submittedDate":"2016-10-05T10:19:16.055+0000",
"deniedDate":null,
"approvedDate":null,
"paidDate":null,
"approvedByEmployeeId":null,
"submitterComments":null,
"approverComments":null,
"externalCode":null,
"process":false,
"exported":false,
"processErrorMessage":null
}
Updates expensesheet with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expensesheet
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<expenseSheet id="1" version="2" dateCreated="2016-10-05T12:19:16.038+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems>
<expenseSheetLineItem id="1" version="2" dateCreated="2016-10-05T12:19:16.039+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>30</id>
</jobExpenseEntryId>
<jobExpenseEntry id="30" version="1" dateCreated="2016-10-05T12:19:16.006+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.." />
<jobId>
<id>30</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="253" version="1" dateCreated="2016-10-05T12:18:55.945+02:00" dateModified="2016-10-05T12:19:16.010+02:00">
<uuid>442afab1-efe6-439a-a5fe-b05698270c77</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:3a0-23fd</externalNote>
<internalNote>internalNote:28b-0bc1</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:6f1-8ca5</externalData>
<jobId reference="../../jobExpenseEntry/jobId" />
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<uuid>8423c707-7ce6-48c9-b6d9-021a432a7c31</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="2" version="2" dateCreated="2016-10-05T12:19:16.040+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>31</id>
</jobExpenseEntryId>
<jobExpenseEntry id="31" version="1" dateCreated="2016-10-05T12:19:16.021+02:00" dateModified="2016-10-05T12:27:50.049+02:00">
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Subsistence</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20</quantity>
<costPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId" />
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.." />
<jobId>
<id>20</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="149" version="0" dateCreated="2016-10-05T12:18:49.923+02:00" dateModified="2016-10-05T12:19:16.024+02:00">
<uuid>f66e11ff-412d-40b0-b194-6fda426de604</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:-4c3a-88</externalNote>
<internalNote>internalNote:-4807-bc</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-465f-9f</externalData>
<jobId reference="../../jobExpenseEntry/jobId" />
<totalCostLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<uuid>22dfd802-5ee0-4185-ab87-7c096577e506</uuid>
<lineItemOrder>3</lineItemOrder>
<description>Subsistence</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20.00</quantity>
<incurredPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="3" version="2" dateCreated="2016-10-05T12:19:16.041+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>32</id>
</jobExpenseEntryId>
<jobExpenseEntry id="32" version="1" dateCreated="2016-10-05T12:19:16.031+02:00" dateModified="2016-10-05T12:27:50.058+02:00">
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId" />
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.." />
<jobId>
<id>25</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="207" version="0" dateCreated="2016-10-05T12:18:52.978+02:00" dateModified="2016-10-05T12:19:16.034+02:00">
<uuid>f9770e11-2fe8-41a2-9235-97a0b0f3d07b</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:16e-6afc</externalNote>
<internalNote>internalNote:18b-986a</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:412-828c</externalData>
<jobId reference="../../jobExpenseEntry/jobId" />
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<uuid>a013add0-b8bb-4d9e-9ab9-82a430da91e7</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
</expenseSheetLineItems>
<expenseSheetNumber>EXP1</expenseSheetNumber>
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:19:16.055+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
<name>UPDATED ExpenseSheet Name 0.16669583741501315</name>
</expenseSheet>
POST /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"externalCode":null,
"expenseSheetLineItems":[
{
"incurredTaxTotalAmountOtherCurrency":null,
"notes":null,
"incurredTotalNetOtherCurrency":{
"currencyType":"GBP",
"amountString":100
},
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"description":"Taxi-Fare",
"uuid":"8423c707-7ce6-48c9-b6d9-021a432a7c31",
"numberOfClients":null,
"jobExpenseEntryType":"EMPLOYEE",
"dateCreated":"2016-10-05T10:19:16.039+0000",
"incurredTotalNet":{
"currencyType":"GBP",
"amountString":100
},
"incurredPerItemOtherCurrency":{
"currencyType":"GBP",
"amountString":50
},
"expenseSheetStatusType":"SUBMITTED",
"numberOfOther":null,
"id":1,
"approverComments":null,
"numberOfStaff":null,
"quantity":2,
"jobExpenseEntryId":{
"id":30
},
"incurredPerItem":{
"currencyType":"GBP",
"amountString":50
},
"dateModified":"2016-10-05T10:19:16.064+0000",
"incurredTaxTotalAmount":{
"currencyType":"GBP",
"amountString":0
},
"version":1,
"submitterComments":null,
"taxTypeId":null,
"lineItemOrder":1,
"incurredCountry":null,
"jobExpenseId":{
"id":253
},
"expenseSheetId":{
"id":1
}
},
{
"incurredTaxTotalAmountOtherCurrency":null,
"notes":null,
"incurredTotalNetOtherCurrency":{
"currencyType":"GBP",
"amountString":200
},
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"description":"Subsistence",
"uuid":"22dfd802-5ee0-4185-ab87-7c096577e506",
"numberOfClients":null,
"jobExpenseEntryType":"EMPLOYEE",
"dateCreated":"2016-10-05T10:19:16.040+0000",
"incurredTotalNet":{
"currencyType":"GBP",
"amountString":200
},
"incurredPerItemOtherCurrency":{
"currencyType":"GBP",
"amountString":10
},
"expenseSheetStatusType":"SUBMITTED",
"numberOfOther":null,
"id":2,
"approverComments":null,
"numberOfStaff":null,
"quantity":20,
"jobExpenseEntryId":{
"id":31
},
"incurredPerItem":{
"currencyType":"GBP",
"amountString":10
},
"dateModified":"2016-10-05T10:19:16.064+0000",
"incurredTaxTotalAmount":{
"currencyType":"GBP",
"amountString":0
},
"version":1,
"submitterComments":null,
"taxTypeId":null,
"lineItemOrder":3,
"incurredCountry":null,
"jobExpenseId":{
"id":149
},
"expenseSheetId":{
"id":1
}
},
{
"incurredTaxTotalAmountOtherCurrency":null,
"notes":null,
"incurredTotalNetOtherCurrency":{
"currencyType":"GBP",
"amountString":1200
},
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"description":"Accomodation-Expenses",
"uuid":"a013add0-b8bb-4d9e-9ab9-82a430da91e7",
"numberOfClients":null,
"jobExpenseEntryType":"EMPLOYEE",
"dateCreated":"2016-10-05T10:19:16.041+0000",
"incurredTotalNet":{
"currencyType":"GBP",
"amountString":1200
},
"incurredPerItemOtherCurrency":{
"currencyType":"GBP",
"amountString":120
},
"expenseSheetStatusType":"SUBMITTED",
"numberOfOther":null,
"id":3,
"approverComments":null,
"numberOfStaff":null,
"quantity":10,
"jobExpenseEntryId":{
"id":32
},
"incurredPerItem":{
"currencyType":"GBP",
"amountString":120
},
"dateModified":"2016-10-05T10:19:16.064+0000",
"incurredTaxTotalAmount":{
"currencyType":"GBP",
"amountString":0
},
"version":1,
"submitterComments":null,
"taxTypeId":null,
"lineItemOrder":2,
"incurredCountry":null,
"jobExpenseId":{
"id":207
},
"expenseSheetId":{
"id":1
}
}
],
"description":null,
"submittedDate":"2016-10-05T10:19:16.055+0000",
"processErrorMessage":null,
"lastUpdatedUserId":7,
"dateCreated":"2016-10-05T10:19:16.038+0000",
"paidDate":null,
"submitterId":{
"id":1
},
"approvedByEmployeeId":null,
"id":1,
"createdById":{
"id":16
},
"expenseSheetStatus":"SUBMITTED",
"exported":false,
"expenseSheetNumber":"EXP1",
"approverComments":null,
"process":false,
"approverId":{
"id":5
},
"dateModified":"2016-10-05T10:19:16.064+0000",
"version":1,
"approvedDate":null,
"deniedDate":null,
"expenseSheetUserCategoryListItemId":null,
"submitterComments":null,
"name":"UPDATED ExpenseSheet Name 0.028160692497505857"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:50 GMT
<expenseSheet id="1" version="3" dateCreated="2016-10-05T12:19:16.038+02:00" dateModified="2016-10-05T12:27:50.734+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems>
<expenseSheetLineItem id="1" version="2" dateCreated="2016-10-05T12:19:16.039+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>30</id>
</jobExpenseEntryId>
<jobExpenseEntry id="30" version="1" dateCreated="2016-10-05T12:19:16.006+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>30</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="253" version="1" dateCreated="2016-10-05T12:18:55.945+02:00" dateModified="2016-10-05T12:19:16.010+02:00">
<uuid>442afab1-efe6-439a-a5fe-b05698270c77</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:3a0-23fd</externalNote>
<internalNote>internalNote:28b-0bc1</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:6f1-8ca5</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>253</id>
</jobExpenseId>
<uuid>8423c707-7ce6-48c9-b6d9-021a432a7c31</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="2" version="2" dateCreated="2016-10-05T12:19:16.040+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>31</id>
</jobExpenseEntryId>
<jobExpenseEntry id="31" version="1" dateCreated="2016-10-05T12:19:16.021+02:00" dateModified="2016-10-05T12:27:50.049+02:00">
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Subsistence</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20</quantity>
<costPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>20</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="149" version="0" dateCreated="2016-10-05T12:18:49.923+02:00" dateModified="2016-10-05T12:19:16.024+02:00">
<uuid>f66e11ff-412d-40b0-b194-6fda426de604</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:-4c3a-88</externalNote>
<internalNote>internalNote:-4807-bc</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:-465f-9f</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>149</id>
</jobExpenseId>
<uuid>22dfd802-5ee0-4185-ab87-7c096577e506</uuid>
<lineItemOrder>3</lineItemOrder>
<description>Subsistence</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>20.00</quantity>
<incurredPerItem>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>10.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<expenseSheetLineItem id="3" version="2" dateCreated="2016-10-05T12:19:16.041+02:00" dateModified="2016-10-05T12:27:50.035+02:00">
<expenseSheetId>
<id>1</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>32</id>
</jobExpenseEntryId>
<jobExpenseEntry id="32" version="1" dateCreated="2016-10-05T12:19:16.031+02:00" dateModified="2016-10-05T12:27:50.058+02:00">
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId reference="../../../expenseSheetLineItem/jobExpenseEntry/trafficEmployeeId"/>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem reference="../.."/>
<jobId>
<id>25</id>
</jobId>
</jobExpenseEntry>
<jobExpense id="207" version="0" dateCreated="2016-10-05T12:18:52.978+02:00" dateModified="2016-10-05T12:19:16.034+02:00">
<uuid>f9770e11-2fe8-41a2-9235-97a0b0f3d07b</uuid>
<description>Simon Stewart - Expense</description>
<externalNote>externalNote:16e-6afc</externalNote>
<internalNote>internalNote:18b-986a</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>0</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>0</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:412-828c</externalData>
<jobId reference="../../jobExpenseEntry/jobId"/>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>207</id>
</jobExpenseId>
<uuid>a013add0-b8bb-4d9e-9ab9-82a430da91e7</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>SUBMITTED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:15.988+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
</expenseSheetLineItems>
<expenseSheetNumber>EXP1</expenseSheetNumber>
<name>UPDATED ExpenseSheet Name 0.16669583741501315</name>
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:19:16.055+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
</expenseSheet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:49 GMT
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:19:16.038+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"lastUpdatedUserId":21,
"createdById":{
"id":16
},
"approverId":{
"id":5
},
"submitterId":{
"id":1
},
"expenseSheetUserCategoryListItemId":null,
"expenseSheetLineItems":[
{
"id":1,
"version":2,
"dateCreated":"2016-10-05T10:19:16.039+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":30
},
"jobExpenseId":{
"id":253
},
"uuid":"8423c707-7ce6-48c9-b6d9-021a432a7c31",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2,
"incurredPerItem":{
"amountString":50,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":2,
"version":2,
"dateCreated":"2016-10-05T10:19:16.040+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":31
},
"jobExpenseId":{
"id":149
},
"uuid":"22dfd802-5ee0-4185-ab87-7c096577e506",
"lineItemOrder":3,
"description":"Subsistence",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":20,
"incurredPerItem":{
"amountString":10,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":200,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":10,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":200,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
{
"id":3,
"version":2,
"dateCreated":"2016-10-05T10:19:16.041+0000",
"dateModified":"2016-10-05T10:27:50.035+0000",
"expenseSheetId":{
"id":1
},
"jobExpenseEntryId":{
"id":32
},
"jobExpenseId":{
"id":207
},
"uuid":"a013add0-b8bb-4d9e-9ab9-82a430da91e7",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"SUBMITTED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:15.988+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10,
"incurredPerItem":{
"amountString":120,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
}
],
"expenseSheetNumber":"EXP1",
"name":"UPDATED ExpenseSheet Name 0.028160692497505857",
"description":null,
"expenseSheetStatus":"SUBMITTED",
"submittedDate":"2016-10-05T10:19:16.055+0000",
"deniedDate":null,
"approvedDate":null,
"paidDate":null,
"approvedByEmployeeId":null,
"submitterComments":null,
"approverComments":null,
"externalCode":null,
"process":false,
"exported":false,
"processErrorMessage":null
}
Adds submitted expensesheet and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expensesheet
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<expenseSheet id="-1" version="-1" dateCreated="2016-10-05T12:19:16.038+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<createdById>
<id>16</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems />
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:19:16.055+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
<name>CREATED ExpenseSheet 0.4816192328383385</name>
</expenseSheet>
PUT /TrafficLiteServer/openapi/expenses/expensesheet HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"exported":false,
"approverComments":null,
"process":false,
"externalCode":null,
"approverId":{
"id":5
},
"expenseSheetLineItems":[
],
"description":null,
"submittedDate":"2016-10-05T10:19:16.055+0000",
"processErrorMessage":null,
"version":"-1",
"approvedDate":null,
"lastUpdatedUserId":21,
"dateCreated":"2016-10-05T10:19:16.038+0000",
"deniedDate":null,
"paidDate":null,
"expenseSheetUserCategoryListItemId":null,
"submitterComments":null,
"submitterId":{
"id":1
},
"approvedByEmployeeId":null,
"name":"CREATED ExpenseSheet 0.057761529186204585",
"id":"-1",
"createdById":{
"id":16
},
"expenseSheetStatus":"SUBMITTED"
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:51 GMT
<expenseSheet id="4" version="0" dateCreated="2016-10-05T12:27:52.287+02:00">
<lastUpdatedUserId>21</lastUpdatedUserId>
<createdById>
<id>6</id>
</createdById>
<approverId>
<id>5</id>
</approverId>
<submitterId>
<id>1</id>
</submitterId>
<expenseSheetLineItems/>
<expenseSheetNumber>EXP4</expenseSheetNumber>
<name>CREATED ExpenseSheet 0.4816192328383385</name>
<expenseSheetStatus>SUBMITTED</expenseSheetStatus>
<submittedDate>2016-10-05T12:27:52.276+02:00</submittedDate>
<process>false</process>
<exported>false</exported>
</expenseSheet>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:51 GMT
{
"id":3,
"version":0,
"dateCreated":"2016-10-05T10:27:52.024+0000",
"dateModified":null,
"lastUpdatedUserId":21,
"createdById":{
"id":6
},
"approverId":{
"id":5
},
"submitterId":{
"id":1
},
"expenseSheetUserCategoryListItemId":null,
"expenseSheetLineItems":[
],
"expenseSheetNumber":"EXP3",
"name":"CREATED ExpenseSheet 0.057761529186204585",
"description":null,
"expenseSheetStatus":"SUBMITTED",
"submittedDate":"2016-10-05T10:27:52.011+0000",
"deniedDate":null,
"approvedDate":null,
"paidDate":null,
"approvedByEmployeeId":null,
"submitterComments":null,
"approverComments":null,
"externalCode":null,
"process":false,
"exported":false,
"processErrorMessage":null
}
Deletes expensesheet object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expensesheet/{id}
| name | description | default |
|---|---|---|
| id | ExpenseSheet's id. |
DELETE /TrafficLiteServer/openapi/expenses/expensesheet/4 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:51 GMT
Returns page of lightweight expenseentry objects.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry
| name | description | default |
|---|---|---|
| windowSize | Specifies number of results on the page. | 5 |
| currentPage | Specifies the page of results to retrieve. | 1 |
| filter | Filter for list values. | |
| expenseentry | Result's expenseentry property. | id |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/expenses/expenseentry?windowSize=2 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/expenses/expenseentry?windowSize=2 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:45 GMT
<pagedResult maxResults="35" windowSize="2" currentPage="1">
<jobExpenseEntrySearchWrapper id="35" version="0" dateCreated="2016-10-05T12:19:16.123+02:00">
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="6" version="1" dateCreated="2016-10-05T12:19:16.132+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>35</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="245" version="1" dateCreated="2016-10-05T12:18:55.937+02:00" dateModified="2016-10-05T12:19:16.126+02:00">
<uuid>dd86d5f1-fa91-44c9-829e-3a47e1e7b497</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:0ec-7bfa</externalNote>
<internalNote>internalNote:71d-e83b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:fad-14e7</externalData>
<jobId>
<id>30</id>
</jobId>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<uuid>feda1338-45fe-4f2d-a05b-bbbe9754ea5b</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Logo Design</jobName>
<projectName>Design Work</projectName>
<clientName>Sun Microsystems</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J30</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
<jobExpenseEntrySearchWrapper id="34" version="0" dateCreated="2016-10-05T12:19:16.113+02:00">
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="5" version="1" dateCreated="2016-10-05T12:19:16.131+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>34</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="192" version="0" dateCreated="2016-10-05T12:18:52.959+02:00" dateModified="2016-10-05T12:19:16.116+02:00">
<uuid>f1244a8f-77e4-44d8-8463-38558af88001</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:571-489a</externalNote>
<internalNote>internalNote:782-d519</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:c69-17a3</externalData>
<jobId>
<id>25</id>
</jobId>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<uuid>b8a60898-57e9-4633-be82-13206947387c</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Copywriting</jobName>
<projectName>Design Work</projectName>
<clientName>UPD Name 0.32633</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J25</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
</pagedResult>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:45 GMT
{
"maxResults":35,
"resultList":[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:19:16.123+0000",
"dateModified":null,
"jobExpenseId":{
"id":245
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Taxi-Fare",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":2,
"costPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":100.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:19:16.132+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":35
},
"jobExpenseId":{
"id":245
},
"uuid":"feda1338-45fe-4f2d-a05b-bbbe9754ea5b",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":30
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Logo Design",
"projectName":"Design Work",
"clientName":"Sun Microsystems",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J30",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
},
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:19:16.113+0000",
"dateModified":null,
"jobExpenseId":{
"id":192
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Accomodation-Expenses",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":10,
"costPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":1200.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":5,
"version":1,
"dateCreated":"2016-10-05T10:19:16.131+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":34
},
"jobExpenseId":{
"id":192
},
"uuid":"b8a60898-57e9-4633-be82-13206947387c",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":25
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Copywriting",
"projectName":"Design Work",
"clientName":"UPD Name 0.32633",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J25",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
}
],
"windowSize":2,
"currentPage":1
}
Returns single expenseentry object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry/{id}
| name | description | default |
|---|---|---|
| id | ExpenseEntry's id. |
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
GET /TrafficLiteServer/openapi/expenses/expenseentry/1 HTTP/1.1
Accept: application/xml
Authorization: Basic *** Base64-encoded email:token ***
GET /TrafficLiteServer/openapi/expenses/expenseentry/1 HTTP/1.1
Accept: application/json
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:45 GMT
<jobExpenseEntry id="1" version="0" dateCreated="2016-10-05T12:18:56.475+02:00">
<jobExpenseId>
<id>27</id>
</jobExpenseId>
<jobExpenseEntryType>NO_PURCHASE</jobExpenseEntryType>
<description>Expense Entry by: Simon Stewart</description>
<expenseIncurredDate>2016-10-05T12:18:56.460+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>5.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>10.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<jobId>
<id>5</id>
</jobId>
</jobExpenseEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:45 GMT
{
"id":1,
"version":0,
"dateCreated":"2016-10-05T10:18:56.475+0000",
"dateModified":null,
"jobExpenseId":{
"id":27
},
"jobExpenseEntryType":"NO_PURCHASE",
"description":"Expense Entry by: Simon Stewart",
"details":null,
"expenseIncurredDate":"2016-10-05T10:18:56.460+0000",
"quantity":2,
"costPerItem":{
"amountString":5.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":10.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":1
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":null,
"jobId":{
"id":5
}
}
Updates expenseentry with submitted one and returns updated object.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/expenses/expenseentry HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobExpenseEntry id="1" version="1" dateCreated="2016-10-05T12:18:56.475+02:00" dateModified="2016-10-05T12:27:49.084+02:00">
<jobExpenseId>
<id>27</id>
</jobExpenseId>
<jobExpenseEntryType>NO_PURCHASE</jobExpenseEntryType>
<expenseIncurredDate>2016-10-05T12:18:56.460+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>5.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>10.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<jobId>
<id>5</id>
</jobId>
<description>UPD Description 0.04877056196814156</description>
</jobExpenseEntry>
POST /TrafficLiteServer/openapi/expenses/expenseentry HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"trafficEmployeeId":{
"id":1
},
"quantity":2,
"expenseValue":{
"currencyType":"GBP",
"amountString":10
},
"costPerItem":{
"currencyType":"GBP",
"amountString":5
},
"expenseIncurredDate":"2016-10-05T10:18:56.460+0000",
"paidForByEmployeeId":null,
"description":"UPD Description 0.9755961322421406",
"dateModified":null,
"lockedByApproval":false,
"version":0,
"jobId":{
"id":5
},
"jobExpenseEntryType":"NO_PURCHASE",
"dateCreated":"2016-10-05T10:18:56.475+0000",
"expenseSheetLineItem":null,
"details":null,
"id":1,
"jobExpenseId":{
"id":27
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:49 GMT
<jobExpenseEntry id="1" version="2" dateCreated="2016-10-05T12:18:56.475+02:00" dateModified="2016-10-05T12:27:49.465+02:00">
<jobExpenseId>
<id>27</id>
</jobExpenseId>
<jobExpenseEntryType>NO_PURCHASE</jobExpenseEntryType>
<description>UPD Description 0.04877056196814156</description>
<expenseIncurredDate>2016-10-05T12:18:56.460+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>5.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>10.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<jobId>
<id>5</id>
</jobId>
</jobExpenseEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:49 GMT
{
"id":1,
"version":1,
"dateCreated":"2016-10-05T10:18:56.475+0000",
"dateModified":"2016-10-05T10:27:49.084+0000",
"jobExpenseId":{
"id":27
},
"jobExpenseEntryType":"NO_PURCHASE",
"description":"UPD Description 0.9755961322421406",
"details":null,
"expenseIncurredDate":"2016-10-05T10:18:56.460+0000",
"quantity":2,
"costPerItem":{
"amountString":5,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":10,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":1
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":null,
"jobId":{
"id":5
}
}
Updates page of sent expense entries and returns page of theirs updated versions
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry/batch
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
POST /TrafficLiteServer/openapi/expenses/expenseentry/batch HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<list>
<jobExpenseEntrySearchWrapper id="35" version="1" dateCreated="2016-10-05T12:19:16.123+02:00" dateModified="2016-10-05T12:27:47.280+02:00">
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="6" version="1" dateCreated="2016-10-05T12:19:16.132+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>35</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="245" version="1" dateCreated="2016-10-05T12:18:55.937+02:00" dateModified="2016-10-05T12:19:16.126+02:00">
<uuid>dd86d5f1-fa91-44c9-829e-3a47e1e7b497</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:0ec-7bfa</externalNote>
<internalNote>internalNote:71d-e83b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:fad-14e7</externalData>
<jobId>
<id>30</id>
</jobId>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<uuid>feda1338-45fe-4f2d-a05b-bbbe9754ea5b</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Logo Design</jobName>
<projectName>Design Work</projectName>
<clientName>Sun Microsystems</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J30</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
<jobExpenseEntrySearchWrapper id="34" version="1" dateCreated="2016-10-05T12:19:16.113+02:00" dateModified="2016-10-05T12:27:47.334+02:00">
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="5" version="1" dateCreated="2016-10-05T12:19:16.131+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>34</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="192" version="0" dateCreated="2016-10-05T12:18:52.959+02:00" dateModified="2016-10-05T12:19:16.116+02:00">
<uuid>f1244a8f-77e4-44d8-8463-38558af88001</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:571-489a</externalNote>
<internalNote>internalNote:782-d519</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:c69-17a3</externalData>
<jobId>
<id>25</id>
</jobId>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<uuid>b8a60898-57e9-4633-be82-13206947387c</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Copywriting</jobName>
<projectName>Design Work</projectName>
<clientName>UPD Name 0.32633</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J25</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
</list>
POST /TrafficLiteServer/openapi/expenses/expenseentry/batch HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":35,
"version":0,
"dateCreated":"2016-10-05T10:19:16.123+0000",
"dateModified":null,
"jobExpenseId":{
"id":245
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Taxi-Fare",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":2,
"costPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":100.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:19:16.132+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":35
},
"jobExpenseId":{
"id":245
},
"uuid":"feda1338-45fe-4f2d-a05b-bbbe9754ea5b",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":30
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Logo Design",
"projectName":"Design Work",
"clientName":"Sun Microsystems",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J30",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
},
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":34,
"version":0,
"dateCreated":"2016-10-05T10:19:16.113+0000",
"dateModified":null,
"jobExpenseId":{
"id":192
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Accomodation-Expenses",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":10,
"costPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":1200.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":5,
"version":1,
"dateCreated":"2016-10-05T10:19:16.131+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":34
},
"jobExpenseId":{
"id":192
},
"uuid":"b8a60898-57e9-4633-be82-13206947387c",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":25
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Copywriting",
"projectName":"Design Work",
"clientName":"UPD Name 0.32633",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J25",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
}
]
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:46 GMT
<list>
<jobExpenseEntrySearchWrapper id="35" version="1" dateCreated="2016-10-05T12:19:16.123+02:00" dateModified="2016-10-05T12:27:47.280+02:00">
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Taxi-Fare</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="6" version="1" dateCreated="2016-10-05T12:19:16.132+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>35</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="245" version="1" dateCreated="2016-10-05T12:18:55.937+02:00" dateModified="2016-10-05T12:19:16.126+02:00">
<uuid>dd86d5f1-fa91-44c9-829e-3a47e1e7b497</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:0ec-7bfa</externalNote>
<internalNote>internalNote:71d-e83b</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>1</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>1</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>true</excludeFromInvoice>
<externalData>externalData:fad-14e7</externalData>
<jobId>
<id>30</id>
</jobId>
<totalCostLogged>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>245</id>
</jobExpenseId>
<uuid>feda1338-45fe-4f2d-a05b-bbbe9754ea5b</uuid>
<lineItemOrder>1</lineItemOrder>
<description>Taxi-Fare</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>2.00</quantity>
<incurredPerItem>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>50.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>100.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Logo Design</jobName>
<projectName>Design Work</projectName>
<clientName>Sun Microsystems</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J30</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
<jobExpenseEntrySearchWrapper id="34" version="1" dateCreated="2016-10-05T12:19:16.113+02:00" dateModified="2016-10-05T12:27:47.334+02:00">
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<description>Accomodation-Expenses</description>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10</quantity>
<costPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>5</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<expenseSheetLineItem id="5" version="1" dateCreated="2016-10-05T12:19:16.131+02:00" dateModified="2016-10-05T12:19:16.151+02:00">
<expenseSheetId>
<id>2</id>
</expenseSheetId>
<jobExpenseEntryId>
<id>34</id>
</jobExpenseEntryId>
<jobExpenseEntry class="jobExpenseEntrySearchWrapper" reference="../.."/>
<jobExpense id="192" version="0" dateCreated="2016-10-05T12:18:52.959+02:00" dateModified="2016-10-05T12:19:16.116+02:00">
<uuid>f1244a8f-77e4-44d8-8463-38558af88001</uuid>
<description>Louis Almeida - Expense</description>
<externalNote>externalNote:571-489a</externalNote>
<internalNote>internalNote:782-d519</internalNote>
<quantity>5.00</quantity>
<multiplier>25.00000000</multiplier>
<cost>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</cost>
<rate>
<amountString>0E-8</amountString>
<currencyType>GBP</currencyType>
</rate>
<total>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</total>
<taxTypeId>
<id>1</id>
</taxTypeId>
<lineItemOrder>2</lineItemOrder>
<chargeBandId>
<id>2</id>
</chargeBandId>
<billLineItemOrder>2</billLineItemOrder>
<billType>ACTUAL</billType>
<billableNet>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</billableNet>
<excludeFromInvoice>false</excludeFromInvoice>
<externalData>externalData:c69-17a3</externalData>
<jobId>
<id>25</id>
</jobId>
<totalCostLogged>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</totalCostLogged>
</jobExpense>
<jobExpenseId>
<id>192</id>
</jobExpenseId>
<uuid>b8a60898-57e9-4633-be82-13206947387c</uuid>
<lineItemOrder>2</lineItemOrder>
<description>Accomodation-Expenses</description>
<jobExpenseEntryType>EMPLOYEE</jobExpenseEntryType>
<expenseSheetStatusType>APPROVED</expenseSheetStatusType>
<expenseIncurredDate>2016-10-05T12:19:16.090+02:00</expenseIncurredDate>
<quantity>10.00</quantity>
<incurredPerItem>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItem>
<incurredTotalNet>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNet>
<incurredTaxTotalAmount>
<amountString>0.00</amountString>
<currencyType>GBP</currencyType>
</incurredTaxTotalAmount>
<incurredPerItemOtherCurrency>
<amountString>120.00000000</amountString>
<currencyType>GBP</currencyType>
</incurredPerItemOtherCurrency>
<incurredTotalNetOtherCurrency>
<amountString>1200.00</amountString>
<currencyType>GBP</currencyType>
</incurredTotalNetOtherCurrency>
</expenseSheetLineItem>
<jobId reference="../expenseSheetLineItem/jobExpense/jobId"/>
<expenseDescription>Louis Almeida - Expense</expenseDescription>
<jobName>Copywriting</jobName>
<projectName>Design Work</projectName>
<clientName>UPD Name 0.32633</clientName>
<jobOwnerFirstName>Simon</jobOwnerFirstName>
<jobOwnerLastName>Stewart</jobOwnerLastName>
<jobTypeListItemId>
<id>1</id>
</jobTypeListItemId>
<jobNumberSearchField>J25</jobNumberSearchField>
<trafficEmployeeFirstName>Louis</trafficEmployeeFirstName>
<trafficEmployeeLastName>Almeida</trafficEmployeeLastName>
<multiplier>25.00000000</multiplier>
<jobStateType>PROGRESS</jobStateType>
<chargeBandId>
<id>2</id>
</chargeBandId>
<expenseSheetName>ExpenseSheet</expenseSheetName>
<expenseSheetNumber>EXP2</expenseSheetNumber>
<expenseSheetLineItemExpenseSheetStatusType>APPROVED</expenseSheetLineItemExpenseSheetStatusType>
</jobExpenseEntrySearchWrapper>
</list>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:46 GMT
[
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":35,
"version":1,
"dateCreated":"2016-10-05T10:19:16.123+0000",
"dateModified":"2016-10-05T10:27:47.280+0000",
"jobExpenseId":{
"id":245
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Taxi-Fare",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":2,
"costPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":100.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":6,
"version":1,
"dateCreated":"2016-10-05T10:19:16.132+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":35
},
"jobExpenseId":{
"id":245
},
"uuid":"feda1338-45fe-4f2d-a05b-bbbe9754ea5b",
"lineItemOrder":1,
"description":"Taxi-Fare",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":2.00,
"incurredPerItem":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":50.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":100.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":30
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Logo Design",
"projectName":"Design Work",
"clientName":"Sun Microsystems",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J30",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
},
{
"@class":"com.sohnar.trafficlite.transfer.expenses.JobExpenseEntrySearchWrapperTO",
"id":34,
"version":1,
"dateCreated":"2016-10-05T10:19:16.113+0000",
"dateModified":"2016-10-05T10:27:47.334+0000",
"jobExpenseId":{
"id":192
},
"jobExpenseEntryType":"EMPLOYEE",
"description":"Accomodation-Expenses",
"details":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"quantity":10,
"costPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":1200.00,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":5
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":{
"id":5,
"version":1,
"dateCreated":"2016-10-05T10:19:16.131+0000",
"dateModified":"2016-10-05T10:19:16.151+0000",
"expenseSheetId":{
"id":2
},
"jobExpenseEntryId":{
"id":34
},
"jobExpenseId":{
"id":192
},
"uuid":"b8a60898-57e9-4633-be82-13206947387c",
"lineItemOrder":2,
"description":"Accomodation-Expenses",
"jobExpenseEntryType":"EMPLOYEE",
"notes":null,
"expenseSheetStatusType":"APPROVED",
"submitterComments":null,
"approverComments":null,
"expenseIncurredDate":"2016-10-05T10:19:16.090+0000",
"numberOfStaff":null,
"numberOfClients":null,
"numberOfOther":null,
"incurredCountry":null,
"quantity":10.00,
"incurredPerItem":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNet":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmount":{
"amountString":0.00,
"currencyType":"GBP"
},
"incurredPerItemOtherCurrency":{
"amountString":120.00000000,
"currencyType":"GBP"
},
"incurredTotalNetOtherCurrency":{
"amountString":1200.00,
"currencyType":"GBP"
},
"incurredTaxTotalAmountOtherCurrency":null,
"taxTypeId":null
},
"jobId":{
"id":25
},
"expenseDescription":"Louis Almeida - Expense",
"jobName":"Copywriting",
"projectName":"Design Work",
"clientName":"UPD Name 0.32633",
"jobOwnerFirstName":"Simon",
"jobOwnerLastName":"Stewart",
"jobTypeListItemId":{
"id":1
},
"jobNumberSearchField":"J25",
"trafficEmployeeFirstName":"Louis",
"trafficEmployeeLastName":"Almeida",
"multiplier":25.00000000,
"jobStateType":"PROGRESS",
"chargeBandId":{
"id":2
},
"expenseSheetName":"ExpenseSheet",
"expenseSheetNumber":"EXP2",
"expenseSheetLineItemExpenseSheetStatusType":"APPROVED"
}
]
Adds submitted expenseentry and returns created object.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry
| name | description | default |
|---|---|---|
| Accept | Specifies requested data format. | application/xml |
| Content-type | Specifies submitted data format. | application/xml |
PUT /TrafficLiteServer/openapi/expenses/expenseentry HTTP/1.1
Accept: application/xml
Content-type: application/xml
Authorization: Basic *** Base64-encoded email:token ***
<jobExpenseEntry id="-1" version="-1" dateCreated="2016-10-05T12:18:56.475+02:00">
<jobExpenseId>
<id>27</id>
</jobExpenseId>
<jobExpenseEntryType>NO_PURCHASE</jobExpenseEntryType>
<expenseIncurredDate>2016-10-05T12:18:56.460+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>5.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>10.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<jobId>
<id>5</id>
</jobId>
<description>NEW Description 0.6766788193635956</description>
</jobExpenseEntry>
PUT /TrafficLiteServer/openapi/expenses/expenseentry HTTP/1.1
Accept: application/json
Content-type: application/json
Authorization: Basic *** Base64-encoded email:token ***
{
"trafficEmployeeId":{
"id":1
},
"quantity":2,
"expenseValue":{
"currencyType":"GBP",
"amountString":10
},
"costPerItem":{
"currencyType":"GBP",
"amountString":5
},
"expenseIncurredDate":"2016-10-05T10:18:56.460+0000",
"paidForByEmployeeId":null,
"description":"NEW Description 0.711020590467625",
"lockedByApproval":false,
"version":"-1",
"jobId":{
"id":5
},
"jobExpenseEntryType":"NO_PURCHASE",
"dateCreated":"2016-10-05T10:18:56.475+0000",
"expenseSheetLineItem":null,
"details":null,
"id":"-1",
"jobExpenseId":{
"id":27
}
}
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:47 GMT
<jobExpenseEntry id="37" version="0" dateCreated="2016-10-05T12:27:48.569+02:00">
<jobExpenseId>
<id>27</id>
</jobExpenseId>
<jobExpenseEntryType>NO_PURCHASE</jobExpenseEntryType>
<description>NEW Description 0.6766788193635956</description>
<expenseIncurredDate>2016-10-05T12:18:56.460+02:00</expenseIncurredDate>
<quantity>2</quantity>
<costPerItem>
<amountString>5.00000000</amountString>
<currencyType>GBP</currencyType>
</costPerItem>
<expenseValue>
<amountString>10.00</amountString>
<currencyType>GBP</currencyType>
</expenseValue>
<trafficEmployeeId>
<id>1</id>
</trafficEmployeeId>
<lockedByApproval>false</lockedByApproval>
<jobId>
<id>5</id>
</jobId>
</jobExpenseEntry>
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: application/json
Transfer-Encoding: chunked
Date: Wed, 05 Oct 2016 10:27:47 GMT
{
"id":36,
"version":0,
"dateCreated":"2016-10-05T10:27:48.137+0000",
"dateModified":null,
"jobExpenseId":{
"id":27
},
"jobExpenseEntryType":"NO_PURCHASE",
"description":"NEW Description 0.711020590467625",
"details":null,
"expenseIncurredDate":"2016-10-05T10:18:56.460+0000",
"quantity":2,
"costPerItem":{
"amountString":5,
"currencyType":"GBP"
},
"expenseValue":{
"amountString":10,
"currencyType":"GBP"
},
"trafficEmployeeId":{
"id":1
},
"lockedByApproval":false,
"paidForByEmployeeId":null,
"expenseSheetLineItem":null,
"jobId":{
"id":5
}
}
Deletes expenseentry object by id.
https://api.sohnar.com/TrafficLiteServer/openapi/expenses/expenseentry/{id}
| name | description | default |
|---|---|---|
| id | ExpenseEntry's id. |
DELETE /TrafficLiteServer/openapi/expenses/expenseentry/37 HTTP/1.1
Authorization: Basic *** Base64-encoded email:token ***
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Length: 0
Date: Wed, 05 Oct 2016 10:27:47 GMT