{"info":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","description":"<html><head></head><body><div>\n<img src=\"https://i.ibb.co/bzHNb6T/mfr-api.jpg\" alt=\"mfr-api\">\n</div>\n<br>\n\n<h1 id=\"mfr-api\">MFR API</h1>\n<hr>\n<p>MFR is a platform created for scheduling and managing the distribution of engineers and workers assigned by the user customer for attending any incoming task that the user could receive.</p>\n<p>The main purpose of the API is to allow customers to use our portal as they data center and work with the API as an interface to their own system if applies. The querying is done by using OData,\nand the data sending process is done by REST.</p>\n<p>The main purpose of the use of OData as the tool for making easy to access to the MFR data is its ease of use. You can get yourself into OData by taking a look to its <a href=\"https://www.odata.org/documentation/odata-version-3-0/\">documentation</a> where there’s a good explanation of what it is and why it is so easy to use because of its internal caring about request and response data while you can focus entirely in the logic of your intended requested/sent data.\nYou can also have your time to understand OData trying the <a href=\"https://www.odata.org/getting-started/basic-tutorial/\">basic tutorial</a> which you can also use with <a href=\"https://www.getpostman.com/\">Postman</a>.</p>\n<h1 id=\"odata-tools\">OData tools</h1>\n<hr>\n<p>It is important to know the OData query options in order to use completely the API. In the following list, there will be an\noverview of the query options that OData presents at the moment. For further information, refer to the <a href=\"https://www.odata.org/documentation/odata-version-3-0/url-conventions/#url5\">query data options description</a>\non the official OData documentation. Currently the OData version used for this documentation is version 3.</p>\n<ul>\n<li><p><strong>Filter</strong>: Allows to filter by a condition or a set of conditions given. For more information about the\nlogical or aritmethical conditions that can be given, please refer to the <a href=\"https://www.odata.org/documentation/odata-version-3-0/url-conventions/\">OData URL conventions</a>.\nThe usage is: <code>https://portal.mobilefieldreport.com/odata/EntityToFilter?$filter=FilterOperationToDo</code></p>\n</li>\n<li><p><strong>OrderBy</strong>: Allows to sort the response by a given property. Usage is <code>https://portal.mobilefieldreport.com/odata/EntityToSort?$orderby=Property</code></p>\n</li>\n<li><p><strong>Skip/Top</strong>: Allows to skip/show the given quantity of results. Usage is <code>https://portal.mobilefieldreport.com/odata/EntityToLimit?$top=Number</code> for top,\n<code>https://portal.mobilefieldreport.com/odata/EntityToLimit?$skip=Number</code> for skipping.</p>\n</li>\n<li><p><strong>Count</strong>: Retrieves the number of results in the response. Usage: <code>https://portal.mobilefieldreport.com/odata/EntityToCountResponse/$count</code></p>\n</li>\n<li><p><strong>Expand</strong>: A Navigation Entity allows to model foreign keys within the data model. Normally a response won't show the navigation entities related to the requested entities, so\nthe expand option allows to include in the request all the contents related to the given Navigation Entity(ies). Usage is: <code>https://portal.mobilefieldreport.com/odata/EntityToLimit?$expand=EntityOrEntitiesCommaSeparated</code>.</p>\n</li>\n<li><p><strong>Select</strong>: Allows to project the query over the selected property or set of properties. Usage is: <code>https://portal.mobilefieldreport.com/odata/EntityToProjectOver?$select=Property1,Property2</code></p>\n</li>\n<li><p><strong>Search</strong>: A search will use a given string to retrieve those elements that includes the given pattern. Works much like a Regular Expression search. Usage is:\n<code>https://portal.mobilefieldreport.com/odata/EntityToSearch?$search=Pattern</code></p>\n</li>\n</ul>\n<h1 id=\"model\">Model</h1>\n<hr>\n<p>The <em>entities</em> that compose our system are based in a <a href=\"https://en.wikipedia.org/wiki/Domain_model\">Domain Model</a> Design, this means that the model is structured completely based on a Domain approach. Here you can find all the possible entities and how to properly name them:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity</th>\n<th>Navigation Entities</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Appointments</strong></td>\n<td>Contacts</td>\n</tr>\n<tr>\n<td><strong>Companies</strong></td>\n<td>Contacts, ServiceObjects</td>\n</tr>\n<tr>\n<td><strong>Contacts</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>CostCenters</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>Documents</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>ItemUnits</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>ItemTypes</strong></td>\n<td>ItemUnit</td>\n</tr>\n<tr>\n<td><strong>Products</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>Reports</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>ServiceObjects</strong></td>\n<td>Contacts, Company (instance of <strong>Companies</strong>), Items, Documents, Tags, Reports</td>\n</tr>\n<tr>\n<td><strong>ServiceRequests</strong></td>\n<td>Appointments, Contacts, Documents, CostCenter (instance of <strong>CostCenters</strong>), Items, Reports, ServiceObjects, Steps, StepListTemplates, StockMovements, Tags, TimeEvents.</td>\n</tr>\n<tr>\n<td><strong>StepListTemplates</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>Tags</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>TimeEvents</strong></td>\n<td>-</td>\n</tr>\n<tr>\n<td><strong>Users</strong></td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><p>Every Entity that has Navigation Entities related can be expanded with the previously described <code>$expand</code> operator over that related Entity, and can even also be expanded including related Navigation Entities, for example:\n<code>https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=Appointments/Contacts</code> and this will retrieve all the Service Requests with their respective related Appointments expanded, and also the Contacts related to that Appointments expanded.</p>\n<p>By requesting <code>https://portal.mobilefieldreport.com/odata/</code>, a list of all the registered entities will be shown.  </p>\n<p>For more information about Domain Model, refer to <a href=\"http://stg-tud.github.io/eise/WS11-EiSE-07-Domain_Modeling.pdf\">this presentation</a> of Technische Universität Darmstad, and for going deeper in the subject, check <a href=\"https://www.amazon.de/Domain-Driven-Design-Tackling-Complexity-Software/dp/B001JDYE0O/ref=sr_1_4?s=books&amp;ie=UTF8&amp;qid=1551955919&amp;sr=1-4&amp;keywords=domain+driven+design\">Eric Evans's <em>Domain Driven Design</em></a> book.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<hr>\n<p>The basic auth method is used for the requests in this documentation. The following account is provided for open testing in our demo portal:</p>\n<blockquote>\n<p><strong>Username</strong>: <a href=\"mailto:1demo@simplias.com\">1demo@simplias.com</a><br><strong>Password</strong>: password</p>\n</blockquote>\n<p>If using postman, the base 64 encoded password is automatically generated by giving these credentials under the tab \"Authorization\". For normal requests, the following header must be included:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic MWRlbW9Ac2ltcGxpYXMuY29tOnBhc3N3b3Jk // Base64 encoded password from the demo account\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"MFR API","slug":"mfr-api"},{"content":"OData tools","slug":"odata-tools"},{"content":"Model","slug":"model"},{"content":"Authentication","slug":"authentication"}],"owner":"6932380","collectionId":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","publishedId":"2sB3dWsn6U","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-12-22T13:26:05.000Z"},"item":[{"name":"Service Request","item":[{"name":"Get Service Requests","id":"25330275-ea3c-47bf-906d-a227f5657415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=Qualifications\n","description":"<p>Get a list of all service requests, with Service Objects and Products, Steps, Reports, Appointments and Items expanded.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Qualifications\n"}],"variable":[]}},"response":[{"id":"86af01dc-2580-4705-9e03-477e4033629c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps\n","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","ServiceRequests"],"query":[{"key":"$expand","value":"ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 11:58:05 GMT"},{"key":"Content-Length","value":"106683"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests\",\n    \"value\": [\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"410615810\",\n                    \"Name\": \"Frank Neureiter OL Links\",\n                    \"Note\": \"Sdfasdfasdf\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-02-03T11:00:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 60,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"503250944\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"503480320\",\n                    \"Name\": \"Raumm\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-09T11:15:14\",\n                    \"ExternalId\": \"llllll\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 23,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"503250944\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"1043103747\",\n                    \"Name\": \"Kühlschrank 4\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T12:50:24\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394644\",\n                    \"Name\": \"B-test\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-21T08:19:29\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394645\",\n                    \"Name\": \"test 2\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-08-11T13:12:15\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394646\",\n                    \"Name\": \"Kühlschrank 1\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-09T10:10:21\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2783346698\",\n                    \"Name\": \"Klimaanlage 2\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-31T12:09:59\",\n                    \"ExternalId\": \"ffff\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2783346699\",\n                    \"Name\": \"Klimaanlage 3\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-04-25T11:20:46\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1641545783\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3956080653\",\n                    \"Name\": \"A-Produkt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T14:29:12\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109890\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3957063696\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-07-31T10:17:20\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1855062018\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3957063697\",\n                    \"Name\": \"FE55\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-31T09:13:11\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"2081030144\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3970596892\",\n                    \"Name\": \"Neues Produkt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T11:50:58\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 10,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1899036672\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"4302831635\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-27T14:42:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"4317839385\",\n                    \"Name\": \"test32\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T11:50:46\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1899036674\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5056430103\",\n                    \"Name\": \"TestProdukt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-30T09:59:40\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"4540432384\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5056430104\",\n                    \"Name\": \"Rolltreppe\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-12-27T11:06:31\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1630011393\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5079957569\",\n                    \"Name\": \"A-Produkt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T13:26:38\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109890\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"8628207621\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-04-23T11:08:10\",\n                    \"ExternalId\": \"SO-53\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1855062018\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"410550274\",\n                    \"AddressString\": \"Weidehorst 28\",\n                    \"Postal\": \"32609\",\n                    \"City\": \"Hüllhorst\",\n                    \"State\": null,\n                    \"Country\": null,\n                    \"Longitude\": 8.696145,\n                    \"Latitude\": 52.24972,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"3904798889\",\n                    \"Version\": 17,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"1266778112\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"3904474226\",\n                    \"Price\": \"2311.45\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"#760# KOMPRESSOR\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"5001391\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 0,\n                    \"Type\": \"Text\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552004\",\n                    \"UnitString\": \"cm\"\n                },\n                {\n                    \"Id\": \"8915451924\",\n                    \"Version\": 6,\n                    \"QuantityHours\": \"2.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"411074560\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"Kalibau GmbH\",\n                    \"Price\": \"39.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Rohrleitung in [m]\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>xcasasfasfaasd</p>\",\n                    \"ExternalId\": \"91723541\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                },\n                {\n                    \"Id\": \"9074540599\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": true,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"9074573373\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": true,\n                    \"SortOrder\": 3,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"410583043\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Frank2\",\n                            \"LastName\": \"Graf2\",\n                            \"Email\": \"info@simplias.com\",\n                            \"JobTitle\": \"Geschäftsführer\",\n                            \"MobilePhone\": \"03823123422\",\n                            \"Telephone\": \"0176873234234\",\n                            \"Fax\": \"2432341234\",\n                            \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                            \"DateModified\": \"2019-09-09T08:36:19\",\n                            \"Version\": 1251,\n                            \"CompanyId\": \"8017281039\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"frank2graf2ext\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3899883527\",\n                    \"Version\": 11,\n                    \"State\": \"Rejected\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-21T12:18:00Z\",\n                    \"StartDateTime\": \"2017-05-21T10:18:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"410583043\"\n                    ],\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ContactId\": \"410583043\",\n                    \"Note\": \"\"\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3901554749\",\n                    \"MobileId\": \"3901554749\",\n                    \"Version\": 24,\n                    \"Name\": \"Produktdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"40\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"result\\\": \\\"q\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:22\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554750\",\n                    \"MobileId\": \"3901554750\",\n                    \"Version\": 8,\n                    \"Name\": \"Notwendiges Wartungsmaterial\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"37\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:22\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Für Innengerät:<ol><li>Serviccefernbedienung BRC1E52</li><li>Endoskopkamera</li><li>Wasserspriztflasche</li><li>Innengerätreiniger (Chlor und Azeton frei)</li></ol>Für Außengerät und System:<ol><li>VRV Checker + Laptop</li><li>R410A Lecksuchgerät</li></ol>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554751\",\n                    \"MobileId\": \"3901554751\",\n                    \"Version\": 8,\n                    \"Name\": \"Wartungsanleitung gelesen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"38\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ich habe die Wartungsanleitung verstanden\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Sie finden die Wartungsanleitung und alle wichtigen Dokumente im Anhang.<br><br>Bestätigen Sie, dass Sie die Wartungsanleitung zu diesem Auftrag gelesen und verstanden haben.<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554752\",\n                    \"MobileId\": \"3901554752\",\n                    \"Version\": 8,\n                    \"Name\": \"Prüfung MSR Störweiterschaltung\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"39\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Stellen Sie sicher, dass die MSR Störweiterschaltung deaktiviert wurde.<div>Stellen Sie sicher, dass Sie den Wartungsschalter an der Anlage gedrückt haben</div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554753\",\n                    \"MobileId\": \"3901554753\",\n                    \"Version\": 2,\n                    \"Name\": \"REMQ22P Außeneinheit 3 Leiter Technik\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554754\",\n                    \"MobileId\": \"3901554754\",\n                    \"Version\": 5,\n                    \"Name\": \"Allgemeiner Zustand (Foto)\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"1-Gut \\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"2-Zufriedenstellend\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"3-Schlecht (Bild machen)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-06-06T10:40:43\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554755\",\n                    \"MobileId\": \"3901554755\",\n                    \"Version\": 7,\n                    \"Name\": \"Foto des Zustandes\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"2017-06-06T13:40:40\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554756\",\n                    \"MobileId\": \"3901554756\",\n                    \"Version\": 3,\n                    \"Name\": \"Anlagenstatus vor Service\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage in Betrieb\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage spannungsfrei\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Anlage mit Fehler (Fehlerstatus dokumentieren)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554757\",\n                    \"MobileId\": \"3901554757\",\n                    \"Version\": 2,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554758\",\n                    \"MobileId\": \"3901554758\",\n                    \"Version\": 4,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"29\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Adresse\\\",\\r\\n      \\\"result\\\": \\\"xf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fehlermeldung\\\",\\r\\n      \\\"result\\\": \\\"ff\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554757\"\n                },\n                {\n                    \"Id\": \"3901554759\",\n                    \"MobileId\": \"3901554759\",\n                    \"Version\": 4,\n                    \"Name\": \"Innen und Außenreinigung des Geräts\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel festgestellt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Feucht abwischen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554760\",\n                    \"MobileId\": \"3901554760\",\n                    \"Version\": 3,\n                    \"Name\": \"Reinigung Verflüssiger\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Nicht erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554761\",\n                    \"MobileId\": \"3901554761\",\n                    \"Version\": 3,\n                    \"Name\": \"Prüfung Verflüssiger Ventilator\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel und Gesäubert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Lüfter auf Unwucht und Funktion prüfen</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Ventilatorschaufeln säubern</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Laufrichtung der Ventilatoren prüfen</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554762\",\n                    \"MobileId\": \"3901554762\",\n                    \"Version\": 3,\n                    \"Name\": \"Kontrolle auf Ölspuren\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Alles ist dicht\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ölspuren vorhanden (mit Kältemaschinenöl nachgeölt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Ölwechsel durchgeführt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Öltest angeordnet\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Sichtkontrolle auf Dichtigkeit und Ölspuren an den Börtelmutter prüfen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554763\",\n                    \"MobileId\": \"3901554763\",\n                    \"Version\": 3,\n                    \"Name\": \"Begleitheizung auf Beschädigung prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Kondensatbegleitheizung auf Beschädigung prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554764\",\n                    \"MobileId\": \"3901554764\",\n                    \"Version\": 3,\n                    \"Name\": \"Kondensatablauf Außengerät prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Frostfreier Kondensatablauf prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554765\",\n                    \"MobileId\": \"3901554765\",\n                    \"Version\": 3,\n                    \"Name\": \"Reparaturschalter am Außengerät vorhanden\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"31\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Wartung ist nicht möglich)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Alternative Wartung mit Mangel weiterführen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554766\",\n                    \"MobileId\": \"3901554766\",\n                    \"Version\": 3,\n                    \"Name\": \"Prüfung elektrische Spannungsversorgung\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"30\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Prüfung der elektrischen Spannung</li><li>Prüfung des Schutzskontakts am Außengerät</li><li>Prüfung der elektrischen Anlagen. + Spannungsversorgung</li><li>Prüfung der Anschlussklemmen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554767\",\n                    \"MobileId\": \"3901554767\",\n                    \"Version\": 2,\n                    \"Name\": \"Messdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"32\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 19,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554768\",\n                    \"MobileId\": \"3901554768\",\n                    \"Version\": 4,\n                    \"Name\": \"Verflüssiger\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"34\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verdampfungstemperatur\\\",\\r\\n      \\\"result\\\": \\\"dd\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verflüssigungstemperatur\\\",\\r\\n      \\\"result\\\": \\\"dd\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Messen Sie die Temperaturen am Verflüssiger\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554767\"\n                },\n                {\n                    \"Id\": \"3901554769\",\n                    \"MobileId\": \"3901554769\",\n                    \"Version\": 2,\n                    \"Name\": \"Isolierung prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Isolierung, Rohrleitungen und Tauwasserleitungen keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Kältemittelrohrleitung auf sichtbare Beschädigungen geprüft</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Isolierung auf sichtbare Beschädigung geprüft</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Tauwasserleitung auf sichtbare Beschädigung geprüft</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554770\",\n                    \"MobileId\": \"3901554770\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung Gerät\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"36\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"TEK-MATE\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Weiteres Gerät im Komentar hinzufügen\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Wählen Sie ein Gerät für die Dichtheitsprüfung\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554771\",\n                    \"MobileId\": \"3901554771\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung (Kältekreis)\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"35\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Dichtheitsprüfung bestanden (Keine Mängel)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kältemittel nachgefüllt, keine Undichtigkeit festgestellt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt und Leck beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel nicht beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"3\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Führen Sie eine Dichtheitsprüfung des Kältekreises durch<div><ul><li>Dichtheitsprüfung der Börderlmuttern mit elektrischen Lecksuchgerät (Innengeräte)</li><li>Dichtheitsprüfung des Innenraums mit elektrischem Lecksuchgerät (Außengerät)</li><li>Automatischer Leakcheck durchgeführt</li></ul></div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554772\",\n                    \"MobileId\": \"3901554772\",\n                    \"Version\": 2,\n                    \"Name\": \"VRV Checker anschliessen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 24,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"nicht notwendig\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"angeschlossen und Datei gesichtert\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554773\",\n                    \"MobileId\": \"3901554773\",\n                    \"Version\": 2,\n                    \"Name\": \"Stammdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 25,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Equipment\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"dfgp\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bezeichnung\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"dfg\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Techn. Platz\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"ffb\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554774\",\n                    \"MobileId\": \"3901554774\",\n                    \"Version\": 2,\n                    \"Name\": \"Grünflächenpflege1\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 26,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554775\",\n                    \"MobileId\": \"3901554775\",\n                    \"Version\": 2,\n                    \"Name\": \"Laub harken\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 27,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554776\",\n                    \"MobileId\": \"3901554776\",\n                    \"Version\": 2,\n                    \"Name\": \"Rasen sähen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 28,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554777\",\n                    \"MobileId\": \"3901554777\",\n                    \"Version\": 2,\n                    \"Name\": \"Rasen mähen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 29,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554778\",\n                    \"MobileId\": \"3901554778\",\n                    \"Version\": 1,\n                    \"Name\": \"Grünflächenpflege2\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 30,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554779\",\n                    \"MobileId\": \"3901554779\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 31,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Laub harken\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rasen sähen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sträucher beschneiden\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Größe\\\",\\r\\n      \\\"result\\\": \\\"32\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554778\"\n                },\n                {\n                    \"Id\": \"3901554780\",\n                    \"MobileId\": \"3901554780\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 32,\n                    \"Data\": \"{\\\"name\\\":\\\"h\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-07-03T15:37:29\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554781\",\n                    \"MobileId\": \"3901554781\",\n                    \"Version\": 2,\n                    \"Name\": \"Grünflächenpflege2\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 33,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:28\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554782\",\n                    \"MobileId\": \"3901554782\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 34,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Laub harken\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rasen sähen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sträucher beschneiden\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Größe\\\",\\r\\n      \\\"result\\\": \\\"asdfasdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:28\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554781\"\n                },\n                {\n                    \"Id\": \"3904474226\",\n                    \"MobileId\": \"3904474226\",\n                    \"Version\": 4,\n                    \"Name\": \"Material hinzufügen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Material\",\n                    \"SortOrder\": 35,\n                    \"Data\": \"{\\\"result\\\":\\\"true\\\",\\\"filterId\\\":\\\"410583424\\\"}\",\n                    \"DateModifiedOffline\": \"2017-05-23T04:37:15\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<p>asdf asdfsadf asdf asfdasdf asdfsdfsad</p><p>f</p><p>&nbsp;asdf</p><p>as</p><p>efasdfasdfasdfasdfasdf</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"8917451023\",\n                    \"MobileId\": \"8917451023\",\n                    \"Version\": 2,\n                    \"Name\": \"Material hinzufügen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Material\",\n                    \"SortOrder\": 36,\n                    \"Data\": \"{\\\"result\\\":\\\"true\\\",\\\"filterId\\\":\\\"410583068\\\"}\",\n                    \"DateModifiedOffline\": \"2019-05-17T08:26:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<p>asdf asdfsadf asdf asfdasdf asdfsdfsad</p><p>f</p><p>&nbsp;asdf</p><p>as</p><p>efasdfasdfasdfasdfasdf</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410620\",\n                    \"MobileId\": \"9103410620\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 37,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist in Ordnung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Beschädigungen am Gerät nach Transport (Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410621\",\n                    \"MobileId\": \"9103410621\",\n                    \"Version\": 1,\n                    \"Name\": \"Sind die Anschlüsse richtig belegt?\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 38,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja alle Anschlüsse sind richtig belegt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nein (Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410622\",\n                    \"MobileId\": \"9103410622\",\n                    \"Version\": 1,\n                    \"Name\": \"Anschlüsse Verteiler Überprüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 39,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Verdrehtes Kabel (Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410623\",\n                    \"MobileId\": \"9103410623\",\n                    \"Version\": 1,\n                    \"Name\": \"Überprüfung der Schallschutzverkleidung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 40,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist Ordnungsgemäß installiert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410624\",\n                    \"MobileId\": \"9103410624\",\n                    \"Version\": 1,\n                    \"Name\": \"Konfiguration der Softwareeinstellungen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 41,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Systemdownload erfolgreich\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Systemdownload meldet Fehler (Abbruch)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410625\",\n                    \"MobileId\": \"9103410625\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 42,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410626\",\n                    \"MobileId\": \"9103410626\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen vor Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 43,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl der Tabletten\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9103410625\"\n                },\n                {\n                    \"Id\": \"9103410627\",\n                    \"MobileId\": \"9103410627\",\n                    \"Version\": 1,\n                    \"Name\": \"Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 44,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459308\",\n                    \"MobileId\": \"9160459308\",\n                    \"Version\": 1,\n                    \"Name\": \"durchgeführte Arbeiten Außengerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 45,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Reinigung Verflüssiger\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Innenreinigung Außengerät\\\",\\r\\n      \\\"type\\\": \\\"date\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kondensatablauf geprüft bei WP\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizfunktion in Ordnung?\\\",\\r\\n      \\\"type\\\": \\\"time\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hochdruckreiniger Verflüssiger\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Außentemperatur\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Barcode\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"HD und ND in Ordnung\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459309\",\n                    \"MobileId\": \"9160459309\",\n                    \"Version\": 1,\n                    \"Name\": \"durchgeführte Arbeiten Innengerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 46,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Filter gereinigt / gewechselt?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verdampferpaket geprüft / gereinigt / desinfiziert?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gehäuse gereinigt?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kondensatpumpe bzw. Kondensatabführung getestet\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ansaugtemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ausblastemperatur bei höchster Lüfterstufe\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459310\",\n                    \"MobileId\": \"9160459310\",\n                    \"Version\": 1,\n                    \"Name\": \"Gesamtanlage\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 47,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Elektrische Anschlussklemme nachgezogen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Testbetrieb eingeleitet, Regelungsfunktionen geprüft\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459311\",\n                    \"MobileId\": \"9160459311\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung Lichtkuppel\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 48,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459312\",\n                    \"MobileId\": \"9160459312\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung Aufsatzkranz\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 49,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK mit Beeinträchtigung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459313\",\n                    \"MobileId\": \"9160459313\",\n                    \"Version\": 1,\n                    \"Name\": \"Funktionsprüfung autom. Öffnung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 50,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler Nacharbeit nötig\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler irreperabel\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459314\",\n                    \"MobileId\": \"9160459314\",\n                    \"Version\": 1,\n                    \"Name\": \"Dokumentation der Wartungsergebnisse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 51,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459315\",\n                    \"MobileId\": \"9160459315\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter JET\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 52,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459316\",\n                    \"MobileId\": \"9160459316\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 53,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016306\",\n                    \"MobileId\": \"9161016306\",\n                    \"Version\": 1,\n                    \"Name\": \"Innengeräte Nummer:\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 54,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016307\",\n                    \"MobileId\": \"9161016307\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 55,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist in Ordnung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016308\",\n                    \"MobileId\": \"9161016308\",\n                    \"Version\": 1,\n                    \"Name\": \"Sind die Anschlüsse richtig belegt?\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 56,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja alle Anschlüsse sind richtig belegt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nein (Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016309\",\n                    \"MobileId\": \"9161016309\",\n                    \"Version\": 1,\n                    \"Name\": \"Anschlüsse Generator Überprüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 57,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016310\",\n                    \"MobileId\": \"9161016310\",\n                    \"Version\": 1,\n                    \"Name\": \"Überprüfung der Schallschutzverkleidung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 58,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist Ordnungsgemäß installiert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016311\",\n                    \"MobileId\": \"9161016311\",\n                    \"Version\": 1,\n                    \"Name\": \"Absperrhähne\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 59,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Alle Absperrhähne geschlossen\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016312\",\n                    \"MobileId\": \"9161016312\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 60,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016313\",\n                    \"MobileId\": \"9161016313\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen vor Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 61,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Min Befüllmenge\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"LED leuchtet grün\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016314\",\n                    \"MobileId\": \"9161016314\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 62,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016315\",\n                    \"MobileId\": \"9161016315\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen nach Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 63,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verbrauchte Menge Gas\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive gemessene Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effizienz Wärmegewinnung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Falscher Strom\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016316\",\n                    \"MobileId\": \"9161016316\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 64,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016858\",\n                    \"MobileId\": \"9161016858\",\n                    \"Version\": 1,\n                    \"Name\": \"Brandschutz\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 65,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:51:54\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016999\",\n                    \"MobileId\": \"9161016999\",\n                    \"Version\": 1,\n                    \"Name\": \"Allgemeine Daten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 66,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bezeichnung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kunden Tor Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zulassungsnummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller Typ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Produkttyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typschlüssel\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Wartungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Baujahr\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fabrik Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Breite [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Höhe [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:42\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017000\",\n                    \"MobileId\": \"9161017000\",\n                    \"Version\": 1,\n                    \"Name\": \"Einbauort\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 67,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gebäude\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Achse\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Einbauhöhe\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Etage\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Besonderheiten\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:53\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017001\",\n                    \"MobileId\": \"9161017001\",\n                    \"Version\": 1,\n                    \"Name\": \"Produktdaten 1\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 68,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Steuerung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ansteuerungsmodul\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Antriebstyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Führungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fluchtweg\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sicherheitseinrichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:56\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017002\",\n                    \"MobileId\": \"9161017002\",\n                    \"Version\": 1,\n                    \"Name\": \"Produktdaten 2\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 69,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Brandmeldung an BMZ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rückhaltevorichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:58\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017003\",\n                    \"MobileId\": \"9161017003\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 70,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:48:00\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161017004\",\n                    \"MobileId\": \"9161017004\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 71,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:48:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3899817987\",\n            \"Name\": \"Projekt X Tätigkeistnachweis \",\n            \"ExternalId\": \"1705-12\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2019-05-12T10:13:03Z\",\n            \"WorkDoneAt\": \"2017-07-11T19:55:59Z\",\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-08-01T14:07:50\",\n            \"DateOfCreation\": \"2017-05-21T10:22:26\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3899817987\",\n            \"CostCenterId\": \"0\",\n            \"Description\": null,\n            \"State\": \"InProgress\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"410517505\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"410550274\",\n                \"AddressString\": \"Weidehorst 28\",\n                \"Postal\": \"32609\",\n                \"City\": \"Hüllhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.696145,\n                \"Latitude\": 52.24972,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 353,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"3630923777\",\n                        \"AddressString\": \"Meierfeld 11\",\n                        \"Postal\": \"33813\",\n                        \"City\": \"Oerlinghausen Helpup\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.7132406234741211,\n                        \"Latitude\": 51.972049713134766,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3630956544\",\n                    \"Name\": \"Friesen\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-02-14T09:33:34\",\n                    \"ExternalId\": \"106236\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"0\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3741974538\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"114085\",\n                \"Name\": \"Niggemeier\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-18T14:43:27\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"5339480161\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"5301534724\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"87.71\",\n                    \"NameOrNumber\": \"Aufdach-Montage senkrecht Kompakt-Linie \\r\\n2 Aufdach K-s/n- AL schwarz 221642\\r\\nin Verbindung mit 2 Solarelementen senkrecht/ nebeneinander SchückoSol K\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>Aufdach-Montage senkrecht Kompakt-Linie <br>2 Aufdach K-s/n- AL schwarz 221642<br>in Verbindung mit 2 Solarelementen senkrecht/ nebeneinander <br></p>\",\n                    \"ExternalId\": \"221642\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"5339480162\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"442400768\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"V123456\",\n                    \"Price\": \"12.22\",\n                    \"Costs\": \"10.09\",\n                    \"NameOrNumber\": \"Bohrmaschine\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"123456\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                },\n                {\n                    \"Id\": \"5339480164\",\n                    \"Version\": 4,\n                    \"QuantityHours\": \"12.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"2688942083\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"78.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Anlagenentwässerung\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>Entwässerung von wasserführenden Rohrsystemen in Gebäuden bei größerem Volumen, soweit pauschal ansetzbar. Pauschale einschließlich &lt; 1,5 Einsatzstunden.</p>\",\n                    \"ExternalId\": \"1.1.30\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 4,\n                    \"Type\": \"Service\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"0\",\n                    \"UnitString\": null\n                },\n                {\n                    \"Id\": \"5338890353\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"442400768\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"V123456\",\n                    \"Price\": \"12.22\",\n                    \"Costs\": \"10.09\",\n                    \"NameOrNumber\": \"Bohrmaschine\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"123456\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 5,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237075\",\n                    \"Version\": 5,\n                    \"State\": \"InProgress\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-23T09:00:00Z\",\n                    \"StartDateTime\": \"2017-05-23T05:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3909910898\",\n                    \"MobileId\": \"3909910898\",\n                    \"Version\": 3,\n                    \"Name\": \"Art des Schadens\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Leitungswasser (Bitte Foto)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Brand (bitte Foto)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Elementar\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:49\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910899\",\n                    \"MobileId\": \"3909910899\",\n                    \"Version\": 3,\n                    \"Name\": \"Durchgeführte Arbeiten\",\n                    \"IsDone\": true,\n                    \"HasError\": true,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Arbeiten durchgeführt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nacharbeit erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:50\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"<p>Beschreiben Sie kurz die durchgeführten Arbeiten:</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910900\",\n                    \"MobileId\": \"3909910900\",\n                    \"Version\": 6,\n                    \"Name\": \"Verbrauchtes Material\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Material verbraucht\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:53\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"<p>Verbrauchtes Material hinzugefügt:</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910901\",\n                    \"MobileId\": \"3909910901\",\n                    \"Version\": 2,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910902\",\n                    \"MobileId\": \"3909910902\",\n                    \"Version\": 1,\n                    \"Name\": \"Thema:\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Besprechung abgeschlossen\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Weitere Nachbearbeitung nötig\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3912663051\",\n            \"Name\": \"Polsterreinigung \",\n            \"ExternalId\": \"1705-16\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2017-05-23T13:20:27Z\",\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-07-25T13:32:02\",\n            \"DateOfCreation\": \"2017-05-23T13:19:07\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663051\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"<p>Bitte die Polsterreinigung für den Kunden durchführen. </p>\",\n            \"State\": \"InProgress\",\n            \"CustomValues\": [\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"1B8974DB-6B6A-1E4B-61B7-C975097A88DB\\\",\\\"Name\\\":\\\" sadf\\\"}\",\n                    \"Value\": null\n                }\n            ],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3741974538\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3630923777\",\n                \"AddressString\": \"Meierfeld 11\",\n                \"Postal\": \"33813\",\n                \"City\": \"Oerlinghausen Helpup\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.7132406234741211,\n                \"Latitude\": 51.972049713134766,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 25,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"1194557446\",\n                        \"AddressString\": \"Neureuter Strasse 37\",\n                        \"Postal\": \"76185\",\n                        \"City\": \"Karlsruhe\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.35742,\n                        \"Latitude\": 49.02634,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"1194590211\",\n                    \"Name\": \"Filiale Neureuter Strasse\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-15T09:31:41\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 13,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237076\",\n                    \"Version\": 3,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-23T13:00:00Z\",\n                    \"StartDateTime\": \"2017-05-23T11:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": false,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663052\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [],\n            \"Id\": \"3912663052\",\n            \"Name\": \"tedt\",\n            \"ExternalId\": \"1705-17\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": null,\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2017-05-23T13:21:07\",\n            \"DateOfCreation\": \"2017-05-23T13:19:35\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663052\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"<p>ycvyxvcxy</p>\",\n            \"State\": \"Scheduled\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"1194524674\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1194557446\",\n                \"AddressString\": \"Neureuter Strasse 37\",\n                \"Postal\": \"76185\",\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.35742,\n                \"Latitude\": 49.02634,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 5,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"2747203635\",\n                        \"AddressString\": \"Dorfstrasse 32\",\n                        \"Postal\": \"32323\",\n                        \"City\": \"Leipzg\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 0,\n                        \"Latitude\": 0,\n                        \"IsValidLocation\": false\n                    },\n                    \"Id\": \"2747170854\",\n                    \"Name\": \"test\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2016-08-12T14:29:51\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 1,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"0\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3741974538\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"114085\",\n                \"Name\": \"Niggemeier\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-18T14:43:27\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237077\",\n                    \"Version\": 2,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-26T10:00:00Z\",\n                    \"StartDateTime\": \"2017-05-26T06:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": false,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663054\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [],\n            \"Id\": \"3912663054\",\n            \"Name\": \"test \",\n            \"ExternalId\": \"1705-18\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": null,\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2017-05-23T13:20:17\",\n            \"DateOfCreation\": \"2017-05-23T13:20:15\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663054\",\n            \"CostCenterId\": \"0\",\n            \"Description\": null,\n            \"State\": \"Scheduled\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3741974538\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2747203635\",\n                \"AddressString\": \"Dorfstrasse 32\",\n                \"Postal\": \"32323\",\n                \"City\": \"Leipzg\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Version\": 5,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"3906928684\",\n                        \"AddressString\": \"Baaderstraße 21\",\n                        \"Postal\": \"80469\",\n                        \"City\": \"München\",\n                        \"State\": null,\n                        \"Country\": \"DE\",\n                        \"Longitude\": 11.57924,\n                        \"Latitude\": 48.13126,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3905126425\",\n                    \"Name\": \"stufenberger\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-07-05T11:28:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 9,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"3907092484\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3907092484\",\n                \"Version\": 6,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Johann Bergmann\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-05-22T11:49:13\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"3914203138\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampensteuerung x1\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"32342\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 0,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"3914203136\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampensteuerungsaustauschset\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"74343\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"3914203137\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampenaustauschset 2\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552000\",\n                    \"UnitString\": \"Stück\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"3688923159\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Peter\",\n                            \"LastName\": \"Lindberg\",\n                            \"Email\": \"pl@simplias-demo.com\",\n                            \"JobTitle\": null,\n                            \"MobilePhone\": null,\n                            \"Telephone\": null,\n                            \"Fax\": null,\n                            \"Note\": null,\n                            \"DateModified\": \"2019-04-02T08:18:52\",\n                            \"Version\": 9,\n                            \"CompanyId\": \"1194524674\",\n                            \"IsUser\": true,\n                            \"ExternalId\": null,\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3964272640\",\n                    \"Version\": 3,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-06-04T08:00:00Z\",\n                    \"StartDateTime\": \"2017-06-04T06:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"3688923159\"\n                    ],\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ContactId\": \"3688923159\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3914170368\",\n                    \"MobileId\": \"3914170368\",\n                    \"Version\": 1,\n                    \"Name\": \"Tauschen Sie die Lampensteuerung aus\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nicht erledigt (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"Die Lampensteuerung befindet sich im hinteren Bereich der Filiale\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170369\",\n                    \"MobileId\": \"3914170369\",\n                    \"Version\": 1,\n                    \"Name\": \"Foto der neuen Lampensteuerung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170370\",\n                    \"MobileId\": \"3914170370\",\n                    \"Version\": 1,\n                    \"Name\": \"Seriennummern\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer (alt)\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer (neu)\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"Tragen Sie jeweils die Seriennummer der alten und neuen Lampensteuerung ein.\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170371\",\n                    \"MobileId\": \"3914170371\",\n                    \"Version\": 1,\n                    \"Name\": \"Messwerte aufnehmen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170373\",\n                    \"MobileId\": \"3914170373\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"result\\\": \\\"123123\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170372\",\n                    \"MobileId\": \"3914170372\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 6,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170374\",\n                    \"MobileId\": \"3914170374\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170375\",\n                    \"MobileId\": \"3914170375\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170376\",\n                    \"MobileId\": \"3914170376\",\n                    \"Version\": 1,\n                    \"Name\": \"Zweiter schritt\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170377\",\n                    \"MobileId\": \"3914170377\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"16\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170379\",\n                    \"MobileId\": \"3914170379\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170380\",\n                    \"MobileId\": \"3914170380\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170381\",\n                    \"MobileId\": \"3914170381\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170382\",\n                    \"MobileId\": \"3914170382\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170378\",\n                    \"MobileId\": \"3914170378\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170391\",\n                    \"MobileId\": \"3914170391\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170387\",\n                    \"MobileId\": \"3914170387\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"17\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170388\",\n                    \"MobileId\": \"3914170388\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"18\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170387\"\n                },\n                {\n                    \"Id\": \"3914170383\",\n                    \"MobileId\": \"3914170383\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"11\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 19,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170384\",\n                    \"MobileId\": \"3914170384\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170389\",\n                    \"MobileId\": \"3914170389\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"19\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170390\",\n                    \"MobileId\": \"3914170390\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdfsadf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170389\"\n                },\n                {\n                    \"Id\": \"3914170385\",\n                    \"MobileId\": \"3914170385\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170386\",\n                    \"MobileId\": \"3914170386\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 24,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170392\",\n                    \"MobileId\": \"3914170392\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"20\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 25,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<p>asdfas dfasfasdf</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170393\",\n                    \"MobileId\": \"3914170393\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"23\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 26,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"asdfasdf\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"fasfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<p>sa dfasdfasdf</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170394\",\n                    \"MobileId\": \"3914170394\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"24\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 27,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170395\",\n                    \"MobileId\": \"3914170395\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 28,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2fasdasdffadfsdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfasdfsad\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3914104832\",\n            \"Name\": \"Gaswartung\",\n            \"ExternalId\": \"1705-19\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2017-06-04T09:42:04Z\",\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-03-14T09:03:14\",\n            \"DateOfCreation\": \"2017-05-23T13:28:00\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3914104832\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"Bitte führen Sie alle notwendigen Schritte für den Austausch der Lampensteuerung durch.\",\n            \"State\": \"Released\",\n            \"CustomValues\": [\n                {\n                    \"Meta\": \"{\\\"Id\\\":1,\\\"Name\\\":\\\"Fehlercode\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"2E64F208-FCE3-D425-4F60-CAA8EE27542C\\\",\\\"Name\\\":\\\"Kunden-Referenz\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"49D43EDF-06B6-FD77-1E40-BDAD3F936705\\\",\\\"Name\\\":\\\"Kundenadresse 1\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"6FFAB29F-70B8-D10B-4C69-798F13C9FCCA\\\",\\\"Name\\\":\\\"Kundenadresse 2\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"199B04CA-4FB9-91DF-7779-E10515938210\\\",\\\"Name\\\":\\\"Versicherungsnummer\\\"}\",\n                    \"Value\": null\n                }\n            ],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3907092484\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3906928684\",\n                \"AddressString\": \"Baaderstraße 21\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.57924,\n                \"Latitude\": 48.13126,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 6,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=ServiceObjects%2CCustomer%2CReports%2CItems%2CAppointments%2FContacts%2CSteps&$skip=5\"\n}"}],"_postman_id":"25330275-ea3c-47bf-906d-a227f5657415"},{"name":"Retrieve a Service Request","id":"3a107aeb-058d-4f13-b464-5e0149088164","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(11164418048L)?$expand=ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps,Comments,StockMovements\n","description":"<p>Get a Service Request. At the end of the id there must be a L.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. The id of the service request to fetch.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(11164418048L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps,Comments,StockMovements\n"}],"variable":[]}},"response":[],"_postman_id":"3a107aeb-058d-4f13-b464-5e0149088164"},{"name":"Get Service Request by External Id","id":"33fa6793-baee-47ed-9533-36b4712146c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$filter=ExternalId eq 'T-5432'&$expand=ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps,Comments,StockMovements\n","description":"<p>Get a Service Request. At the end of the id there must be a L.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. The id of the service request to fetch.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$filter","value":"ExternalId eq 'T-5432'"},{"key":"$expand","value":"ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps,Comments,StockMovements\n"}],"variable":[]}},"response":[],"_postman_id":"33fa6793-baee-47ed-9533-36b4712146c8"},{"name":"Get Service Requests Templates","id":"60780253-c679-4170-ad05-09e3fb0de69b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$filter=IsTemplate eq true\n","description":"<p>Get a list of all service requests templates.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$filter","value":"IsTemplate eq true\n"}],"variable":[]}},"response":[{"id":"1762574e-a3ad-420f-a0f2-430035d388f6","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps\n","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","ServiceRequests"],"query":[{"key":"$expand","value":"ServiceObjects,Customer,Reports,Items,Appointments/Contacts,Steps\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 11:58:05 GMT"},{"key":"Content-Length","value":"106683"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests\",\n    \"value\": [\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"410615810\",\n                    \"Name\": \"Frank Neureiter OL Links\",\n                    \"Note\": \"Sdfasdfasdf\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-02-03T11:00:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 60,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"503250944\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"503480320\",\n                    \"Name\": \"Raumm\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-09T11:15:14\",\n                    \"ExternalId\": \"llllll\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 23,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"503250944\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"1043103747\",\n                    \"Name\": \"Kühlschrank 4\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T12:50:24\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394644\",\n                    \"Name\": \"B-test\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-21T08:19:29\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394645\",\n                    \"Name\": \"test 2\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-08-11T13:12:15\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2330394646\",\n                    \"Name\": \"Kühlschrank 1\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-09T10:10:21\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2783346698\",\n                    \"Name\": \"Klimaanlage 2\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-31T12:09:59\",\n                    \"ExternalId\": \"ffff\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"2783346699\",\n                    \"Name\": \"Klimaanlage 3\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-04-25T11:20:46\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1641545783\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3956080653\",\n                    \"Name\": \"A-Produkt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T14:29:12\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109890\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3957063696\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-07-31T10:17:20\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1855062018\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3957063697\",\n                    \"Name\": \"FE55\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-31T09:13:11\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"2081030144\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3970596892\",\n                    \"Name\": \"Neues Produkt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T11:50:58\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 10,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1899036672\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"4302831635\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-27T14:42:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"4317839385\",\n                    \"Name\": \"test32\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-05-29T11:50:46\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1899036674\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5056430103\",\n                    \"Name\": \"TestProdukt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-30T09:59:40\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"4540432384\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5056430104\",\n                    \"Name\": \"Rolltreppe\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-12-27T11:06:31\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1630011393\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"5079957569\",\n                    \"Name\": \"A-Produkt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T13:26:38\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1203109890\"\n                },\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"410550274\",\n                        \"AddressString\": \"Weidehorst 28\",\n                        \"Postal\": \"32609\",\n                        \"City\": \"Hüllhorst\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.696145,\n                        \"Latitude\": 52.24972,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"8628207621\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-04-23T11:08:10\",\n                    \"ExternalId\": \"SO-53\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"410615810\",\n                    \"CompanyId\": \"410517505\",\n                    \"ProductId\": \"1855062018\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"410550274\",\n                    \"AddressString\": \"Weidehorst 28\",\n                    \"Postal\": \"32609\",\n                    \"City\": \"Hüllhorst\",\n                    \"State\": null,\n                    \"Country\": null,\n                    \"Longitude\": 8.696145,\n                    \"Latitude\": 52.24972,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"3904798889\",\n                    \"Version\": 17,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"1266778112\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"3904474226\",\n                    \"Price\": \"2311.45\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"#760# KOMPRESSOR\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"5001391\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 0,\n                    \"Type\": \"Text\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552004\",\n                    \"UnitString\": \"cm\"\n                },\n                {\n                    \"Id\": \"8915451924\",\n                    \"Version\": 6,\n                    \"QuantityHours\": \"2.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"411074560\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"Kalibau GmbH\",\n                    \"Price\": \"39.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Rohrleitung in [m]\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>xcasasfasfaasd</p>\",\n                    \"ExternalId\": \"91723541\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                },\n                {\n                    \"Id\": \"9074540599\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": true,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"9074573373\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": true,\n                    \"SortOrder\": 3,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"410583043\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Frank2\",\n                            \"LastName\": \"Graf2\",\n                            \"Email\": \"info@simplias.com\",\n                            \"JobTitle\": \"Geschäftsführer\",\n                            \"MobilePhone\": \"03823123422\",\n                            \"Telephone\": \"0176873234234\",\n                            \"Fax\": \"2432341234\",\n                            \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                            \"DateModified\": \"2019-09-09T08:36:19\",\n                            \"Version\": 1251,\n                            \"CompanyId\": \"8017281039\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"frank2graf2ext\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3899883527\",\n                    \"Version\": 11,\n                    \"State\": \"Rejected\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-21T12:18:00Z\",\n                    \"StartDateTime\": \"2017-05-21T10:18:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"410583043\"\n                    ],\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"ContactId\": \"410583043\",\n                    \"Note\": \"\"\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3901554749\",\n                    \"MobileId\": \"3901554749\",\n                    \"Version\": 24,\n                    \"Name\": \"Produktdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"40\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"result\\\": \\\"q\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:22\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554750\",\n                    \"MobileId\": \"3901554750\",\n                    \"Version\": 8,\n                    \"Name\": \"Notwendiges Wartungsmaterial\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"37\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:22\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Für Innengerät:<ol><li>Serviccefernbedienung BRC1E52</li><li>Endoskopkamera</li><li>Wasserspriztflasche</li><li>Innengerätreiniger (Chlor und Azeton frei)</li></ol>Für Außengerät und System:<ol><li>VRV Checker + Laptop</li><li>R410A Lecksuchgerät</li></ol>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554751\",\n                    \"MobileId\": \"3901554751\",\n                    \"Version\": 8,\n                    \"Name\": \"Wartungsanleitung gelesen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"38\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ich habe die Wartungsanleitung verstanden\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Sie finden die Wartungsanleitung und alle wichtigen Dokumente im Anhang.<br><br>Bestätigen Sie, dass Sie die Wartungsanleitung zu diesem Auftrag gelesen und verstanden haben.<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554752\",\n                    \"MobileId\": \"3901554752\",\n                    \"Version\": 8,\n                    \"Name\": \"Prüfung MSR Störweiterschaltung\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"39\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Stellen Sie sicher, dass die MSR Störweiterschaltung deaktiviert wurde.<div>Stellen Sie sicher, dass Sie den Wartungsschalter an der Anlage gedrückt haben</div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554753\",\n                    \"MobileId\": \"3901554753\",\n                    \"Version\": 2,\n                    \"Name\": \"REMQ22P Außeneinheit 3 Leiter Technik\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554754\",\n                    \"MobileId\": \"3901554754\",\n                    \"Version\": 5,\n                    \"Name\": \"Allgemeiner Zustand (Foto)\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"1-Gut \\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"2-Zufriedenstellend\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"3-Schlecht (Bild machen)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-06-06T10:40:43\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554755\",\n                    \"MobileId\": \"3901554755\",\n                    \"Version\": 7,\n                    \"Name\": \"Foto des Zustandes\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"2017-06-06T13:40:40\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554756\",\n                    \"MobileId\": \"3901554756\",\n                    \"Version\": 3,\n                    \"Name\": \"Anlagenstatus vor Service\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage in Betrieb\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage spannungsfrei\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Anlage mit Fehler (Fehlerstatus dokumentieren)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:23\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554757\",\n                    \"MobileId\": \"3901554757\",\n                    \"Version\": 2,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554758\",\n                    \"MobileId\": \"3901554758\",\n                    \"Version\": 4,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"29\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Adresse\\\",\\r\\n      \\\"result\\\": \\\"xf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fehlermeldung\\\",\\r\\n      \\\"result\\\": \\\"ff\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554757\"\n                },\n                {\n                    \"Id\": \"3901554759\",\n                    \"MobileId\": \"3901554759\",\n                    \"Version\": 4,\n                    \"Name\": \"Innen und Außenreinigung des Geräts\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel festgestellt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Feucht abwischen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554760\",\n                    \"MobileId\": \"3901554760\",\n                    \"Version\": 3,\n                    \"Name\": \"Reinigung Verflüssiger\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Nicht erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554761\",\n                    \"MobileId\": \"3901554761\",\n                    \"Version\": 3,\n                    \"Name\": \"Prüfung Verflüssiger Ventilator\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel und Gesäubert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Lüfter auf Unwucht und Funktion prüfen</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Ventilatorschaufeln säubern</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Laufrichtung der Ventilatoren prüfen</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554762\",\n                    \"MobileId\": \"3901554762\",\n                    \"Version\": 3,\n                    \"Name\": \"Kontrolle auf Ölspuren\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Alles ist dicht\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ölspuren vorhanden (mit Kältemaschinenöl nachgeölt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Ölwechsel durchgeführt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Öltest angeordnet\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:24\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Sichtkontrolle auf Dichtigkeit und Ölspuren an den Börtelmutter prüfen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554763\",\n                    \"MobileId\": \"3901554763\",\n                    \"Version\": 3,\n                    \"Name\": \"Begleitheizung auf Beschädigung prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Kondensatbegleitheizung auf Beschädigung prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554764\",\n                    \"MobileId\": \"3901554764\",\n                    \"Version\": 3,\n                    \"Name\": \"Kondensatablauf Außengerät prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Frostfreier Kondensatablauf prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554765\",\n                    \"MobileId\": \"3901554765\",\n                    \"Version\": 3,\n                    \"Name\": \"Reparaturschalter am Außengerät vorhanden\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"31\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Wartung ist nicht möglich)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Alternative Wartung mit Mangel weiterführen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554766\",\n                    \"MobileId\": \"3901554766\",\n                    \"Version\": 3,\n                    \"Name\": \"Prüfung elektrische Spannungsversorgung\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"30\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li>Prüfung der elektrischen Spannung</li><li>Prüfung des Schutzskontakts am Außengerät</li><li>Prüfung der elektrischen Anlagen. + Spannungsversorgung</li><li>Prüfung der Anschlussklemmen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554767\",\n                    \"MobileId\": \"3901554767\",\n                    \"Version\": 2,\n                    \"Name\": \"Messdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"32\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 19,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554768\",\n                    \"MobileId\": \"3901554768\",\n                    \"Version\": 4,\n                    \"Name\": \"Verflüssiger\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"34\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verdampfungstemperatur\\\",\\r\\n      \\\"result\\\": \\\"dd\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verflüssigungstemperatur\\\",\\r\\n      \\\"result\\\": \\\"dd\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Messen Sie die Temperaturen am Verflüssiger\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554767\"\n                },\n                {\n                    \"Id\": \"3901554769\",\n                    \"MobileId\": \"3901554769\",\n                    \"Version\": 2,\n                    \"Name\": \"Isolierung prüfen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Isolierung, Rohrleitungen und Tauwasserleitungen keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:25\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Kältemittelrohrleitung auf sichtbare Beschädigungen geprüft</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Isolierung auf sichtbare Beschädigung geprüft</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Tauwasserleitung auf sichtbare Beschädigung geprüft</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554770\",\n                    \"MobileId\": \"3901554770\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung Gerät\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"36\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"TEK-MATE\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Weiteres Gerät im Komentar hinzufügen\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Wählen Sie ein Gerät für die Dichtheitsprüfung\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554771\",\n                    \"MobileId\": \"3901554771\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung (Kältekreis)\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"35\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Dichtheitsprüfung bestanden (Keine Mängel)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kältemittel nachgefüllt, keine Undichtigkeit festgestellt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt und Leck beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel nicht beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"3\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"Führen Sie eine Dichtheitsprüfung des Kältekreises durch<div><ul><li>Dichtheitsprüfung der Börderlmuttern mit elektrischen Lecksuchgerät (Innengeräte)</li><li>Dichtheitsprüfung des Innenraums mit elektrischem Lecksuchgerät (Außengerät)</li><li>Automatischer Leakcheck durchgeführt</li></ul></div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554772\",\n                    \"MobileId\": \"3901554772\",\n                    \"Version\": 2,\n                    \"Name\": \"VRV Checker anschliessen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 24,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"nicht notwendig\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"angeschlossen und Datei gesichtert\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554753\"\n                },\n                {\n                    \"Id\": \"3901554773\",\n                    \"MobileId\": \"3901554773\",\n                    \"Version\": 2,\n                    \"Name\": \"Stammdaten\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 25,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Equipment\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"dfgp\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bezeichnung\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"dfg\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Techn. Platz\\\",\\r\\n      \\\"result\\\": \\\"\\\\\\\"ffb\\\\\\\"\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554774\",\n                    \"MobileId\": \"3901554774\",\n                    \"Version\": 2,\n                    \"Name\": \"Grünflächenpflege1\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 26,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554775\",\n                    \"MobileId\": \"3901554775\",\n                    \"Version\": 2,\n                    \"Name\": \"Laub harken\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 27,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554776\",\n                    \"MobileId\": \"3901554776\",\n                    \"Version\": 2,\n                    \"Name\": \"Rasen sähen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 28,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:26\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554777\",\n                    \"MobileId\": \"3901554777\",\n                    \"Version\": 2,\n                    \"Name\": \"Rasen mähen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 29,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"nicht erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554774\"\n                },\n                {\n                    \"Id\": \"3901554778\",\n                    \"MobileId\": \"3901554778\",\n                    \"Version\": 1,\n                    \"Name\": \"Grünflächenpflege2\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 30,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554779\",\n                    \"MobileId\": \"3901554779\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 31,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Laub harken\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rasen sähen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sträucher beschneiden\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Größe\\\",\\r\\n      \\\"result\\\": \\\"32\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:27\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554778\"\n                },\n                {\n                    \"Id\": \"3901554780\",\n                    \"MobileId\": \"3901554780\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 32,\n                    \"Data\": \"{\\\"name\\\":\\\"h\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-07-03T15:37:29\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554781\",\n                    \"MobileId\": \"3901554781\",\n                    \"Version\": 2,\n                    \"Name\": \"Grünflächenpflege2\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 33,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:28\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3901554782\",\n                    \"MobileId\": \"3901554782\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 34,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Laub harken\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rasen sähen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sträucher beschneiden\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Größe\\\",\\r\\n      \\\"result\\\": \\\"asdfasdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2017-05-21T10:24:28\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3901554781\"\n                },\n                {\n                    \"Id\": \"3904474226\",\n                    \"MobileId\": \"3904474226\",\n                    \"Version\": 4,\n                    \"Name\": \"Material hinzufügen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Material\",\n                    \"SortOrder\": 35,\n                    \"Data\": \"{\\\"result\\\":\\\"true\\\",\\\"filterId\\\":\\\"410583424\\\"}\",\n                    \"DateModifiedOffline\": \"2017-05-23T04:37:15\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<p>asdf asdfsadf asdf asfdasdf asdfsdfsad</p><p>f</p><p>&nbsp;asdf</p><p>as</p><p>efasdfasdfasdfasdfasdf</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"8917451023\",\n                    \"MobileId\": \"8917451023\",\n                    \"Version\": 2,\n                    \"Name\": \"Material hinzufügen\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Material\",\n                    \"SortOrder\": 36,\n                    \"Data\": \"{\\\"result\\\":\\\"true\\\",\\\"filterId\\\":\\\"410583068\\\"}\",\n                    \"DateModifiedOffline\": \"2019-05-17T08:26:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": \"<p>asdf asdfsadf asdf asfdasdf asdfsdfsad</p><p>f</p><p>&nbsp;asdf</p><p>as</p><p>efasdfasdfasdfasdfasdf</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410620\",\n                    \"MobileId\": \"9103410620\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 37,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist in Ordnung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Beschädigungen am Gerät nach Transport (Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410621\",\n                    \"MobileId\": \"9103410621\",\n                    \"Version\": 1,\n                    \"Name\": \"Sind die Anschlüsse richtig belegt?\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 38,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja alle Anschlüsse sind richtig belegt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nein (Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410622\",\n                    \"MobileId\": \"9103410622\",\n                    \"Version\": 1,\n                    \"Name\": \"Anschlüsse Verteiler Überprüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 39,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Verdrehtes Kabel (Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410623\",\n                    \"MobileId\": \"9103410623\",\n                    \"Version\": 1,\n                    \"Name\": \"Überprüfung der Schallschutzverkleidung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 40,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist Ordnungsgemäß installiert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410624\",\n                    \"MobileId\": \"9103410624\",\n                    \"Version\": 1,\n                    \"Name\": \"Konfiguration der Softwareeinstellungen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 41,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Systemdownload erfolgreich\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Systemdownload meldet Fehler (Abbruch)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410625\",\n                    \"MobileId\": \"9103410625\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 42,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9103410626\",\n                    \"MobileId\": \"9103410626\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen vor Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 43,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl der Tabletten\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9103410625\"\n                },\n                {\n                    \"Id\": \"9103410627\",\n                    \"MobileId\": \"9103410627\",\n                    \"Version\": 1,\n                    \"Name\": \"Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 44,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-04T13:09:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459308\",\n                    \"MobileId\": \"9160459308\",\n                    \"Version\": 1,\n                    \"Name\": \"durchgeführte Arbeiten Außengerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 45,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Reinigung Verflüssiger\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Innenreinigung Außengerät\\\",\\r\\n      \\\"type\\\": \\\"date\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kondensatablauf geprüft bei WP\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizfunktion in Ordnung?\\\",\\r\\n      \\\"type\\\": \\\"time\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hochdruckreiniger Verflüssiger\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Außentemperatur\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Barcode\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"HD und ND in Ordnung\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459309\",\n                    \"MobileId\": \"9160459309\",\n                    \"Version\": 1,\n                    \"Name\": \"durchgeführte Arbeiten Innengerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 46,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Filter gereinigt / gewechselt?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verdampferpaket geprüft / gereinigt / desinfiziert?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gehäuse gereinigt?\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kondensatpumpe bzw. Kondensatabführung getestet\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ansaugtemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ausblastemperatur bei höchster Lüfterstufe\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459310\",\n                    \"MobileId\": \"9160459310\",\n                    \"Version\": 1,\n                    \"Name\": \"Gesamtanlage\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 47,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Elektrische Anschlussklemme nachgezogen\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Testbetrieb eingeleitet, Regelungsfunktionen geprüft\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:04:05\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459311\",\n                    \"MobileId\": \"9160459311\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung Lichtkuppel\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 48,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459312\",\n                    \"MobileId\": \"9160459312\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung Aufsatzkranz\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 49,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK mit Beeinträchtigung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459313\",\n                    \"MobileId\": \"9160459313\",\n                    \"Version\": 1,\n                    \"Name\": \"Funktionsprüfung autom. Öffnung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 50,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler Nacharbeit nötig\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler irreperabel\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459314\",\n                    \"MobileId\": \"9160459314\",\n                    \"Version\": 1,\n                    \"Name\": \"Dokumentation der Wartungsergebnisse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 51,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459315\",\n                    \"MobileId\": \"9160459315\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter JET\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 52,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9160459316\",\n                    \"MobileId\": \"9160459316\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 53,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"2019-06-11T08:06:03\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016306\",\n                    \"MobileId\": \"9161016306\",\n                    \"Version\": 1,\n                    \"Name\": \"Innengeräte Nummer:\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 54,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016307\",\n                    \"MobileId\": \"9161016307\",\n                    \"Version\": 1,\n                    \"Name\": \"Sichtprüfung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 55,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist in Ordnung\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016308\",\n                    \"MobileId\": \"9161016308\",\n                    \"Version\": 1,\n                    \"Name\": \"Sind die Anschlüsse richtig belegt?\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 56,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja alle Anschlüsse sind richtig belegt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nein (Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:17\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016309\",\n                    \"MobileId\": \"9161016309\",\n                    \"Version\": 1,\n                    \"Name\": \"Anschlüsse Generator Überprüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 57,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016310\",\n                    \"MobileId\": \"9161016310\",\n                    \"Version\": 1,\n                    \"Name\": \"Überprüfung der Schallschutzverkleidung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 58,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ist Ordnungsgemäß installiert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016311\",\n                    \"MobileId\": \"9161016311\",\n                    \"Version\": 1,\n                    \"Name\": \"Absperrhähne\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 59,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Alle Absperrhähne geschlossen\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016312\",\n                    \"MobileId\": \"9161016312\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 60,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016313\",\n                    \"MobileId\": \"9161016313\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen vor Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 61,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Min Befüllmenge\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"LED leuchtet grün\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:18\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016314\",\n                    \"MobileId\": \"9161016314\",\n                    \"Version\": 1,\n                    \"Name\": \"Spitzenlast test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 62,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016315\",\n                    \"MobileId\": \"9161016315\",\n                    \"Version\": 1,\n                    \"Name\": \"Parametereinstellungen nach Test\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 63,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verbrauchte Menge Gas\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive gemessene Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effizienz Wärmegewinnung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Falscher Strom\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016312\"\n                },\n                {\n                    \"Id\": \"9161016316\",\n                    \"MobileId\": \"9161016316\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 64,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:08:19\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016306\"\n                },\n                {\n                    \"Id\": \"9161016858\",\n                    \"MobileId\": \"9161016858\",\n                    \"Version\": 1,\n                    \"Name\": \"Brandschutz\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 65,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T09:51:54\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161016999\",\n                    \"MobileId\": \"9161016999\",\n                    \"Version\": 1,\n                    \"Name\": \"Allgemeine Daten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 66,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bezeichnung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kunden Tor Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zulassungsnummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller Typ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Produkttyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typschlüssel\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Wartungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Baujahr\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fabrik Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Breite [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Höhe [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:42\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017000\",\n                    \"MobileId\": \"9161017000\",\n                    \"Version\": 1,\n                    \"Name\": \"Einbauort\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 67,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gebäude\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Achse\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Einbauhöhe\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Etage\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Besonderheiten\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:53\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017001\",\n                    \"MobileId\": \"9161017001\",\n                    \"Version\": 1,\n                    \"Name\": \"Produktdaten 1\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 68,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Steuerung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ansteuerungsmodul\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Antriebstyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Führungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fluchtweg\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sicherheitseinrichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:56\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017002\",\n                    \"MobileId\": \"9161017002\",\n                    \"Version\": 1,\n                    \"Name\": \"Produktdaten 2\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 69,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Brandmeldung an BMZ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rückhaltevorichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:47:58\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"9161016858\"\n                },\n                {\n                    \"Id\": \"9161017003\",\n                    \"MobileId\": \"9161017003\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Mitarbeiter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 70,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:48:00\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9161017004\",\n                    \"MobileId\": \"9161017004\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": null,\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 71,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"2019-06-11T10:48:02\",\n                    \"ServiceRequestId\": \"3899817987\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3899817987\",\n            \"Name\": \"Projekt X Tätigkeistnachweis \",\n            \"ExternalId\": \"1705-12\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2019-05-12T10:13:03Z\",\n            \"WorkDoneAt\": \"2017-07-11T19:55:59Z\",\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-08-01T14:07:50\",\n            \"DateOfCreation\": \"2017-05-21T10:22:26\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3899817987\",\n            \"CostCenterId\": \"0\",\n            \"Description\": null,\n            \"State\": \"InProgress\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"410517505\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"410550274\",\n                \"AddressString\": \"Weidehorst 28\",\n                \"Postal\": \"32609\",\n                \"City\": \"Hüllhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.696145,\n                \"Latitude\": 52.24972,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 353,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"3630923777\",\n                        \"AddressString\": \"Meierfeld 11\",\n                        \"Postal\": \"33813\",\n                        \"City\": \"Oerlinghausen Helpup\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.7132406234741211,\n                        \"Latitude\": 51.972049713134766,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3630956544\",\n                    \"Name\": \"Friesen\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-02-14T09:33:34\",\n                    \"ExternalId\": \"106236\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"0\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3741974538\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"114085\",\n                \"Name\": \"Niggemeier\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-18T14:43:27\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"5339480161\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"5301534724\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"87.71\",\n                    \"NameOrNumber\": \"Aufdach-Montage senkrecht Kompakt-Linie \\r\\n2 Aufdach K-s/n- AL schwarz 221642\\r\\nin Verbindung mit 2 Solarelementen senkrecht/ nebeneinander SchückoSol K\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>Aufdach-Montage senkrecht Kompakt-Linie <br>2 Aufdach K-s/n- AL schwarz 221642<br>in Verbindung mit 2 Solarelementen senkrecht/ nebeneinander <br></p>\",\n                    \"ExternalId\": \"221642\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"5339480162\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"442400768\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"V123456\",\n                    \"Price\": \"12.22\",\n                    \"Costs\": \"10.09\",\n                    \"NameOrNumber\": \"Bohrmaschine\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"123456\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                },\n                {\n                    \"Id\": \"5339480164\",\n                    \"Version\": 4,\n                    \"QuantityHours\": \"12.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"2688942083\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"78.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Anlagenentwässerung\",\n                    \"CustomValues\": [],\n                    \"Note\": \"<p>Entwässerung von wasserführenden Rohrsystemen in Gebäuden bei größerem Volumen, soweit pauschal ansetzbar. Pauschale einschließlich &lt; 1,5 Einsatzstunden.</p>\",\n                    \"ExternalId\": \"1.1.30\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 4,\n                    \"Type\": \"Service\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"0\",\n                    \"UnitString\": null\n                },\n                {\n                    \"Id\": \"5338890353\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"0.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"442400768\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": \"V123456\",\n                    \"Price\": \"12.22\",\n                    \"Costs\": \"10.09\",\n                    \"NameOrNumber\": \"Bohrmaschine\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"123456\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 5,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"442728452\",\n                    \"UnitId\": \"499552001\",\n                    \"UnitString\": \"m\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237075\",\n                    \"Version\": 5,\n                    \"State\": \"InProgress\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-23T09:00:00Z\",\n                    \"StartDateTime\": \"2017-05-23T05:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3909910898\",\n                    \"MobileId\": \"3909910898\",\n                    \"Version\": 3,\n                    \"Name\": \"Art des Schadens\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Leitungswasser (Bitte Foto)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Brand (bitte Foto)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Elementar\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:49\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910899\",\n                    \"MobileId\": \"3909910899\",\n                    \"Version\": 3,\n                    \"Name\": \"Durchgeführte Arbeiten\",\n                    \"IsDone\": true,\n                    \"HasError\": true,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Arbeiten durchgeführt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nacharbeit erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"1\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:50\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"<p>Beschreiben Sie kurz die durchgeführten Arbeiten:</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910900\",\n                    \"MobileId\": \"3909910900\",\n                    \"Version\": 6,\n                    \"Name\": \"Verbrauchtes Material\",\n                    \"IsDone\": true,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Material verbraucht\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": \\\"0\\\",\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"2018-02-13T21:21:53\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"<p>Verbrauchtes Material hinzugefügt:</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910901\",\n                    \"MobileId\": \"3909910901\",\n                    \"Version\": 2,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3909910902\",\n                    \"MobileId\": \"3909910902\",\n                    \"Version\": 1,\n                    \"Name\": \"Thema:\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Besprechung abgeschlossen\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Weitere Nachbearbeitung nötig\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3912663051\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3912663051\",\n            \"Name\": \"Polsterreinigung \",\n            \"ExternalId\": \"1705-16\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2017-05-23T13:20:27Z\",\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-07-25T13:32:02\",\n            \"DateOfCreation\": \"2017-05-23T13:19:07\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663051\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"<p>Bitte die Polsterreinigung für den Kunden durchführen. </p>\",\n            \"State\": \"InProgress\",\n            \"CustomValues\": [\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"1B8974DB-6B6A-1E4B-61B7-C975097A88DB\\\",\\\"Name\\\":\\\" sadf\\\"}\",\n                    \"Value\": null\n                }\n            ],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3741974538\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3630923777\",\n                \"AddressString\": \"Meierfeld 11\",\n                \"Postal\": \"33813\",\n                \"City\": \"Oerlinghausen Helpup\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.7132406234741211,\n                \"Latitude\": 51.972049713134766,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 25,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"1194557446\",\n                        \"AddressString\": \"Neureuter Strasse 37\",\n                        \"Postal\": \"76185\",\n                        \"City\": \"Karlsruhe\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 8.35742,\n                        \"Latitude\": 49.02634,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"1194590211\",\n                    \"Name\": \"Filiale Neureuter Strasse\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-15T09:31:41\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 13,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237076\",\n                    \"Version\": 3,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-23T13:00:00Z\",\n                    \"StartDateTime\": \"2017-05-23T11:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": false,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663052\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [],\n            \"Id\": \"3912663052\",\n            \"Name\": \"tedt\",\n            \"ExternalId\": \"1705-17\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": null,\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2017-05-23T13:21:07\",\n            \"DateOfCreation\": \"2017-05-23T13:19:35\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663052\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"<p>ycvyxvcxy</p>\",\n            \"State\": \"Scheduled\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"1194524674\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1194557446\",\n                \"AddressString\": \"Neureuter Strasse 37\",\n                \"Postal\": \"76185\",\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.35742,\n                \"Latitude\": 49.02634,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 5,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"2747203635\",\n                        \"AddressString\": \"Dorfstrasse 32\",\n                        \"Postal\": \"32323\",\n                        \"City\": \"Leipzg\",\n                        \"State\": null,\n                        \"Country\": null,\n                        \"Longitude\": 0,\n                        \"Latitude\": 0,\n                        \"IsValidLocation\": false\n                    },\n                    \"Id\": \"2747170854\",\n                    \"Name\": \"test\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2016-08-12T14:29:51\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 1,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"0\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3741974538\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"114085\",\n                \"Name\": \"Niggemeier\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-18T14:43:27\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"442728452\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Besnik \",\n                            \"LastName\": \"Avdylaj \",\n                            \"Email\": \"frank.steuer@test.derr\",\n                            \"JobTitle\": \"Techniker\",\n                            \"MobilePhone\": \"017606060606\",\n                            \"Telephone\": \"90273654\",\n                            \"Fax\": \"\",\n                            \"Note\": \"\",\n                            \"DateModified\": \"2019-02-07T16:02:21\",\n                            \"Version\": 41,\n                            \"CompanyId\": \"2513469448\",\n                            \"IsUser\": true,\n                            \"ExternalId\": \"\",\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3912237077\",\n                    \"Version\": 2,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-05-26T10:00:00Z\",\n                    \"StartDateTime\": \"2017-05-26T06:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": false,\n                    \"ContactIds\": [\n                        \"442728452\"\n                    ],\n                    \"ServiceRequestId\": \"3912663054\",\n                    \"ContactId\": \"442728452\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [],\n            \"Id\": \"3912663054\",\n            \"Name\": \"test \",\n            \"ExternalId\": \"1705-18\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": null,\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2017-05-23T13:20:17\",\n            \"DateOfCreation\": \"2017-05-23T13:20:15\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3912663054\",\n            \"CostCenterId\": \"0\",\n            \"Description\": null,\n            \"State\": \"Scheduled\",\n            \"CustomValues\": [],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3741974538\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2747203635\",\n                \"AddressString\": \"Dorfstrasse 32\",\n                \"Postal\": \"32323\",\n                \"City\": \"Leipzg\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Version\": 5,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        },\n        {\n            \"ServiceObjects\": [\n                {\n                    \"Location\": {\n                        \"Version\": 0,\n                        \"Id\": \"3906928684\",\n                        \"AddressString\": \"Baaderstraße 21\",\n                        \"Postal\": \"80469\",\n                        \"City\": \"München\",\n                        \"State\": null,\n                        \"Country\": \"DE\",\n                        \"Longitude\": 11.57924,\n                        \"Latitude\": 48.13126,\n                        \"IsValidLocation\": true\n                    },\n                    \"Id\": \"3905126425\",\n                    \"Name\": \"stufenberger\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-07-05T11:28:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 9,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"3907092484\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Customer\": {\n                \"Location\": null,\n                \"Id\": \"3907092484\",\n                \"Version\": 6,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Johann Bergmann\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-05-22T11:49:13\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Reports\": [],\n            \"Items\": [\n                {\n                    \"Id\": \"3914203138\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampensteuerung x1\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"32342\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 0,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"3914203136\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampensteuerungsaustauschset\",\n                    \"CustomValues\": [],\n                    \"Note\": \"\",\n                    \"ExternalId\": \"74343\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 1,\n                    \"Type\": \"Material\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499551999\",\n                    \"UnitString\": \"Stunde\"\n                },\n                {\n                    \"Id\": \"3914203137\",\n                    \"Version\": 1,\n                    \"QuantityHours\": \"1.00\",\n                    \"PlannedQuantityHours\": \"0.00\",\n                    \"ItemTypeId\": \"0\",\n                    \"ItemNumber\": null,\n                    \"Manufacture\": null,\n                    \"Price\": \"0.00\",\n                    \"Costs\": \"0.00\",\n                    \"NameOrNumber\": \"Lampenaustauschset 2\",\n                    \"CustomValues\": [],\n                    \"Note\": null,\n                    \"ExternalId\": \"\",\n                    \"Discount\": \"0.00\",\n                    \"VAT\": \"0.00\",\n                    \"IsManual\": false,\n                    \"SortOrder\": 2,\n                    \"Type\": \"Equipment\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ServiceObjectId\": \"0\",\n                    \"CreatorId\": \"410583043\",\n                    \"UnitId\": \"499552000\",\n                    \"UnitString\": \"Stück\"\n                }\n            ],\n            \"Appointments\": [\n                {\n                    \"Contacts\": [\n                        {\n                            \"Id\": \"3688923159\",\n                            \"CustomValues\": [],\n                            \"FirstName\": \"Peter\",\n                            \"LastName\": \"Lindberg\",\n                            \"Email\": \"pl@simplias-demo.com\",\n                            \"JobTitle\": null,\n                            \"MobilePhone\": null,\n                            \"Telephone\": null,\n                            \"Fax\": null,\n                            \"Note\": null,\n                            \"DateModified\": \"2019-04-02T08:18:52\",\n                            \"Version\": 9,\n                            \"CompanyId\": \"1194524674\",\n                            \"IsUser\": true,\n                            \"ExternalId\": null,\n                            \"Gender\": \"Male\",\n                            \"UserId\": \"0\"\n                        }\n                    ],\n                    \"Id\": \"3964272640\",\n                    \"Version\": 3,\n                    \"State\": \"NotVisited\",\n                    \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n                    \"EndDateTime\": \"2017-06-04T08:00:00Z\",\n                    \"StartDateTime\": \"2017-06-04T06:00:00Z\",\n                    \"DrivingDistanceFrom\": null,\n                    \"DrivingDistanceTo\": null,\n                    \"WasReadOnClientSide\": true,\n                    \"ContactIds\": [\n                        \"3688923159\"\n                    ],\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"ContactId\": \"3688923159\",\n                    \"Note\": null\n                }\n            ],\n            \"Steps\": [\n                {\n                    \"Id\": \"3914170368\",\n                    \"MobileId\": \"3914170368\",\n                    \"Version\": 1,\n                    \"Name\": \"Tauschen Sie die Lampensteuerung aus\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nicht erledigt (Foto und Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"Die Lampensteuerung befindet sich im hinteren Bereich der Filiale\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170369\",\n                    \"MobileId\": \"3914170369\",\n                    \"Version\": 1,\n                    \"Name\": \"Foto der neuen Lampensteuerung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170370\",\n                    \"MobileId\": \"3914170370\",\n                    \"Version\": 1,\n                    \"Name\": \"Seriennummern\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer (alt)\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer (neu)\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"Tragen Sie jeweils die Seriennummer der alten und neuen Lampensteuerung ein.\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170371\",\n                    \"MobileId\": \"3914170371\",\n                    \"Version\": 1,\n                    \"Name\": \"Messwerte aufnehmen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170373\",\n                    \"MobileId\": \"3914170373\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"result\\\": \\\"123123\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170372\",\n                    \"MobileId\": \"3914170372\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 6,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170374\",\n                    \"MobileId\": \"3914170374\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170375\",\n                    \"MobileId\": \"3914170375\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170371\"\n                },\n                {\n                    \"Id\": \"3914170376\",\n                    \"MobileId\": \"3914170376\",\n                    \"Version\": 1,\n                    \"Name\": \"Zweiter schritt\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170377\",\n                    \"MobileId\": \"3914170377\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"16\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170379\",\n                    \"MobileId\": \"3914170379\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170380\",\n                    \"MobileId\": \"3914170380\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170381\",\n                    \"MobileId\": \"3914170381\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170382\",\n                    \"MobileId\": \"3914170382\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170379\"\n                },\n                {\n                    \"Id\": \"3914170378\",\n                    \"MobileId\": \"3914170378\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170391\",\n                    \"MobileId\": \"3914170391\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170387\",\n                    \"MobileId\": \"3914170387\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"17\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170388\",\n                    \"MobileId\": \"3914170388\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"18\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170387\"\n                },\n                {\n                    \"Id\": \"3914170383\",\n                    \"MobileId\": \"3914170383\",\n                    \"Version\": 1,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"11\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 19,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170384\",\n                    \"MobileId\": \"3914170384\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170389\",\n                    \"MobileId\": \"3914170389\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"19\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170390\",\n                    \"MobileId\": \"3914170390\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdfsadf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170389\"\n                },\n                {\n                    \"Id\": \"3914170385\",\n                    \"MobileId\": \"3914170385\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170386\",\n                    \"MobileId\": \"3914170386\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 24,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"3914170376\"\n                },\n                {\n                    \"Id\": \"3914170392\",\n                    \"MobileId\": \"3914170392\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"20\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 25,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<p>asdfas dfasfasdf</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170393\",\n                    \"MobileId\": \"3914170393\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"23\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 26,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"asdfasdf\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"fasfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": \"<p>sa dfasdfasdf</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170394\",\n                    \"MobileId\": \"3914170394\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"24\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 27,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"3914170395\",\n                    \"MobileId\": \"3914170395\",\n                    \"Version\": 1,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 28,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2fasdasdffadfsdf\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfasdfsad\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"3914104832\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"0\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"3914104832\",\n            \"Name\": \"Gaswartung\",\n            \"ExternalId\": \"1705-19\",\n            \"InvoiceId\": null,\n            \"ClosedAt\": null,\n            \"ReleasedAt\": \"2017-06-04T09:42:04Z\",\n            \"WorkDoneAt\": null,\n            \"TargetTimeInMinutes\": \"120\",\n            \"DateModified\": \"2019-03-14T09:03:14\",\n            \"DateOfCreation\": \"2017-05-23T13:28:00\",\n            \"DueDateRangeStart\": null,\n            \"DueDateRangeEnd\": null,\n            \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=3914104832\",\n            \"CostCenterId\": \"0\",\n            \"Description\": \"Bitte führen Sie alle notwendigen Schritte für den Austausch der Lampensteuerung durch.\",\n            \"State\": \"Released\",\n            \"CustomValues\": [\n                {\n                    \"Meta\": \"{\\\"Id\\\":1,\\\"Name\\\":\\\"Fehlercode\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"2E64F208-FCE3-D425-4F60-CAA8EE27542C\\\",\\\"Name\\\":\\\"Kunden-Referenz\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"49D43EDF-06B6-FD77-1E40-BDAD3F936705\\\",\\\"Name\\\":\\\"Kundenadresse 1\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"6FFAB29F-70B8-D10B-4C69-798F13C9FCCA\\\",\\\"Name\\\":\\\"Kundenadresse 2\\\"}\",\n                    \"Value\": null\n                },\n                {\n                    \"Meta\": \"{\\\"Id\\\":\\\"199B04CA-4FB9-91DF-7779-E10515938210\\\",\\\"Name\\\":\\\"Versicherungsnummer\\\"}\",\n                    \"Value\": null\n                }\n            ],\n            \"CurrentOwnerId\": \"410583043\",\n            \"CustomerId\": \"3907092484\",\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3906928684\",\n                \"AddressString\": \"Baaderstraße 21\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.57924,\n                \"Latitude\": 48.13126,\n                \"IsValidLocation\": true\n            },\n            \"Version\": 6,\n            \"IsTemplate\": false,\n            \"IsTemplateMobile\": false,\n            \"CreateFromServiceRequestTemplateId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=ServiceObjects%2CCustomer%2CReports%2CItems%2CAppointments%2FContacts%2CSteps&$skip=5\"\n}"}],"_postman_id":"60780253-c679-4170-ad05-09e3fb0de69b"},{"name":"Create a Service Request","id":"d507d9f4-e0aa-49cd-8a56-07435ab81683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"Febster-Test-Serviceauftrag\",\n  \"Description\": \"sssssssssssssssss\",\n  \"ExternalId\": \"SE 002-9089362-10\",\n  \"TargetTimeInMinutes\": 122,\n  \"DueDateRangeEnd\": \"2019-12-23T00:00:00.000+01:00\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests","description":"<p>Creates a Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Service Request.</td>\n</tr>\n<tr>\n<td>ServiceObjects</td>\n<td>array</td>\n<td>Required. List of objects only with the id of the Service Object for this Service Request.</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>int</td>\n<td>Required. Id of the Customer linked to this Service Request.</td>\n</tr>\n<tr>\n<td>Appointments</td>\n<td>array</td>\n<td>Optional. List of objects containing the time for start/end the appointment and the id's of the contacts linked to each one.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description for this job.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External Id for the Service Request. If it's not given, the system generates one.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Optional. Sets the location for the Service Request. Takes the Location of the Service Object.</td>\n</tr>\n<tr>\n<td>TargetTimeInMinutes</td>\n<td>int</td>\n<td>Optional. Number of minutes for the job to be completed.</td>\n</tr>\n<tr>\n<td>DueDateRangeEnd</td>\n<td>datetime</td>\n<td>Optional. Due date for scheduling an appointment for the job.</td>\n</tr>\n<tr>\n<td>CostCenterId</td>\n<td>int</td>\n<td>Optional. Id of a cost center to add.</td>\n</tr>\n<tr>\n<td>Qualifications</td>\n<td>array</td>\n<td>Optional. List of qualifications to add. Just needs the Id of the qualifications to add to be linked.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"6292497e-8296-4097-a97b-a091eb13372c","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Service Request\",\n    \"Description\": \"<b>It's a test</b>\",\n    \"ServiceObjects\": [\n        {\n            \"Id\": \"9861627937\"\n        }\n    ],\n    \"CustomerId\":\"9494953985\",\n    \"Appointments\": [\n        {\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"EndDateTime\": \"2019-08-28T12:18:00Z\",\n            \"StartDateTime\": \"2019-08-28T10:18:00Z\"\n        }\n    ],\n    \"ExternalId\": \"TEST-EXTID\",\n    \"TargetTimeInMinutes\": \"250\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ServiceRequests(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 13:42:05 GMT"},{"key":"Content-Length","value":"1062"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests/@Element\",\n    \"Id\": \"9982214195\",\n    \"Name\": \"Test Service Request\",\n    \"ExternalId\": \"TEST-EXTID\",\n    \"InvoiceId\": null,\n    \"ClosedAt\": null,\n    \"ReleasedAt\": \"2019-09-09T13:42:05.9156893Z\",\n    \"WorkDoneAt\": null,\n    \"TargetTimeInMinutes\": \"250\",\n    \"DateModified\": \"2019-09-09T13:42:05.9156893Z\",\n    \"DateOfCreation\": \"2019-09-09T13:42:05.7894943Z\",\n    \"DueDateRangeStart\": null,\n    \"DueDateRangeEnd\": \"2019-09-16T13:42:05.7894943Z\",\n    \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=9982214195\",\n    \"CostCenterId\": \"0\",\n    \"Description\": \"<b>It's a test</b>\",\n    \"State\": \"Released\",\n    \"CustomValues\": [],\n    \"CurrentOwnerId\": \"410583043\",\n    \"CustomerId\": \"9494953985\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9861595203\",\n        \"AddressString\": \"Zschochersche Straße\",\n        \"Postal\": \"04177\",\n        \"City\": \"Leipzig\",\n        \"State\": null,\n        \"Country\": \"DE\",\n        \"Longitude\": 12.3388987,\n        \"Latitude\": 51.3326681,\n        \"IsValidLocation\": true\n    },\n    \"Version\": 3,\n    \"IsTemplate\": false,\n    \"IsTemplateMobile\": false,\n    \"CreateFromServiceRequestTemplateId\": \"0\"\n}"}],"_postman_id":"d507d9f4-e0aa-49cd-8a56-07435ab81683"},{"name":"Create a Service Request Template","id":"e7c5e5e6-ced2-45b0-9d2e-2a51d4f9d0f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Standard Template\",\n    \"Description\": \"<b>It's a test template</b>\",\n    \"ExternalId\": \"TTX1-Template\",\n    \"TargetTimeInMinutes\": \"275\",\n    \"IsTemplate\": true,\n    \"Type\": \"IsStandardTemplate\"\n    \n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests","description":"<p>Creates a Service Request Template. Neither appointments nor service objects can be set for this type. A Cost center / Project can be assigned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Service Request.</td>\n</tr>\n<tr>\n<td>IsTemplate</td>\n<td>bool</td>\n<td>Required. True for specifying that is a template.</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>int</td>\n<td>Optional. Id of the Customer linked to this Service Request.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description for this job.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External Id for the Service Request. If it's not given, the system generates one.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Optional. Sets the location for the Service Request. Takes the Location of the Service Object.</td>\n</tr>\n<tr>\n<td>TargetTimeInMinutes</td>\n<td>int</td>\n<td>Optional. Number of minutes for the job to be completed.</td>\n</tr>\n<tr>\n<td>DueDateRangeEnd</td>\n<td>datetime</td>\n<td>Optional. Due date for scheduling an appointment for the job.</td>\n</tr>\n<tr>\n<td>CostCenterId</td>\n<td>int</td>\n<td>Optional. An id for a cost center / project.</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array</td>\n<td>List of tags to be assigned.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7c5e5e6-ced2-45b0-9d2e-2a51d4f9d0f0"},{"name":"Create Service Request from Template","id":"bdb05181-adab-447f-aaf9-b2f556897a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"CreateFromServiceRequestTemplateId\": \"10983637006\",\n    \"ServiceObjects\": [\n        {\n            \"Id\": \"10978918413\"\n        }\n    ],\n    \"Name\": \"Hä\",\n    \"Appointments\": [\n        {\n            \"ContactIds\": [\n                \"10979540996\"\n            ],\n            \"EndDateTime\": \"2019-12-13T12:00:00.2584849Z\",\n            \"StartDateTime\": \"2019-12-13T16:30:00.2584849Z\"\n        }\n    ],\n    \"CustomerId\": \"10981310465\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests","description":"<p>Create a Service Request from a Template. It is possible to set as much properties as setting a normal Service Request, with the difference that is mandatory to set the Service Request Template Id as shown in the Parameters table below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateFromServiceRequestTemplateId</td>\n<td>int</td>\n<td>Required. Id of the Service Request Template.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"bd7ab1df-af81-4d57-b8b6-b1157d04a8c5","name":"Create Service Request from Template 201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"CreateFromServiceRequestTemplateId\": \"10983637006\",\n    \"ServiceObjects\": [\n        {\n            \"Id\": \"10978918413\"\n        }\n    ],\n    \"Name\": \"Hä\",\n    \"Appointments\": [\n        {\n            \"ContactIds\": [\n                \"10979540996\"\n            ],\n            \"EndDateTime\": \"2019-12-13T12:00:00.2584849Z\",\n            \"StartDateTime\": \"2019-12-13T16:30:00.2584849Z\"\n        }\n    ],\n    \"CustomerId\": \"10981310465\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ServiceRequests(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 13 Dec 2019 14:13:12 GMT"},{"key":"Content-Length","value":"1030"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests/@Element\",\n    \"Id\": \"10983637053\",\n    \"Name\": \"Hä\",\n    \"ExternalId\": \"1912-8\",\n    \"InvoiceId\": null,\n    \"ClosedAt\": null,\n    \"ReleasedAt\": null,\n    \"WorkDoneAt\": null,\n    \"TargetTimeInMinutes\": \"275\",\n    \"DateModified\": \"2019-12-13T14:13:13.4450264Z\",\n    \"DateOfCreation\": \"2019-12-13T14:13:13.4450264Z\",\n    \"DueDateRangeStart\": null,\n    \"DueDateRangeEnd\": \"2019-12-27T14:13:13.4450264Z\",\n    \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=10983637053\",\n    \"CostCenterId\": \"10989436928\",\n    \"Description\": \"<b>It's a test template</b>\",\n    \"State\": \"Released\",\n    \"CustomValues\": [],\n    \"CurrentOwnerId\": \"410583043\",\n    \"CustomerId\": \"10981310465\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"10979508238\",\n        \"AddressString\": \"Zschochersche str. 2D\",\n        \"Postal\": null,\n        \"City\": null,\n        \"State\": null,\n        \"Country\": null,\n        \"Longitude\": 12.3396677,\n        \"Latitude\": 51.3357715,\n        \"IsValidLocation\": true\n    },\n    \"Version\": 3,\n    \"IsTemplate\": false,\n    \"IsTemplateMobile\": false,\n    \"CreateFromServiceRequestTemplateId\": \"0\"\n}"}],"_postman_id":"bdb05181-adab-447f-aaf9-b2f556897a72"},{"name":"Best Technician Calendar","id":"ef66735a-9526-4a6a-a893-9f3f13f95269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"maxDistance\" : 100,\n\"startDateTime\": \"2025-11-01T12:20:00\",\n\"endDateTime\": \"2025-12-01T12:20:00\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests/345345345L/BestTechnicianForJob","description":"<p>Finds the best technician for this job regarding its qualification, maximum distance to the job, previous appointments and its availability. It is proposing multiple appointments that can used to dispatch the job and create an appointment with the Create Appointment interface.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>maxDistance</td>\n<td>int</td>\n<td>Required. Maximum distance in km for the best technician</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>datetime</td>\n<td>Required. Start date time in which the algorithmn should search for the best technician.</td>\n</tr>\n<tr>\n<td>endDateTime</td>\n<td>datetime</td>\n<td>Required. End date time in which the algorithmn should search for the best technician.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests","345345345L","BestTechnicianForJob"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"e9080c65-c9c5-48a2-83b8-34dad55ce980","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Service Request\",\n    \"Description\": \"<b>It's a test</b>\",\n    \"ServiceObjects\": [\n        {\n            \"Id\": \"9861627937\"\n        }\n    ],\n    \"CustomerId\":\"9494953985\",\n    \"Appointments\": [\n        {\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"EndDateTime\": \"2019-08-28T12:18:00Z\",\n            \"StartDateTime\": \"2019-08-28T10:18:00Z\"\n        }\n    ],\n    \"ExternalId\": \"TEST-EXTID\",\n    \"TargetTimeInMinutes\": \"250\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ServiceRequests(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 13:42:05 GMT"},{"key":"Content-Length","value":"1062"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests/@Element\",\n    \"Id\": \"9982214195\",\n    \"Name\": \"Test Service Request\",\n    \"ExternalId\": \"TEST-EXTID\",\n    \"InvoiceId\": null,\n    \"ClosedAt\": null,\n    \"ReleasedAt\": \"2019-09-09T13:42:05.9156893Z\",\n    \"WorkDoneAt\": null,\n    \"TargetTimeInMinutes\": \"250\",\n    \"DateModified\": \"2019-09-09T13:42:05.9156893Z\",\n    \"DateOfCreation\": \"2019-09-09T13:42:05.7894943Z\",\n    \"DueDateRangeStart\": null,\n    \"DueDateRangeEnd\": \"2019-09-16T13:42:05.7894943Z\",\n    \"PortalLink\": \"https://portal.mobilefieldreport.com/#/servicerequest?modalDialog:ShowServiceRequestId=9982214195\",\n    \"CostCenterId\": \"0\",\n    \"Description\": \"<b>It's a test</b>\",\n    \"State\": \"Released\",\n    \"CustomValues\": [],\n    \"CurrentOwnerId\": \"410583043\",\n    \"CustomerId\": \"9494953985\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9861595203\",\n        \"AddressString\": \"Zschochersche Straße\",\n        \"Postal\": \"04177\",\n        \"City\": \"Leipzig\",\n        \"State\": null,\n        \"Country\": \"DE\",\n        \"Longitude\": 12.3388987,\n        \"Latitude\": 51.3326681,\n        \"IsValidLocation\": true\n    },\n    \"Version\": 3,\n    \"IsTemplate\": false,\n    \"IsTemplateMobile\": false,\n    \"CreateFromServiceRequestTemplateId\": \"0\"\n}"}],"_postman_id":"ef66735a-9526-4a6a-a893-9f3f13f95269"},{"name":"Link a Service Request with a Service Object","id":"2f7769e0-9bb8-4035-ad04-11d8259f3a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/ServiceObjects(9875849220L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)/$links/ServiceObjects","description":"<p>Set a Service Object for the job.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Service Request.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Required. URL to the OData request of the Service Object to link.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9993846794L)","$links","ServiceObjects"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f7769e0-9bb8-4035-ad04-11d8259f3a43"},{"name":"Link a Service Request with a Document","id":"79612bf8-a2fa-4595-88d4-1139d473320c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Documents(9248997386L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9898197023L)/$links/Documents","description":"<p>Attaches a Document to a Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Required. URL to the OData request of the Document to attach.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9898197023L)","$links","Documents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"79612bf8-a2fa-4595-88d4-1139d473320c"},{"name":"Link a Service Request Template with a Step List Template","id":"cd411f30-ac36-4bdb-a74b-63b3ae917446","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Documents(9248997386L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9898197023L)/$links/Documents","description":"<p>Attaches a Step list template to a Service Request. At this point will only work if the service request is a template.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request template.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Required. URL to the OData request of the Step List Template to attach.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9898197023L)","$links","Documents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd411f30-ac36-4bdb-a74b-63b3ae917446"},{"name":"Update a Service Request with a Company","id":"eeb33b6d-40d1-4514-93a2-8a1842ca30aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Id\": \"9993846794\",\n    \"Name\": \"Test Service Request\",\n    \"ExternalId\": \"TEST-EXTID-0001\",\n    \"CustomerId\": \"9494953985\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)","description":"<p>Updates an existing Service Request with a Company.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Service Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"important\">Important</h3>\n<p>Here are listed <strong>only the minimun parameters</strong> needed for the request to work. However, <strong>making a PUT request with only this parameters <em>will erase all other properties values</em> that are not included in this request's body</strong>. In order to keep all information it is strongly recommended to make a GET request over the Service Request to update, and copy the whole response in the body of this request. Thus, only the append of the <code>CustomerId</code> property is necessary to link the job with the desired Customer.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the Service Request.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Service Request.</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>int</td>\n<td>Required. Id of the Company to link.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9993846794L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"eeb33b6d-40d1-4514-93a2-8a1842ca30aa"},{"name":"Update a Service Request with a Due Date","id":"6ce2ddbc-8c0e-44e4-9ea5-4ee4140f287b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ServiceObjects\": [\n        {\n            \"Id\": \"8315994130\",\n            \"Name\": \"Benjamin Amos\"\n        }\n    ],\n    \"Id\": \"10060529690\",\n    \"Name\": \"neuer Auftrag\",\n    \"ExternalId\": \"1909-16\",\n    \"TargetTimeInMinutes\": \"120\",\n    \"DateOfCreation\": \"2019-09-16T14:13:39\",\n    \"DueDateRangeEnd\": \"2019-09-25T13:30:00Z\",\n    \"CurrentOwnerId\": \"410583043\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(10060529690L)","description":"<p>Add a due date to the Service Request.</p>\n<h3 id=\"important\">IMPORTANT</h3>\n<p>Before adding the due date update, it is <strong>totally necessary</strong> to first fetch the Service Request (with all its expands) and copy the whole response as a part of the body of the request. If this is not done, the update may erase data existing previously.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DueDateRangeEnd</td>\n<td>string</td>\n<td>Required. A string representation of a date in format <code>yyyy-MM-ddTHH:mm:ssZ</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(10060529690L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ce2ddbc-8c0e-44e4-9ea5-4ee4140f287b"},{"name":"Add tags to Service Request","id":"0955c548-9408-43ec-8064-d7ac04a0943c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Tags(2621444L)\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2392066L)/$links/Tags","description":"<p>Add a tag to a service request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(2392066L)","$links","Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"0955c548-9408-43ec-8064-d7ac04a0943c"},{"name":"Add Qualification to Service Request","id":"614f2271-4ae5-4365-9094-3afc449f6bfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Qualifications(2621444L)\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2392066L)/$links/Qualifications","description":"<p>Add a tag to a service request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(2392066L)","$links","Qualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"614f2271-4ae5-4365-9094-3afc449f6bfd"},{"name":"Remove a Tag from Service Request","id":"64324a0e-95c6-429f-a390-27e2f57da3c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Tags(2621444L)\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2392066L)/$links/RemoveTags","description":"<p>Remove a tag from a service request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ServiceRequests(2392066L)","$links","RemoveTags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"64324a0e-95c6-429f-a390-27e2f57da3c4"},{"name":"Remove a Qualification from Service Request","id":"c213f50e-7783-45f3-939f-5b71204cfa8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"url\": \"https://portal.mobilefieldreport.com/odata/Qualifications(2621444L)\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2392066L)/$links/RemoveQualifications","description":"<p>Remove a tag from a service request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(2392066L)","$links","RemoveQualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"c213f50e-7783-45f3-939f-5b71204cfa8e"},{"name":"Delete a Service Request","id":"08df8137-f6e9-4e56-8e51-1fe0f56b4a66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(753664L)","description":"<p>Deletes the service request with the given id.</p>\n<h3 id=\"note\">Note</h3>\n<p>If the service request is not a template, it will only be deleted if the state is <em>created</em>, <em>released</em> or <em>closed</em>. If it is a template, it will only be deleted if the template is not being used in any maintenance event.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(753664L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"08df8137-f6e9-4e56-8e51-1fe0f56b4a66"},{"name":"Add a step template to an existing job","id":"5eb2decf-d4f3-4dc2-bc70-a8df92cbbe9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\" : \"https://portal.mobilefieldreport.com/odata/StepListTemplates(232324432L)\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2324234343L)/$links/StepListTemplates","description":"<p>This endpoint makes an HTTP POST request to create a link to StepListTemplates for a specific Service Request. The request payload should contain the URL of the StepListTemplates to be linked.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>url</code> (string): The URL of the StepListTemplates to be linked.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response of this request is documented as a JSON schema.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(2324234343L)","$links","StepListTemplates"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"5eb2decf-d4f3-4dc2-bc70-a8df92cbbe9f"}],"id":"f3ae9c66-504f-4498-b3aa-5a3509a06f5c","description":"<p>Service Requests represents jobs in <strong>MFR</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Service Request's Id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Service Request's Name.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Service Request's external or ERP id.</td>\n</tr>\n<tr>\n<td>InvoiceId</td>\n<td>string</td>\n<td>Service Request's Id for it's invoices.</td>\n</tr>\n<tr>\n<td>ClosedAt</td>\n<td>datetime</td>\n<td>Date when the job was closed for the last time.</td>\n</tr>\n<tr>\n<td>ReleasedAt</td>\n<td>datetime</td>\n<td>Date when the job was released.</td>\n</tr>\n<tr>\n<td>WorkDoneAt</td>\n<td>datetime</td>\n<td>Date when the job was finished.</td>\n</tr>\n<tr>\n<td>TargetTimeInMinutes</td>\n<td>string</td>\n<td>Estimated time for the job to be finished given in minutes.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date when the job was last modified.</td>\n</tr>\n<tr>\n<td>DateOfCreation</td>\n<td>datetime</td>\n<td>Service Request's creation date.</td>\n</tr>\n<tr>\n<td>DueDateRangeStart</td>\n<td>datetime</td>\n<td>Earliest date when the job should be already dispatched.</td>\n</tr>\n<tr>\n<td>DueDateRangeEnd</td>\n<td>datetime</td>\n<td>Latest date when the job should be already dispatched.</td>\n</tr>\n<tr>\n<td>CostCenterId</td>\n<td>int</td>\n<td>Related Cost Center id.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Service Request's description. HTML tags instead of normal special characters shall be used.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>Service Request's state.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>object</td>\n<td>Service Request's custom created values.</td>\n</tr>\n<tr>\n<td>CurrentOwnerId</td>\n<td>int</td>\n<td>Service Request's creator user's id.</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td>int</td>\n<td>Service Request's related Company's id.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Service Request's location. It takes Service Object's location.</td>\n</tr>\n<tr>\n<td>Version</td>\n<td>int</td>\n<td>Service Request's version number. For system purposes.</td>\n</tr>\n<tr>\n<td>IsTemplate</td>\n<td>bool</td>\n<td>Wheter the Service Request is a template job.</td>\n</tr>\n<tr>\n<td>IsTemplateMobile</td>\n<td>bool</td>\n<td>If it's template, wheter the job is a template also for mobile devices.</td>\n</tr>\n<tr>\n<td>CostCenter</td>\n<td>object</td>\n<td>Related Cost Center Entity.</td>\n</tr>\n<tr>\n<td>Appointments</td>\n<td>array</td>\n<td>List of appointments related to the job.</td>\n</tr>\n<tr>\n<td>Items</td>\n<td>array</td>\n<td>List of items included in the job.</td>\n</tr>\n<tr>\n<td>Documents</td>\n<td>array</td>\n<td>List of documents attached to the job.</td>\n</tr>\n<tr>\n<td>Reports</td>\n<td>array</td>\n<td>List of reports and invoices generated for the job.</td>\n</tr>\n<tr>\n<td>Contacts</td>\n<td>array</td>\n<td>List of contacts related to the job.</td>\n</tr>\n<tr>\n<td>StepListTemplates</td>\n<td>array</td>\n<td>List of checklist templates included in the job.</td>\n</tr>\n<tr>\n<td>ServiceObjects</td>\n<td>array</td>\n<td>List that includes the job's service object and its products.</td>\n</tr>\n<tr>\n<td>CurrentOwner</td>\n<td>object</td>\n<td>User that created the job.</td>\n</tr>\n<tr>\n<td>Customer</td>\n<td>object</td>\n<td>Company or customer related to the job.</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array</td>\n<td>List of tags assigned to the job.</td>\n</tr>\n<tr>\n<td>Steps</td>\n<td>array</td>\n<td>List steps included in the job.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td>array</td>\n<td>List internal messages in the job.</td>\n</tr>\n<tr>\n<td>Qualifications</td>\n<td>array</td>\n<td>List of qualifications for the job.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9da8952b-6fda-4130-afa7-b147d6a5e2d5"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"084e70fc-3902-4cd6-9638-a21317071e99"}}],"_postman_id":"f3ae9c66-504f-4498-b3aa-5a3509a06f5c","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Appointment","item":[{"name":"Get Appointments","id":"5bea882d-9335-4399-b727-c72d9727502a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Appointments?$expand=Contacts","urlObject":{"path":["Appointments"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contacts"}],"variable":[]}},"response":[{"id":"7e201937-f092-46e1-8dd2-8d9b774f10cc","name":"Get Appointments","originalRequest":{"method":"GET","header":[],"url":{"raw":"portal.mobilefieldreport.com/odata/Appointments?$expand=Contacts","host":["portal","mobilefieldreport","com"],"path":["odata","Appointments"],"query":[{"key":"$expand","value":"Contacts"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Mar 2021 10:04:22 GMT"},{"key":"Content-Length","value":"81905"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Appointments\",\n    \"value\": [\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"418054144\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-10T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-10T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"418054145\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-11T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"448200717\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-09T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"463568898\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-24T14:00:00Z\",\n            \"StartDateTime\": \"2013-11-24T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"asdfasdf\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"517472315\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-22T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-22T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"Eugen da\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"519012353\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-17T08:00:00Z\",\n            \"StartDateTime\": \"2014-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": \"sdfaasdfasd<div>f</div><div>asdf</div><div>a</div><div>sdf</div>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"525500441\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-29T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"ghjgjhgjhkghhjk kj gkjgh\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"525500442\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-02-02T13:00:00Z\",\n            \"StartDateTime\": \"2014-02-02T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"ghjkghkj\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"553975808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-22T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-21T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"651853826\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"651853827\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"651853830\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-07T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"651853831\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1014923270\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-11T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": \"eeqrqwer\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1014923271\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": \"asdfasdfa sdfasdf\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1014923272\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"asdfasdfas dfasd\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1049296920\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T13:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1049296921\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T16:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"zugzuujhih<br>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1427734548\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-06-17T21:00:00Z\",\n            \"StartDateTime\": \"2015-06-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1956216893\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T15:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1956216894\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T17:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"1956216895\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T12:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"Internet termin\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2035122234\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-14T08:00:00Z\",\n            \"StartDateTime\": \"2016-01-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"<p>Der Techniker ist krank</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2040692752\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2040692753\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": \"<p>Frau und Kind sind krank<br></p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2047705089\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T10:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2047705090\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T17:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2047836160\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2047836161\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2047836163\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T14:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2072051746\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-19T15:00:00Z\",\n            \"StartDateTime\": \"2016-01-19T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"<p>Ist beim Zahnarzt</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2078441504\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-27T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"<p>Weiterbildung Vertrieb</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789316\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Norman\",\n                    \"LastName\": \"Ittner\",\n                    \"Email\": \"ni@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": \"017689898989\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-27T11:28:59\",\n                    \"Version\": 18,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2078441508\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-25T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789316\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789316\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2079293467\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2079293468\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"<p>Autowaschen</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2079293469\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-31T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2079293488\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-29T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"<p>Reperatur Wohnung</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2241429564\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2241429565\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2241429566\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T11:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": \"<p>Auto waschen</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2342944840\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-04-19T11:00:00Z\",\n            \"StartDateTime\": \"2016-04-19T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2431942668\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789316\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Norman\",\n                    \"LastName\": \"Ittner\",\n                    \"Email\": \"ni@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": \"017689898989\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-27T11:28:59\",\n                    \"Version\": 18,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2431942669\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789316\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789316\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2431942670\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T09:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": \"<p>zahnarzt</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2693726208\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-07-28T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"<p>asdfasd</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2693726253\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2694381591\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2732228609\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-08-03T15:00:00Z\",\n            \"StartDateTime\": \"2016-08-01T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2835939371\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-06T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-06T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": \"<p>da habe ich gearbeitet</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2848292899\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-16T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2848292900\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728451\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ophelia \",\n                    \"LastName\": \"Danninger\",\n                    \"Email\": \"od@simplias-demo.com\",\n                    \"JobTitle\": \"Auszubildende\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-12-20T15:16:02\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"2848292901\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-15T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-15T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728451\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728451\",\n            \"Note\": \"<p>Schulung</p><p><br></p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3042181120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T12:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3042181121\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T10:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3042181122\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T09:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3047915566\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-03T10:00:00Z\",\n            \"StartDateTime\": \"2016-11-03T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3091890180\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3091890191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-08T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-08T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3092086785\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T08:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3093790720\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3097657395\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T09:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": \"<p>gjhgjhhkhhik</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3097657396\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3097657397\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"3688923159\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Peter\",\n                    \"LastName\": \"Lindberg\",\n                    \"Email\": \"pl@simplias-demo.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-04-02T08:18:52\",\n                    \"Version\": 10,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3689447554\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-04-07T08:00:00Z\",\n            \"StartDateTime\": \"2017-04-07T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\",\n                \"3688923159\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"<p>test</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2021-03-01T15:30:15\",\n                    \"Version\": 1356,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"3936551038\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-05-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-05-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"410583043\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"410583043\",\n            \"Note\": \"<p>dfadfasdf</p>\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4002807862\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-06-18T15:00:00Z\",\n            \"StartDateTime\": \"2017-06-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4113760259\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T12:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4113760260\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T14:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4113760261\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4113760262\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4113760263\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T08:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4120641608\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-06T11:00:00Z\",\n            \"StartDateTime\": \"2017-07-06T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4091740160\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Johann\",\n                    \"LastName\": \"Dirks\",\n                    \"Email\": \"dirks@mfr-software.de\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-07-02T18:39:10\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4179001344\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4091740160\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4091740160\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4091740160\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Johann\",\n                    \"LastName\": \"Dirks\",\n                    \"Email\": \"dirks@mfr-software.de\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-07-02T18:39:10\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4179001345\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T13:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4091740160\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4091740160\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789316\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Norman\",\n                    \"LastName\": \"Ittner\",\n                    \"Email\": \"ni@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": \"017689898989\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-27T11:28:59\",\n                    \"Version\": 18,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4262789122\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789316\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789316\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4091740160\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Johann\",\n                    \"LastName\": \"Dirks\",\n                    \"Email\": \"dirks@mfr-software.de\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-07-02T18:39:10\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4263837698\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4091740160\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4091740160\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4263837699\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1049624579\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"asdfasdf\",\n                    \"LastName\": \"Planungshilfe\",\n                    \"Email\": \"planninghelper_0@simplias-info.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"234234234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-03T14:50:45\",\n                    \"Version\": 15,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4963139585\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T17:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1049624579\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1049624579\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4085940224\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Linda\",\n                    \"LastName\": \"Süß\",\n                    \"Email\": \"ls@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-26T16:15:02\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4963696640\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4085940224\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4085940224\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4193288212\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Mirko\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"doreen.salowski@simplias.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"15123915399\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-07-04T07:44:09\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"4963696641\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4193288212\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4193288212\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5152440362\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T12:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5152440363\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T15:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5207392257\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-24T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-22T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 11,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5207392258\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-25T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"440762368\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"440762368\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4193288212\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Mirko\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"doreen.salowski@simplias.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"15123915399\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-07-04T07:44:09\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5208309783\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-23T18:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4193288212\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4193288212\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 11,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5755895808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-04-28T10:00:00Z\",\n            \"StartDateTime\": \"2018-04-28T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"440762368\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"440762368\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5922127937\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T13:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789317\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Radu\",\n                    \"LastName\": \"Lupur \",\n                    \"Email\": \"meister@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017645454545\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-09-10T07:26:46\",\n                    \"Version\": 27,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5922127938\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789317\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789317\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4193288212\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Mirko\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"doreen.salowski@simplias.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"15123915399\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-07-04T07:44:09\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"5922127939\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"4193288212\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"4193288212\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"6019121215\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-06-14T09:00:00Z\",\n            \"StartDateTime\": \"2018-06-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"6150094849\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Anne\",\n                    \"LastName\": \"Schmidt\",\n                    \"Email\": \"doreen.salowski@gmx.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-07-04T13:36:04\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"6153994306\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-07-05T12:00:00Z\",\n            \"StartDateTime\": \"2018-07-05T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"6150094849\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"6150094849\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7027458049\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T12:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789316\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Norman\",\n                    \"LastName\": \"Ittner\",\n                    \"Email\": \"ni@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": \"017689898989\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-27T11:28:59\",\n                    \"Version\": 18,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7027589120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789316\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789316\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-10-19T13:24:35\",\n                    \"Version\": 74,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7054753914\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-10-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728449\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728449\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7121371191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-23T09:00:00Z\",\n            \"StartDateTime\": \"2018-11-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728452\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Besnik \",\n                    \"LastName\": \"Avdylaj \",\n                    \"Email\": \"frank.steuer@test.derr\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017606060606\",\n                    \"Telephone\": \"90273654\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2020-03-01T18:48:18\",\n                    \"Version\": 43,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7160004684\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-29T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728452\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728452\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275789316\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Norman\",\n                    \"LastName\": \"Ittner\",\n                    \"Email\": \"ni@simplias-demo.com\",\n                    \"JobTitle\": \"Technikerin\",\n                    \"MobilePhone\": \"017689898989\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-27T11:28:59\",\n                    \"Version\": 18,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7160004685\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-30T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275789316\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275789316\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 36,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7222263815\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-03T12:00:00Z\",\n            \"StartDateTime\": \"2018-12-03T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"442728450\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"442728450\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"6421905416\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Mirko\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"mirko.friedrich@blandland.de\",\n                    \"JobTitle\": \"Entwickler\",\n                    \"MobilePhone\": \"15736899926\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-10-09T12:49:08\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7234977933\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-10-02T18:00:00Z\",\n            \"StartDateTime\": \"2018-10-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"6421905416\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"6421905416\",\n            \"Note\": null\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691013\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Hans\",\n                    \"LastName\": \"Werk\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Techniker\",\n                    \"MobilePhone\": \"017687878787\",\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-11T08:56:37\",\n                    \"Version\": 16,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Id\": \"7278755843\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-09T18:00:00Z\",\n            \"StartDateTime\": \"2018-12-09T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [\n                \"1275691013\"\n            ],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"1275691013\",\n            \"Note\": null\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Appointments?$expand=Contacts&$skip=100\"\n}"}],"_postman_id":"5bea882d-9335-4399-b727-c72d9727502a"},{"name":"Create a Appointment Vacation","id":"408ec077-a958-437f-90f0-507e7852f87b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Vacation\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\",\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Appointments","urlObject":{"path":["Appointments"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"98658e64-39ec-4827-beef-8a8d88262f38","name":"Create a Appointment Vacation","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Vacation\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\",\r\n}","options":{"raw":{"language":"json"}}},"url":"portal.mobilefieldreport.com/odata/Appointments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Mar 2021 10:02:59 GMT"},{"key":"Content-Length","value":"35317"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Appointments\",\n    \"value\": [\n        {\n            \"Id\": \"418054144\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-10T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-10T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"418054145\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-11T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"448200717\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-09T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"463568898\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-24T14:00:00Z\",\n            \"StartDateTime\": \"2013-11-24T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdf\"\n        },\n        {\n            \"Id\": \"517472315\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-22T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-22T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Eugen da\"\n        },\n        {\n            \"Id\": \"519012353\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-17T08:00:00Z\",\n            \"StartDateTime\": \"2014-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"sdfaasdfasd<div>f</div><div>asdf</div><div>a</div><div>sdf</div>\"\n        },\n        {\n            \"Id\": \"525500441\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-29T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjgjhgjhkghhjk kj gkjgh\"\n        },\n        {\n            \"Id\": \"525500442\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-02-02T13:00:00Z\",\n            \"StartDateTime\": \"2014-02-02T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjkghkj\"\n        },\n        {\n            \"Id\": \"553975808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-22T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-21T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"651853826\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853827\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853830\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-07T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853831\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1014923270\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-11T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"eeqrqwer\"\n        },\n        {\n            \"Id\": \"1014923271\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfa sdfasdf\"\n        },\n        {\n            \"Id\": \"1014923272\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfas dfasd\"\n        },\n        {\n            \"Id\": \"1049296920\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T13:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1049296921\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T16:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"zugzuujhih<br>\"\n        },\n        {\n            \"Id\": \"1427734548\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-06-17T21:00:00Z\",\n            \"StartDateTime\": \"2015-06-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216893\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T15:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216894\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T17:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216895\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T12:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Internet termin\"\n        },\n        {\n            \"Id\": \"2035122234\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-14T08:00:00Z\",\n            \"StartDateTime\": \"2016-01-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Der Techniker ist krank</p>\"\n        },\n        {\n            \"Id\": \"2040692752\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2040692753\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Frau und Kind sind krank<br></p>\"\n        },\n        {\n            \"Id\": \"2047705089\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T10:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047705090\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T17:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836160\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836161\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836163\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T14:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2072051746\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-19T15:00:00Z\",\n            \"StartDateTime\": \"2016-01-19T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Ist beim Zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2078441504\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-27T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Weiterbildung Vertrieb</p>\"\n        },\n        {\n            \"Id\": \"2078441508\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-25T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293467\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293468\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Autowaschen</p>\"\n        },\n        {\n            \"Id\": \"2079293469\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-31T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293488\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-29T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Reperatur Wohnung</p>\"\n        },\n        {\n            \"Id\": \"2241429564\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429565\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429566\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T11:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Auto waschen</p>\"\n        },\n        {\n            \"Id\": \"2342944840\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-04-19T11:00:00Z\",\n            \"StartDateTime\": \"2016-04-19T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942668\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942669\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942670\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T09:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2693726208\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-07-28T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>asdfasd</p>\"\n        },\n        {\n            \"Id\": \"2693726253\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2694381591\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2732228609\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-08-03T15:00:00Z\",\n            \"StartDateTime\": \"2016-08-01T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2835939371\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-06T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-06T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>da habe ich gearbeitet</p>\"\n        },\n        {\n            \"Id\": \"2848292899\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-16T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292900\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292901\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-15T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-15T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Schulung</p><p><br></p>\"\n        },\n        {\n            \"Id\": \"3042181120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T12:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181121\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T10:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181122\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T09:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3047915566\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-03T10:00:00Z\",\n            \"StartDateTime\": \"2016-11-03T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890180\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-08T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-08T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3092086785\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T08:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3093790720\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657395\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T09:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>gjhgjhhkhhik</p>\"\n        },\n        {\n            \"Id\": \"3097657396\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657397\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3689447554\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-04-07T08:00:00Z\",\n            \"StartDateTime\": \"2017-04-07T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>test</p>\"\n        },\n        {\n            \"Id\": \"3936551038\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-05-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-05-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>dfadfasdf</p>\"\n        },\n        {\n            \"Id\": \"4002807862\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-06-18T15:00:00Z\",\n            \"StartDateTime\": \"2017-06-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760259\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T12:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760260\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T14:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760261\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760262\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760263\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T08:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4120641608\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-06T11:00:00Z\",\n            \"StartDateTime\": \"2017-07-06T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001344\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001345\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T13:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4262789122\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837698\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837699\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963139585\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T17:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696640\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696641\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440362\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T12:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440363\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T15:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392257\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-24T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-22T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392258\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-25T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5208309783\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-23T18:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5755895808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-04-28T10:00:00Z\",\n            \"StartDateTime\": \"2018-04-28T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127937\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T13:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127938\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127939\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6019121215\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-06-14T09:00:00Z\",\n            \"StartDateTime\": \"2018-06-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6153994306\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-07-05T12:00:00Z\",\n            \"StartDateTime\": \"2018-07-05T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027458049\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T12:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027589120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7054753914\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-10-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7121371191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-23T09:00:00Z\",\n            \"StartDateTime\": \"2018-11-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004684\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-29T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004685\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-30T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7222263815\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-03T12:00:00Z\",\n            \"StartDateTime\": \"2018-12-03T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7234977933\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-10-02T18:00:00Z\",\n            \"StartDateTime\": \"2018-10-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7278755843\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-09T18:00:00Z\",\n            \"StartDateTime\": \"2018-12-09T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Appointments?$skip=100\"\n}"}],"_postman_id":"408ec077-a958-437f-90f0-507e7852f87b"},{"name":"Create an Appointment Illness","id":"b2ef629b-52a3-497f-b488-5c8f830a1397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Illness\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\"\r\n}","options":{"raw":{"language":"json"}}},"url":"portal.mobilefieldreport.com/odata/Appointments","urlObject":{"path":["odata","Appointments"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[{"id":"d1d3ec3d-a661-4056-a352-dd35e26e911d","name":"Create an Appointment Illness","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Illness\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\"\r\n}","options":{"raw":{"language":"json"}}},"url":"portal.mobilefieldreport.com/odata/Appointments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Mar 2021 10:03:33 GMT"},{"key":"Content-Length","value":"35317"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Appointments\",\n    \"value\": [\n        {\n            \"Id\": \"418054144\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-10T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-10T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"418054145\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-11T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"448200717\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-09T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"463568898\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-24T14:00:00Z\",\n            \"StartDateTime\": \"2013-11-24T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdf\"\n        },\n        {\n            \"Id\": \"517472315\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-22T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-22T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Eugen da\"\n        },\n        {\n            \"Id\": \"519012353\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-17T08:00:00Z\",\n            \"StartDateTime\": \"2014-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"sdfaasdfasd<div>f</div><div>asdf</div><div>a</div><div>sdf</div>\"\n        },\n        {\n            \"Id\": \"525500441\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-29T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjgjhgjhkghhjk kj gkjgh\"\n        },\n        {\n            \"Id\": \"525500442\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-02-02T13:00:00Z\",\n            \"StartDateTime\": \"2014-02-02T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjkghkj\"\n        },\n        {\n            \"Id\": \"553975808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-22T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-21T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"651853826\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853827\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853830\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-07T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853831\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1014923270\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-11T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"eeqrqwer\"\n        },\n        {\n            \"Id\": \"1014923271\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfa sdfasdf\"\n        },\n        {\n            \"Id\": \"1014923272\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfas dfasd\"\n        },\n        {\n            \"Id\": \"1049296920\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T13:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1049296921\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T16:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"zugzuujhih<br>\"\n        },\n        {\n            \"Id\": \"1427734548\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-06-17T21:00:00Z\",\n            \"StartDateTime\": \"2015-06-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216893\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T15:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216894\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T17:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216895\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T12:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Internet termin\"\n        },\n        {\n            \"Id\": \"2035122234\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-14T08:00:00Z\",\n            \"StartDateTime\": \"2016-01-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Der Techniker ist krank</p>\"\n        },\n        {\n            \"Id\": \"2040692752\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2040692753\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Frau und Kind sind krank<br></p>\"\n        },\n        {\n            \"Id\": \"2047705089\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T10:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047705090\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T17:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836160\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836161\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836163\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T14:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2072051746\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-19T15:00:00Z\",\n            \"StartDateTime\": \"2016-01-19T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Ist beim Zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2078441504\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-27T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Weiterbildung Vertrieb</p>\"\n        },\n        {\n            \"Id\": \"2078441508\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-25T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293467\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293468\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Autowaschen</p>\"\n        },\n        {\n            \"Id\": \"2079293469\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-31T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293488\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-29T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Reperatur Wohnung</p>\"\n        },\n        {\n            \"Id\": \"2241429564\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429565\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429566\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T11:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Auto waschen</p>\"\n        },\n        {\n            \"Id\": \"2342944840\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-04-19T11:00:00Z\",\n            \"StartDateTime\": \"2016-04-19T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942668\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942669\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942670\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T09:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2693726208\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-07-28T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>asdfasd</p>\"\n        },\n        {\n            \"Id\": \"2693726253\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2694381591\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2732228609\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-08-03T15:00:00Z\",\n            \"StartDateTime\": \"2016-08-01T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2835939371\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-06T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-06T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>da habe ich gearbeitet</p>\"\n        },\n        {\n            \"Id\": \"2848292899\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-16T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292900\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292901\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-15T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-15T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Schulung</p><p><br></p>\"\n        },\n        {\n            \"Id\": \"3042181120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T12:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181121\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T10:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181122\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T09:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3047915566\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-03T10:00:00Z\",\n            \"StartDateTime\": \"2016-11-03T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890180\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-08T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-08T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3092086785\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T08:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3093790720\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657395\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T09:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>gjhgjhhkhhik</p>\"\n        },\n        {\n            \"Id\": \"3097657396\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657397\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3689447554\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-04-07T08:00:00Z\",\n            \"StartDateTime\": \"2017-04-07T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>test</p>\"\n        },\n        {\n            \"Id\": \"3936551038\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-05-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-05-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>dfadfasdf</p>\"\n        },\n        {\n            \"Id\": \"4002807862\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-06-18T15:00:00Z\",\n            \"StartDateTime\": \"2017-06-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760259\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T12:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760260\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T14:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760261\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760262\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760263\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T08:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4120641608\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-06T11:00:00Z\",\n            \"StartDateTime\": \"2017-07-06T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001344\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001345\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T13:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4262789122\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837698\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837699\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963139585\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T17:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696640\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696641\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440362\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T12:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440363\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T15:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392257\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-24T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-22T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392258\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-25T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5208309783\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-23T18:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5755895808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-04-28T10:00:00Z\",\n            \"StartDateTime\": \"2018-04-28T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127937\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T13:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127938\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127939\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6019121215\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-06-14T09:00:00Z\",\n            \"StartDateTime\": \"2018-06-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6153994306\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-07-05T12:00:00Z\",\n            \"StartDateTime\": \"2018-07-05T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027458049\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T12:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027589120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7054753914\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-10-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7121371191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-23T09:00:00Z\",\n            \"StartDateTime\": \"2018-11-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004684\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-29T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004685\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-30T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7222263815\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-03T12:00:00Z\",\n            \"StartDateTime\": \"2018-12-03T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7234977933\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-10-02T18:00:00Z\",\n            \"StartDateTime\": \"2018-10-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7278755843\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-09T18:00:00Z\",\n            \"StartDateTime\": \"2018-12-09T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Appointments?$skip=100\"\n}"}],"_postman_id":"b2ef629b-52a3-497f-b488-5c8f830a1397"},{"name":"Create an Appointment Other","id":"b1d74141-68c9-4f66-a92d-8e78fd67c9d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Vacation\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\",\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Appointments","urlObject":{"path":["Appointments"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"e0878ab1-3206-4212-a697-1df4c151a9ae","name":"Create an Appointment Other","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Type\": \"Vacation\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\",\r\n}","options":{"raw":{"language":"json"}}},"url":"portal.mobilefieldreport.com/odata/Appointments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Mar 2021 10:04:52 GMT"},{"key":"Content-Length","value":"35317"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Appointments\",\n    \"value\": [\n        {\n            \"Id\": \"418054144\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-10T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-10T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"418054145\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-10-11T15:00:00Z\",\n            \"StartDateTime\": \"2013-10-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"448200717\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-09T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"463568898\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-24T14:00:00Z\",\n            \"StartDateTime\": \"2013-11-24T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdf\"\n        },\n        {\n            \"Id\": \"517472315\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-22T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-22T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Eugen da\"\n        },\n        {\n            \"Id\": \"519012353\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-17T08:00:00Z\",\n            \"StartDateTime\": \"2014-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"sdfaasdfasd<div>f</div><div>asdf</div><div>a</div><div>sdf</div>\"\n        },\n        {\n            \"Id\": \"525500441\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-01-29T16:00:00Z\",\n            \"StartDateTime\": \"2014-01-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjgjhgjhkghhjk kj gkjgh\"\n        },\n        {\n            \"Id\": \"525500442\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-02-02T13:00:00Z\",\n            \"StartDateTime\": \"2014-02-02T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"ghjkghkj\"\n        },\n        {\n            \"Id\": \"553975808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2013-11-22T16:00:00Z\",\n            \"StartDateTime\": \"2013-11-21T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"651853826\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853827\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-13T17:00:00Z\",\n            \"StartDateTime\": \"2014-04-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853830\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-07T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"651853831\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-04-12T15:00:00Z\",\n            \"StartDateTime\": \"2014-04-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1014923270\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-11T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"eeqrqwer\"\n        },\n        {\n            \"Id\": \"1014923271\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfa sdfasdf\"\n        },\n        {\n            \"Id\": \"1014923272\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-11-12T16:00:00Z\",\n            \"StartDateTime\": \"2014-11-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"asdfasdfas dfasd\"\n        },\n        {\n            \"Id\": \"1049296920\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T13:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"\"\n        },\n        {\n            \"Id\": \"1049296921\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2014-12-17T16:00:00Z\",\n            \"StartDateTime\": \"2014-12-17T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"zugzuujhih<br>\"\n        },\n        {\n            \"Id\": \"1427734548\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-06-17T21:00:00Z\",\n            \"StartDateTime\": \"2015-06-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216893\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T15:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216894\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T17:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"1956216895\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2015-12-17T12:00:00Z\",\n            \"StartDateTime\": \"2015-12-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"Internet termin\"\n        },\n        {\n            \"Id\": \"2035122234\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-14T08:00:00Z\",\n            \"StartDateTime\": \"2016-01-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Der Techniker ist krank</p>\"\n        },\n        {\n            \"Id\": \"2040692752\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2040692753\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-15T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-15T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Frau und Kind sind krank<br></p>\"\n        },\n        {\n            \"Id\": \"2047705089\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T10:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047705090\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T17:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836160\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836161\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T11:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2047836163\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-17T14:00:00Z\",\n            \"StartDateTime\": \"2016-01-17T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2072051746\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-19T15:00:00Z\",\n            \"StartDateTime\": \"2016-01-19T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Ist beim Zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2078441504\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-27T16:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Weiterbildung Vertrieb</p>\"\n        },\n        {\n            \"Id\": \"2078441508\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-25T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293467\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293468\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-01-28T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Autowaschen</p>\"\n        },\n        {\n            \"Id\": \"2079293469\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-31T18:00:00Z\",\n            \"StartDateTime\": \"2016-01-25T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2079293488\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-01-29T19:00:00Z\",\n            \"StartDateTime\": \"2016-01-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Reperatur Wohnung</p>\"\n        },\n        {\n            \"Id\": \"2241429564\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429565\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T18:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2241429566\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-03-16T11:00:00Z\",\n            \"StartDateTime\": \"2016-03-16T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Auto waschen</p>\"\n        },\n        {\n            \"Id\": \"2342944840\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-04-19T11:00:00Z\",\n            \"StartDateTime\": \"2016-04-19T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942668\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942669\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T15:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2431942670\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-05-17T09:00:00Z\",\n            \"StartDateTime\": \"2016-05-17T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>zahnarzt</p>\"\n        },\n        {\n            \"Id\": \"2693726208\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-28T12:00:00Z\",\n            \"StartDateTime\": \"2016-07-28T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>asdfasd</p>\"\n        },\n        {\n            \"Id\": \"2693726253\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2694381591\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-07-29T11:00:00Z\",\n            \"StartDateTime\": \"2016-07-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2732228609\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-08-03T15:00:00Z\",\n            \"StartDateTime\": \"2016-08-01T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2835939371\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-06T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-06T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>da habe ich gearbeitet</p>\"\n        },\n        {\n            \"Id\": \"2848292899\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-16T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292900\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"2848292901\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-09-15T15:00:00Z\",\n            \"StartDateTime\": \"2016-09-15T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>Schulung</p><p><br></p>\"\n        },\n        {\n            \"Id\": \"3042181120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T12:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181121\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T10:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3042181122\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-10-31T09:00:00Z\",\n            \"StartDateTime\": \"2016-10-31T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3047915566\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-03T10:00:00Z\",\n            \"StartDateTime\": \"2016-11-03T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890180\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3091890191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-08T11:00:00Z\",\n            \"StartDateTime\": \"2016-11-08T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3092086785\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T08:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3093790720\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-13T15:00:00Z\",\n            \"StartDateTime\": \"2016-11-13T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657395\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T09:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>gjhgjhhkhhik</p>\"\n        },\n        {\n            \"Id\": \"3097657396\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3097657397\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2016-11-29T13:00:00Z\",\n            \"StartDateTime\": \"2016-11-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"3689447554\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-04-07T08:00:00Z\",\n            \"StartDateTime\": \"2017-04-07T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>test</p>\"\n        },\n        {\n            \"Id\": \"3936551038\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-05-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-05-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": \"<p>dfadfasdf</p>\"\n        },\n        {\n            \"Id\": \"4002807862\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-06-18T15:00:00Z\",\n            \"StartDateTime\": \"2017-06-12T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760259\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T12:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760260\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T14:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T13:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760261\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760262\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4113760263\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-02T08:00:00Z\",\n            \"StartDateTime\": \"2017-07-02T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4120641608\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-06T11:00:00Z\",\n            \"StartDateTime\": \"2017-07-06T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001344\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4179001345\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-16T13:00:00Z\",\n            \"StartDateTime\": \"2017-07-16T10:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4262789122\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T15:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837698\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T09:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4263837699\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-07-30T07:00:00Z\",\n            \"StartDateTime\": \"2017-07-30T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963139585\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T17:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T14:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696640\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"4963696641\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2017-12-08T14:00:00Z\",\n            \"StartDateTime\": \"2017-12-08T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440362\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T12:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5152440363\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-12T15:00:00Z\",\n            \"StartDateTime\": \"2018-01-12T12:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392257\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-24T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-22T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5207392258\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-25T16:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5208309783\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-01-23T18:00:00Z\",\n            \"StartDateTime\": \"2018-01-23T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5755895808\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-04-28T10:00:00Z\",\n            \"StartDateTime\": \"2018-04-28T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127937\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T13:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127938\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"5922127939\",\n            \"Version\": 2,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-05-29T12:00:00Z\",\n            \"StartDateTime\": \"2018-05-29T08:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6019121215\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-06-14T09:00:00Z\",\n            \"StartDateTime\": \"2018-06-14T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"6153994306\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-07-05T12:00:00Z\",\n            \"StartDateTime\": \"2018-07-05T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027458049\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T12:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7027589120\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-11T11:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7054753914\",\n            \"Version\": 3,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-11T16:00:00Z\",\n            \"StartDateTime\": \"2018-10-29T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7121371191\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-23T09:00:00Z\",\n            \"StartDateTime\": \"2018-11-23T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004684\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-29T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7160004685\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-11-30T16:00:00Z\",\n            \"StartDateTime\": \"2018-11-26T06:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7222263815\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-03T12:00:00Z\",\n            \"StartDateTime\": \"2018-12-03T07:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7234977933\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-10-02T18:00:00Z\",\n            \"StartDateTime\": \"2018-10-02T05:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"7278755843\",\n            \"Version\": 1,\n            \"State\": \"NotVisited\",\n            \"Type\": \"MFR.Domain.DTO.AppointmentDto\",\n            \"EndDateTime\": \"2018-12-09T18:00:00Z\",\n            \"StartDateTime\": \"2018-12-09T09:00:00Z\",\n            \"DrivingDistanceFrom\": null,\n            \"DrivingDistanceTo\": null,\n            \"WasReadOnClientSide\": false,\n            \"ContactIds\": [],\n            \"ServiceRequestId\": \"0\",\n            \"ContactId\": \"0\",\n            \"Note\": null\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Appointments?$skip=100\"\n}"}],"_postman_id":"b1d74141-68c9-4f66-a92d-8e78fd67c9d8"},{"name":"Update Appointment","id":"acc5d564-ba73-4642-8ad5-0c3cb3f2c6a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": \"23423423\",\r\n    \"Type\": \"Vacation\",\r\n    \"State\": \"NotVisisted\",\r\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\r\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\r\n    \"ContactId\": \"10979540996\",\r\n    \"ContactIds\": []","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Appointments(1277954L)","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Appointments(1277954L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"acc5d564-ba73-4642-8ad5-0c3cb3f2c6a1"},{"name":"Delete Appointment","id":"c48959f5-c1e2-47d7-92bc-26587de8a918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Appointments(753664L)","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Appointments(753664L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"c48959f5-c1e2-47d7-92bc-26587de8a918"}],"id":"fc210d55-6047-449f-befe-d4415c7336b1","description":"<p>Appointments represent Appointments for a job, Vacations, Illness and other Appointments for technicians (Contacts) in <strong>MFR</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>long</td>\n<td>Appointments's Id</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>Appointment State (NotVisited, InProgress, IsWorkDone, Rejected)</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Appointment Type (Standard, Vacation, Illness, Other, OtherWithoutTime)</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>Start date time</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>End date time</td>\n</tr>\n<tr>\n<td>WasReadOnClientSide</td>\n<td>bool</td>\n<td>User has seen the appointment</td>\n</tr>\n<tr>\n<td>Contacts</td>\n<td>array</td>\n<td>Container of contacts for this appointment</td>\n</tr>\n<tr>\n<td>ServiceRequest</td>\n<td>ServiceRequest</td>\n<td>Corresponding ServiceRequest or Project</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Note for the apopintment</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fc210d55-6047-449f-befe-d4415c7336b1","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Service Object","item":[{"name":"Get Service Objects","id":"5da65cf1-80ae-4a73-b665-3a6ba8bdd28c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects?$expand=Contacts,Company,Product,Tags","description":"<p>Get all Service Objects.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contacts,Company,Product,Tags"}],"variable":[]}},"response":[{"id":"985a0ba8-1e89-49aa-8618-d06c38579bf5","name":"Get Service Objects (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceObjects?$expand=Contacts,Company,Product,Tags","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","ServiceObjects"],"query":[{"key":"$expand","value":"Contacts,Company,Product,Tags"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 15:15:13 GMT"},{"key":"Content-Length","value":"34410"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceObjects\",\n    \"value\": [\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 35,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"5057052679\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Neureiter\",\n                    \"Email\": \"frank.neureiter@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"234234234234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-12-27T10:53:37\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"410550274\",\n                    \"AddressString\": \"Weidehorst 28\",\n                    \"Postal\": \"32609\",\n                    \"City\": \"Hüllhorst\",\n                    \"State\": null,\n                    \"Country\": null,\n                    \"Longitude\": 8.696145,\n                    \"Latitude\": 52.24972,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Product\": {\n                \"Id\": \"503250944\",\n                \"Version\": 2,\n                \"Name\": \"OC\",\n                \"SubKey\": null,\n                \"Description\": null,\n                \"DateModified\": \"2017-08-06T11:34:02\",\n                \"MappingId\": null,\n                \"CustomValueStepTemplateId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5300846593\",\n                    \"Version\": 14,\n                    \"Name\": \"Mobilfunk\",\n                    \"ColorDefinition\": \"#2ECC40\",\n                    \"Type\": \"ServiceObject\"\n                },\n                {\n                    \"Id\": \"1049919488\",\n                    \"Version\": 15,\n                    \"Name\": \"SLA1\",\n                    \"ColorDefinition\": \"#1A237E\",\n                    \"Type\": \"ServiceRequest\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"410550274\",\n                \"AddressString\": \"Weidehorst 28\",\n                \"Postal\": \"32609\",\n                \"City\": \"Hüllhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.696145,\n                \"Latitude\": 52.24972,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"410615810\",\n            \"Name\": \"Frank Neureiter OL Links\",\n            \"Note\": \"Sdfasdfasdf\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-03T11:00:28\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 60,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"410517505\",\n            \"ProductId\": \"503250944\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 10,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Product\": {\n                \"Id\": \"503250944\",\n                \"Version\": 2,\n                \"Name\": \"OC\",\n                \"SubKey\": null,\n                \"Description\": null,\n                \"DateModified\": \"2017-08-06T11:34:02\",\n                \"MappingId\": null,\n                \"CustomValueStepTemplateId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"440729600\",\n                \"AddressString\": \"Karlsbadstraße\",\n                \"Postal\": \"26127\",\n                \"City\": \"Oldenburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.18636823423788,\n                \"Latitude\": 53.16562323,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"440795136\",\n            \"Name\": \"Atlas Maschinen GmbH\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-23T19:10:04\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 25,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"503250944\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 10,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"7027195904\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ansprechpartner\",\n                    \"LastName\": \"Franz\",\n                    \"Email\": \"franz.derAnsprechpartner@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"4234234\",\n                    \"Telephone\": \"2134234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-11T20:16:02\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"2290679808\",\n                    \"Version\": 16,\n                    \"Name\": \"vertrieb\",\n                    \"ColorDefinition\": \"#ff00ff\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"440729601\",\n                \"AddressString\": \"Stedinger Str. 32\",\n                \"Postal\": \"27751\",\n                \"City\": \"Delmenhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.65002,\n                \"Latitude\": 53.08711,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"440795137\",\n            \"Name\": \"FAA 02 (142702)\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-02T22:34:44\",\n            \"ExternalId\": \"26234523\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 18,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"2290679808\",\n                    \"Version\": 16,\n                    \"Name\": \"vertrieb\",\n                    \"ColorDefinition\": \"#ff00ff\",\n                    \"Type\": \"ServiceObject\"\n                },\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"444170279\",\n                \"AddressString\": \"Lützner Straße 11\",\n                \"Postal\": \"04177\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 12.33679,\n                \"Latitude\": 51.33526,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"444235782\",\n            \"Name\": \"This is a service object \",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-04-15T11:09:06\",\n            \"ExternalId\": \"dfadfasdfadsf\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 24,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2019-03-21T08:09:59\",\n                    \"Version\": 67,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1194557446\",\n                \"AddressString\": \"Neureuter Strasse 37\",\n                \"Postal\": \"76185\",\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.35742,\n                \"Latitude\": 49.02634,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1194590211\",\n            \"Name\": \"Filiale Neureuter Strasse\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-03-15T09:31:41\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 13,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1275625473\",\n                \"Version\": 28,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Gärtnerei Calla\",\n                \"Note\": \"Riecht gut\",\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-15T07:39:38\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1428127758\",\n                \"AddressString\": \"Blumenstr. 3\",\n                \"Postal\": \"82140\",\n                \"City\": \"Olching\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 11.33824,\n                \"Latitude\": 48.21006,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1428389900\",\n            \"Name\": \"Klimaanlage\",\n            \"Note\": \"<p>as dfasdf</p><p>a sdf</p><p>as</p><p>dfa</p><p>sdf</p><p>asdfasdfasdf</p>\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-01-15T08:44:26\",\n            \"ExternalId\": \"9783864892332\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 28,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1275625473\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1497137209\",\n                \"AddressString\": \"Baaderstraße 43\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.577426910400391,\n                \"Latitude\": 48.1294059753418,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1497104453\",\n            \"Name\": \"Filiale 323\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-12-16T11:05:22\",\n            \"ExternalId\": \"3232\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 3,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2019-09-09T13:43:32\",\n                    \"Version\": 1252,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1641447431\",\n                \"Version\": 4,\n                \"IsPhysicalPerson\": true,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Tamina Wüst\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-09-07T12:06:26\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1641480239\",\n                \"AddressString\": \"frank\",\n                \"Postal\": null,\n                \"City\": \"Frankenberg/Sachsen\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 1,\n                \"Latitude\": 1,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1641545783\",\n            \"Name\": \"Tamina Wüst\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-01-10T12:57:20\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 8,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1641447431\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 35,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5300846593\",\n                    \"Version\": 14,\n                    \"Name\": \"Mobilfunk\",\n                    \"ColorDefinition\": \"#2ECC40\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1674870806\",\n                \"AddressString\": \"Moritzburger Weg\",\n                \"Postal\": \"01109\",\n                \"City\": \"Dresden\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.75775,\n                \"Latitude\": 51.1077,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1674838040\",\n            \"Name\": \"Filiale DM in Dresden\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-21T08:06:18\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 6,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"7830274048\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Testkandidat\",\n                    \"Email\": \"\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"23423 234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-01-31T13:10:27\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1691058226\",\n                \"AddressString\": \"Neureuter Straße 3, K\",\n                \"Postal\": null,\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.3540096282958984,\n                \"Latitude\": 49.017768859863281,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1691484220\",\n            \"Name\": \"DM Filiale 563\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-28T12:05:55\",\n            \"ExternalId\": \"633\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 22,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1195147264\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Dirk\",\n                    \"LastName\": \"Träutlein\",\n                    \"Email\": \"frank.test@test.de\",\n                    \"JobTitle\": \"manager\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"08654 57872266\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-04-20T15:31:06\",\n                    \"Version\": 6,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1716617243\",\n                \"AddressString\": \"Baaderstraße 32\",\n                \"Postal\": \"04157\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.38036,\n                \"Latitude\": 51.37153,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1716682779\",\n            \"Name\": \"Super Store 323\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-12-16T11:05:27\",\n            \"ExternalId\": \"43\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 11,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1729167360\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"04416\",\n                \"City\": \"Markkleeberg\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 12.349449,\n                \"Latitude\": 51.264988,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1729134592\",\n            \"Name\": \"Neuer ServiceObjekt\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2017-06-04T19:00:33\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 10,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1733787674\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"frank\",\n                    \"LastName\": \"Pascal\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"test3\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"38234234\",\n                    \"Fax\": null,\n                    \"Note\": \"\",\n                    \"DateModified\": \"2016-03-17T12:05:21\",\n                    \"Version\": 7,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1733754929\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"13051\",\n                \"City\": \"Berlin\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.48313,\n                \"Latitude\": 52.57398,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1733722160\",\n            \"Name\": \"Frank Pascal\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-10-06T14:41:52\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1794211858\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Stubert\",\n                    \"Email\": \"frank.stubert@krankenhaus.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-10-27T09:21:34\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"3674374162\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"109058\",\n                \"Name\": \"Isaak\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-03T14:48:54\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1794277406\",\n                \"AddressString\": \"Klenzestraße 37\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.574861526489258,\n                \"Latitude\": 48.1307487487793,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1794834469\",\n            \"Name\": \"Krankenhaus Station 3\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-03-14T14:05:19\",\n            \"ExternalId\": \"323423\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 5,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"3674374162\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1797816320\",\n                \"AddressString\": \"as\",\n                \"Postal\": null,\n                \"City\": \"Aschaffenburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"1797554177\",\n            \"Name\": \"asdfasdfadf\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-02-20T11:55:28\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1804075016\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Tobias\",\n                    \"LastName\": \"Kalmann\",\n                    \"Email\": \"jan.hoeppner@simplias.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"\",\n                    \"Telephone\": \"\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-01-29T15:05:55\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1804140561\",\n                \"AddressString\": \"Baaderstraße 43\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.57743,\n                \"Latitude\": 48.12941,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1805811735\",\n            \"Name\": \"Spezialkunde\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-10-29T09:28:17\",\n            \"ExternalId\": \"4323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1876262953\",\n                \"AddressString\": \"Kölner Straße 32\",\n                \"Postal\": \"53819\",\n                \"City\": \"Neunkirchen-Seelscheid\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 7.344791,\n                \"Latitude\": 50.8462808,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1876328477\",\n            \"Name\": \"Neunkirchen Agenitor\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-11-19T12:59:18\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1876262954\",\n                \"AddressString\": \"Wahnbachtalstraße 32\",\n                \"Postal\": \"53721\",\n                \"City\": \"Siegburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 7.2299506,\n                \"Latitude\": 50.7918582,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1876328478\",\n            \"Name\": \"Agenitor 2G \",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-11-19T13:00:58\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2071330842\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"Satow \",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.547320365905762,\n                \"Latitude\": 51.334819793701172,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2072510481\",\n            \"Name\": \"Windkraftanlage\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-02-20T09:51:39\",\n            \"ExternalId\": \"3234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 5,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2079653904\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04425\",\n                \"City\": \"Taucha\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.49098,\n                \"Latitude\": 51.39103,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2079621135\",\n            \"Name\": \"Test\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-02-15T07:57:52\",\n            \"ExternalId\": \"323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2079457314\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank \",\n                    \"LastName\": \"Horstberger\",\n                    \"Email\": \"frank.horstberger@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"uiioopppppppii\",\n                    \"Telephone\": \"657667878888\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-07-23T05:28:01\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2079424578\",\n                \"AddressString\": \"Petersweg 32\",\n                \"Postal\": \"31319\",\n                \"City\": \"Sehnde\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 9.8899466,\n                \"Latitude\": 52.3483201,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2079785023\",\n            \"Name\": \"Anlagen Büdost\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-01-27T14:43:46\",\n            \"ExternalId\": \"32354\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2116190216\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Herr\",\n                    \"LastName\": \"Bart\",\n                    \"Email\": \"herrbert@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-02-05T13:17:33\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2116255761\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04463\",\n                \"City\": \"Großpösna\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.47244,\n                \"Latitude\": 51.24667,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2116157457\",\n            \"Name\": \"Tankstelle 32\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-02-05T13:21:32\",\n            \"ExternalId\": \"434\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 3,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363293714\",\n                \"AddressString\": \"adjearj\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 121.0317071,\n                \"Latitude\": 14.7585447,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2363260939\",\n            \"Name\": \"dajedj\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:38:16\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490319\",\n                \"AddressString\": \"yfgmyfgm\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457553\",\n            \"Name\": \"tydmjymyfm\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:33:53\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490320\",\n                \"AddressString\": \"dyfndfn\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457554\",\n            \"Name\": \"ydfndyfn\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:34:13\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490321\",\n                \"AddressString\": \"ydndyn\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457555\",\n            \"Name\": \"dyndyn\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:34:18\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2370633739\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"asdfas\",\n                    \"LastName\": \"asdf\",\n                    \"Email\": null,\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-26T08:46:27\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2370600982\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04451\",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.5431221,\n                \"Latitude\": 51.338413,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2370666515\",\n            \"Name\": \"asdfasdf\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-26T08:46:27\",\n            \"ExternalId\": \"323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2374500352\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Justus\",\n                    \"Email\": \"Frank.justus@trest.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"23234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-27T05:13:39\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2374467584\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"06232\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": \"\",\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2374434816\",\n            \"Name\": \" Frank Justus\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2017-12-27T20:41:07\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 36,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2379644937\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Kaymer\",\n                    \"Email\": \"frank.kaymer@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"243234234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-28T12:05:40\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2379612174\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04451\",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.5431221,\n                \"Latitude\": 51.338413,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2379579402\",\n            \"Name\": \"Frank Kaymer\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-28T12:05:40\",\n            \"ExternalId\": \"3232\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2466807809\",\n                \"AddressString\": \"Beethovenstraße 19\",\n                \"Postal\": \"47226\",\n                \"City\": \"Duisburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 6.7128915,\n                \"Latitude\": 51.4034045,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2466447361\",\n            \"Name\": \"GT 11DE/00141110/00000001-31\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-23T06:47:08\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2468413479\",\n                \"AddressString\": \"Hüttenstraße 31\",\n                \"Postal\": \"28237\",\n                \"City\": \"Bremen\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.7076231,\n                \"Latitude\": 53.1327314,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2468511766\",\n            \"Name\": \"GT 11DE/00402553/00000001-31\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-24T10:42:44\",\n            \"ExternalId\": \"GT 11DE/00402553/00000001-31\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2469199908\",\n                \"AddressString\": \"Alt-Friedrichsfelde 63\",\n                \"Postal\": \"10315\",\n                \"City\": \"Berlin\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.5338011,\n                \"Latitude\": 52.5103231,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2469888032\",\n            \"Name\": \"GT 11DE/00101052\",\n            \"Note\": \"<p>Bei Fragen Hotline 0800...</p>\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-24T11:35:47\",\n            \"ExternalId\": \"GT 11DE/00101052\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/ServiceObjects?$expand=Contacts%2CCompany%2CProduct%2CTags&$skip=32\"\n}"}],"_postman_id":"5da65cf1-80ae-4a73-b665-3a6ba8bdd28c"},{"name":"Retrieve a Service Object","id":"45b35810-1c13-4b4a-afa0-b57363bdca79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(9875849220L)?$expand=Contacts,Company,Product,Tags","description":"<p>Get a Service Object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Service Object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(9875849220L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contacts,Company,Product,Tags"}],"variable":[]}},"response":[{"id":"11f6d8de-5883-4bd9-9135-44281f9d0508","name":"Get Service Objects (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceObjects?$expand=Contacts,Company,Product,Tags","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","ServiceObjects"],"query":[{"key":"$expand","value":"Contacts,Company,Product,Tags"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 15:15:13 GMT"},{"key":"Content-Length","value":"34410"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceObjects\",\n    \"value\": [\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 35,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"5057052679\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Neureiter\",\n                    \"Email\": \"frank.neureiter@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"234234234234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-12-27T10:53:37\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"410550274\",\n                    \"AddressString\": \"Weidehorst 28\",\n                    \"Postal\": \"32609\",\n                    \"City\": \"Hüllhorst\",\n                    \"State\": null,\n                    \"Country\": null,\n                    \"Longitude\": 8.696145,\n                    \"Latitude\": 52.24972,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Product\": {\n                \"Id\": \"503250944\",\n                \"Version\": 2,\n                \"Name\": \"OC\",\n                \"SubKey\": null,\n                \"Description\": null,\n                \"DateModified\": \"2017-08-06T11:34:02\",\n                \"MappingId\": null,\n                \"CustomValueStepTemplateId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5300846593\",\n                    \"Version\": 14,\n                    \"Name\": \"Mobilfunk\",\n                    \"ColorDefinition\": \"#2ECC40\",\n                    \"Type\": \"ServiceObject\"\n                },\n                {\n                    \"Id\": \"1049919488\",\n                    \"Version\": 15,\n                    \"Name\": \"SLA1\",\n                    \"ColorDefinition\": \"#1A237E\",\n                    \"Type\": \"ServiceRequest\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"410550274\",\n                \"AddressString\": \"Weidehorst 28\",\n                \"Postal\": \"32609\",\n                \"City\": \"Hüllhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.696145,\n                \"Latitude\": 52.24972,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"410615810\",\n            \"Name\": \"Frank Neureiter OL Links\",\n            \"Note\": \"Sdfasdfasdf\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-03T11:00:28\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 60,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"410517505\",\n            \"ProductId\": \"503250944\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 10,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Product\": {\n                \"Id\": \"503250944\",\n                \"Version\": 2,\n                \"Name\": \"OC\",\n                \"SubKey\": null,\n                \"Description\": null,\n                \"DateModified\": \"2017-08-06T11:34:02\",\n                \"MappingId\": null,\n                \"CustomValueStepTemplateId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"440729600\",\n                \"AddressString\": \"Karlsbadstraße\",\n                \"Postal\": \"26127\",\n                \"City\": \"Oldenburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.18636823423788,\n                \"Latitude\": 53.16562323,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"440795136\",\n            \"Name\": \"Atlas Maschinen GmbH\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-23T19:10:04\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 25,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"503250944\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"440762368\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Pascal2\",\n                    \"LastName\": \"Friedrich\",\n                    \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n                    \"JobTitle\": \"\",\n                    \"MobilePhone\": \"+49 172 27378234\",\n                    \"Telephone\": \"+49 672 7782398\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2017-09-14T17:57:27\",\n                    \"Version\": 10,\n                    \"CompanyId\": \"440696832\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"7027195904\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ansprechpartner\",\n                    \"LastName\": \"Franz\",\n                    \"Email\": \"franz.derAnsprechpartner@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"4234234\",\n                    \"Telephone\": \"2134234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2018-11-11T20:16:02\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"2290679808\",\n                    \"Version\": 16,\n                    \"Name\": \"vertrieb\",\n                    \"ColorDefinition\": \"#ff00ff\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"440729601\",\n                \"AddressString\": \"Stedinger Str. 32\",\n                \"Postal\": \"27751\",\n                \"City\": \"Delmenhorst\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.65002,\n                \"Latitude\": 53.08711,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"440795137\",\n            \"Name\": \"FAA 02 (142702)\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-02T22:34:44\",\n            \"ExternalId\": \"26234523\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 18,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": {\n                    \"Version\": 0,\n                    \"Id\": \"440729600\",\n                    \"AddressString\": \"Karlsbadstraße\",\n                    \"Postal\": \"26127\",\n                    \"City\": \"Oldenburg\",\n                    \"State\": null,\n                    \"Country\": \"DE\",\n                    \"Longitude\": 8.18636823423788,\n                    \"Latitude\": 53.16562323,\n                    \"IsValidLocation\": true\n                },\n                \"Id\": \"440696832\",\n                \"Version\": 59,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"2290679808\",\n                    \"Version\": 16,\n                    \"Name\": \"vertrieb\",\n                    \"ColorDefinition\": \"#ff00ff\",\n                    \"Type\": \"ServiceObject\"\n                },\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"444170279\",\n                \"AddressString\": \"Lützner Straße 11\",\n                \"Postal\": \"04177\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 12.33679,\n                \"Latitude\": 51.33526,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"444235782\",\n            \"Name\": \"This is a service object \",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-04-15T11:09:06\",\n            \"ExternalId\": \"dfadfasdfadsf\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 24,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"440696832\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728449\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Steiner\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"Serviceleiter\",\n                    \"MobilePhone\": \"234234234\",\n                    \"Telephone\": \"234234\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2019-03-21T08:09:59\",\n                    \"Version\": 67,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1194557446\",\n                \"AddressString\": \"Neureuter Strasse 37\",\n                \"Postal\": \"76185\",\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.35742,\n                \"Latitude\": 49.02634,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1194590211\",\n            \"Name\": \"Filiale Neureuter Strasse\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-03-15T09:31:41\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 13,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1275625473\",\n                \"Version\": 28,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Gärtnerei Calla\",\n                \"Note\": \"Riecht gut\",\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-15T07:39:38\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1428127758\",\n                \"AddressString\": \"Blumenstr. 3\",\n                \"Postal\": \"82140\",\n                \"City\": \"Olching\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 11.33824,\n                \"Latitude\": 48.21006,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1428389900\",\n            \"Name\": \"Klimaanlage\",\n            \"Note\": \"<p>as dfasdf</p><p>a sdf</p><p>as</p><p>dfa</p><p>sdf</p><p>asdfasdfasdf</p>\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-01-15T08:44:26\",\n            \"ExternalId\": \"9783864892332\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 28,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1275625473\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1497137209\",\n                \"AddressString\": \"Baaderstraße 43\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.577426910400391,\n                \"Latitude\": 48.1294059753418,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1497104453\",\n            \"Name\": \"Filiale 323\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-12-16T11:05:22\",\n            \"ExternalId\": \"3232\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 3,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"410583043\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank2\",\n                    \"LastName\": \"Graf2\",\n                    \"Email\": \"info@simplias.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"03823123422\",\n                    \"Telephone\": \"0176873234234\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"2019-09-09T13:43:32\",\n                    \"Version\": 1252,\n                    \"CompanyId\": \"8017281039\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"frank2graf2ext\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1641447431\",\n                \"Version\": 4,\n                \"IsPhysicalPerson\": true,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Tamina Wüst\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-09-07T12:06:26\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1641480239\",\n                \"AddressString\": \"frank\",\n                \"Postal\": null,\n                \"City\": \"Frankenberg/Sachsen\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 1,\n                \"Latitude\": 1,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1641545783\",\n            \"Name\": \"Tamina Wüst\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-01-10T12:57:20\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 8,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1641447431\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"442728450\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Nikola\",\n                    \"LastName\": \" Petrovic \",\n                    \"Email\": \"np@simplias-demo.com\",\n                    \"JobTitle\": \"Maler\",\n                    \"MobilePhone\": \"0176060606\",\n                    \"Telephone\": \"232323232323\",\n                    \"Fax\": \"\",\n                    \"Note\": \"\",\n                    \"DateModified\": \"2018-11-26T16:10:29\",\n                    \"Version\": 35,\n                    \"CompanyId\": \"2513469448\",\n                    \"IsUser\": true,\n                    \"ExternalId\": \"\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5300846593\",\n                    \"Version\": 14,\n                    \"Name\": \"Mobilfunk\",\n                    \"ColorDefinition\": \"#2ECC40\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1674870806\",\n                \"AddressString\": \"Moritzburger Weg\",\n                \"Postal\": \"01109\",\n                \"City\": \"Dresden\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.75775,\n                \"Latitude\": 51.1077,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1674838040\",\n            \"Name\": \"Filiale DM in Dresden\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-21T08:06:18\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 6,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"7830274048\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Testkandidat\",\n                    \"Email\": \"\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"23423 234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-01-31T13:10:27\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1691058226\",\n                \"AddressString\": \"Neureuter Straße 3, K\",\n                \"Postal\": null,\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.3540096282958984,\n                \"Latitude\": 49.017768859863281,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1691484220\",\n            \"Name\": \"DM Filiale 563\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2019-02-28T12:05:55\",\n            \"ExternalId\": \"633\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 22,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1195147264\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Dirk\",\n                    \"LastName\": \"Träutlein\",\n                    \"Email\": \"frank.test@test.de\",\n                    \"JobTitle\": \"manager\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"08654 57872266\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-04-20T15:31:06\",\n                    \"Version\": 6,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [\n                {\n                    \"Id\": \"5301665792\",\n                    \"Version\": 13,\n                    \"Name\": \"Vodafone\",\n                    \"ColorDefinition\": \"#FF4136\",\n                    \"Type\": \"ServiceObject\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1716617243\",\n                \"AddressString\": \"Baaderstraße 32\",\n                \"Postal\": \"04157\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.38036,\n                \"Latitude\": 51.37153,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1716682779\",\n            \"Name\": \"Super Store 323\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-12-16T11:05:27\",\n            \"ExternalId\": \"43\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 11,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1729167360\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"04416\",\n                \"City\": \"Markkleeberg\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 12.349449,\n                \"Latitude\": 51.264988,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1729134592\",\n            \"Name\": \"Neuer ServiceObjekt\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2017-06-04T19:00:33\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 10,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"1194524674\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1733787674\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"frank\",\n                    \"LastName\": \"Pascal\",\n                    \"Email\": \"jan.hoeppner@gmail.com\",\n                    \"JobTitle\": \"test3\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"38234234\",\n                    \"Fax\": null,\n                    \"Note\": \"\",\n                    \"DateModified\": \"2016-03-17T12:05:21\",\n                    \"Version\": 7,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1733754929\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"13051\",\n                \"City\": \"Berlin\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.48313,\n                \"Latitude\": 52.57398,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1733722160\",\n            \"Name\": \"Frank Pascal\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-10-06T14:41:52\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1794211858\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Stubert\",\n                    \"Email\": \"frank.stubert@krankenhaus.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-10-27T09:21:34\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"3674374162\",\n                \"Version\": 1,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"109058\",\n                \"Name\": \"Isaak\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2017-04-03T14:48:54\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1794277406\",\n                \"AddressString\": \"Klenzestraße 37\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.574861526489258,\n                \"Latitude\": 48.1307487487793,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1794834469\",\n            \"Name\": \"Krankenhaus Station 3\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-03-14T14:05:19\",\n            \"ExternalId\": \"323423\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 5,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"3674374162\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1797816320\",\n                \"AddressString\": \"as\",\n                \"Postal\": null,\n                \"City\": \"Aschaffenburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"1797554177\",\n            \"Name\": \"asdfasdfadf\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-02-20T11:55:28\",\n            \"ExternalId\": \"234234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1804075016\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Tobias\",\n                    \"LastName\": \"Kalmann\",\n                    \"Email\": \"jan.hoeppner@simplias.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"\",\n                    \"Telephone\": \"\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-01-29T15:05:55\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1804140561\",\n                \"AddressString\": \"Baaderstraße 43\",\n                \"Postal\": \"80469\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.57743,\n                \"Latitude\": 48.12941,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1805811735\",\n            \"Name\": \"Spezialkunde\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-10-29T09:28:17\",\n            \"ExternalId\": \"4323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1876262953\",\n                \"AddressString\": \"Kölner Straße 32\",\n                \"Postal\": \"53819\",\n                \"City\": \"Neunkirchen-Seelscheid\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 7.344791,\n                \"Latitude\": 50.8462808,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1876328477\",\n            \"Name\": \"Neunkirchen Agenitor\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-11-19T12:59:18\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1876262954\",\n                \"AddressString\": \"Wahnbachtalstraße 32\",\n                \"Postal\": \"53721\",\n                \"City\": \"Siegburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 7.2299506,\n                \"Latitude\": 50.7918582,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1876328478\",\n            \"Name\": \"Agenitor 2G \",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2015-11-19T13:00:58\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2071330842\",\n                \"AddressString\": \"Dorfstraße 3\",\n                \"Postal\": \"Satow \",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.547320365905762,\n                \"Latitude\": 51.334819793701172,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2072510481\",\n            \"Name\": \"Windkraftanlage\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2018-02-20T09:51:39\",\n            \"ExternalId\": \"3234\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 5,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2079653904\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04425\",\n                \"City\": \"Taucha\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.49098,\n                \"Latitude\": 51.39103,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2079621135\",\n            \"Name\": \"Test\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-02-15T07:57:52\",\n            \"ExternalId\": \"323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2079457314\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank \",\n                    \"LastName\": \"Horstberger\",\n                    \"Email\": \"frank.horstberger@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"uiioopppppppii\",\n                    \"Telephone\": \"657667878888\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2017-07-23T05:28:01\",\n                    \"Version\": 5,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2079424578\",\n                \"AddressString\": \"Petersweg 32\",\n                \"Postal\": \"31319\",\n                \"City\": \"Sehnde\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 9.8899466,\n                \"Latitude\": 52.3483201,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2079785023\",\n            \"Name\": \"Anlagen Büdost\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-01-27T14:43:46\",\n            \"ExternalId\": \"32354\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2116190216\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Herr\",\n                    \"LastName\": \"Bart\",\n                    \"Email\": \"herrbert@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-02-05T13:17:33\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2116255761\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04463\",\n                \"City\": \"Großpösna\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.47244,\n                \"Latitude\": 51.24667,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2116157457\",\n            \"Name\": \"Tankstelle 32\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-02-05T13:21:32\",\n            \"ExternalId\": \"434\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 3,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363293714\",\n                \"AddressString\": \"adjearj\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 121.0317071,\n                \"Latitude\": 14.7585447,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2363260939\",\n            \"Name\": \"dajedj\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:38:16\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490319\",\n                \"AddressString\": \"yfgmyfgm\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457553\",\n            \"Name\": \"tydmjymyfm\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:33:53\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490320\",\n                \"AddressString\": \"dyfndfn\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457554\",\n            \"Name\": \"ydfndyfn\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:34:13\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2363490321\",\n                \"AddressString\": \"ydndyn\",\n                \"Postal\": null,\n                \"City\": null,\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2363457555\",\n            \"Name\": \"dyndyn\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-25T08:34:18\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2370633739\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"asdfas\",\n                    \"LastName\": \"asdf\",\n                    \"Email\": null,\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-26T08:46:27\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2370600982\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04451\",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.5431221,\n                \"Latitude\": 51.338413,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2370666515\",\n            \"Name\": \"asdfasdf\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-26T08:46:27\",\n            \"ExternalId\": \"323\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2374500352\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Justus\",\n                    \"Email\": \"Frank.justus@trest.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"23234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-27T05:13:39\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2374467584\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"06232\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": \"\",\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"2374434816\",\n            \"Name\": \" Frank Justus\",\n            \"Note\": \"\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2017-12-27T20:41:07\",\n            \"ExternalId\": \"\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 36,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2379644937\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Kaymer\",\n                    \"Email\": \"frank.kaymer@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"243234234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-04-28T12:05:40\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"0\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2379612174\",\n                \"AddressString\": \"Dorfstraße 32\",\n                \"Postal\": \"04451\",\n                \"City\": \"Borsdorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.5431221,\n                \"Latitude\": 51.338413,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2379579402\",\n            \"Name\": \"Frank Kaymer\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-04-28T12:05:40\",\n            \"ExternalId\": \"3232\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2466807809\",\n                \"AddressString\": \"Beethovenstraße 19\",\n                \"Postal\": \"47226\",\n                \"City\": \"Duisburg\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 6.7128915,\n                \"Latitude\": 51.4034045,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2466447361\",\n            \"Name\": \"GT 11DE/00141110/00000001-31\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-23T06:47:08\",\n            \"ExternalId\": null,\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 1,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2468413479\",\n                \"AddressString\": \"Hüttenstraße 31\",\n                \"Postal\": \"28237\",\n                \"City\": \"Bremen\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.7076231,\n                \"Latitude\": 53.1327314,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2468511766\",\n            \"Name\": \"GT 11DE/00402553/00000001-31\",\n            \"Note\": null,\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-24T10:42:44\",\n            \"ExternalId\": \"GT 11DE/00402553/00000001-31\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 4,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2469199908\",\n                \"AddressString\": \"Alt-Friedrichsfelde 63\",\n                \"Postal\": \"10315\",\n                \"City\": \"Berlin\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 13.5338011,\n                \"Latitude\": 52.5103231,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2469888032\",\n            \"Name\": \"GT 11DE/00101052\",\n            \"Note\": \"<p>Bei Fragen Hotline 0800...</p>\",\n            \"CustomValues\": [],\n            \"DateModified\": \"2016-05-24T11:35:47\",\n            \"ExternalId\": \"GT 11DE/00101052\",\n            \"MappingId\": null,\n            \"QuickSearch\": null,\n            \"Version\": 2,\n            \"IsWarehouse\": false,\n            \"ParentServiceObjectId\": \"0\",\n            \"CompanyId\": \"0\",\n            \"ProductId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/ServiceObjects?$expand=Contacts%2CCompany%2CProduct%2CTags&$skip=32\"\n}"}],"_postman_id":"45b35810-1c13-4b4a-afa0-b57363bdca79"},{"name":"Get Service Objects filtered by Company Id","id":"4643bf72-b3cf-46fb-bb4e-3daac2b70e2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects?$filter=Company/Id eq 10981310465L","description":"<p>Get all Service Objects under a Company which id is given. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Id of the company. The Id should have an 'L' at the end of the number, but it shouldn't be surrounded by the string delimiter character \" ' \".</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$filter","value":"Company/Id eq 10981310465L"}],"variable":[]}},"response":[],"_postman_id":"4643bf72-b3cf-46fb-bb4e-3daac2b70e2b"},{"name":"Get ChildServiceObjects","id":"2938c0c0-9f7b-449f-b2f3-51712534ab01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(64909934600L)/ChildServiceObject","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(64909934600L)","ChildServiceObject"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"2938c0c0-9f7b-449f-b2f3-51712534ab01"},{"name":"Create a Service Object","id":"45435219-abbd-4195-8955-c27b38bd8a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Location\": {\n        \"AddressString\": \"Muesterstrasse\",\n        \"Postal\": \"010101\",\n        \"City\": \"Leipzig\"\n    },\n    \"Name\": \"Test Service Object\",\n    \"ExternalId\": \"SO-TEST-0001\",\n    \"Contacts\": [\n        {\n            \"Id\": \"9876013064\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Max\",\n            \"LastName\": \"Mustermann\",\n            \"Email\": \"maxmustermann@somemail.de\",\n            \"ExternalId\": \"2-355\"\n        }\n    ],\n    \"CompanyId\": \"440696832\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects","description":"<p>Create a Service Object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Service Object.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Required. Location of the Service Object.</td>\n</tr>\n<tr>\n<td>CompanyId</td>\n<td>int</td>\n<td>Required. Id of the company linked to the Service Object.</td>\n</tr>\n<tr>\n<td>Contacts</td>\n<td>array</td>\n<td>Optional. List with the info of the Contact.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External Id for the Service Object.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Optional. Note or description for the Service Object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"bebcf566-6a6a-41db-b1ce-4df9a2a66797","name":"Create Service Object (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Location\": {\n        \"AddressString\": \"Muesterstrasse\",\n        \"Postal\": \"010101\",\n        \"City\": \"Leipzig\"\n    },\n    \"Name\": \"Test Service Object\",\n    \"ExternalId\": \"SO-TEST-0001\",\n    \"Contacts\": [\n        {\n            \"Id\": \"9876013064\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Benjamin Amós Amos Carta\",\n            \"LastName\": \"Amos\",\n            \"Email\": \"benjamin.amos@simplias.com\",\n            \"ExternalId\": \"B-091194-A\"\n        }\n    ],\n    \"CompanyId\": \"440696832\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ServiceObjects(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 15:22:15 GMT"},{"key":"Content-Length","value":"617"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceObjects/@Element\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9981034519\",\n        \"AddressString\": \"Muesterstrasse\",\n        \"Postal\": \"010101\",\n        \"City\": \"Leipzig\",\n        \"State\": null,\n        \"Country\": null,\n        \"Longitude\": 12.3730747,\n        \"Latitude\": 51.3396955,\n        \"IsValidLocation\": true\n    },\n    \"Id\": \"9981001751\",\n    \"Name\": \"Test Service Object\",\n    \"Note\": null,\n    \"CustomValues\": [],\n    \"DateModified\": \"2019-09-09T15:22:15.2399221Z\",\n    \"ExternalId\": \"SO-TEST-0001\",\n    \"MappingId\": null,\n    \"QuickSearch\": null,\n    \"Version\": 3,\n    \"IsWarehouse\": false,\n    \"ParentServiceObjectId\": \"0\",\n    \"CompanyId\": \"440696832\",\n    \"ProductId\": \"0\"\n}"}],"_postman_id":"45435219-abbd-4195-8955-c27b38bd8a18"},{"name":"Link a Service Object with a Contact","id":"e09c539a-bdff-4292-9322-5fd91b6f54d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Contacts(9876013064L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(9875849220L)/$links/Contacts","description":"<p>Attach a Contact (Main Contact if no other Contact is attached) to a Service Object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the Service Object.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. URL to the OData request of the Contact to attach.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(9875849220L)","$links","Contacts"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"f1a548e3-76e9-4b89-920a-bc2ae711b9f0","name":"Link Service Object with a Contact (204 No Content)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Contacts(9876013064L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(9875849220L)/$links/Contacts"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:10:43 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e09c539a-bdff-4292-9322-5fd91b6f54d8"},{"name":"Attach a Product to a Service Object","id":"660bf7fc-ca53-4151-b3aa-59d965c4c961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ParentServiceObjectId\": \"10978918413\",\n    \"ExternalId\": \"\",\n    \"Name\": \"Wartung3\",\n    \"ProductId\": \"10995761153\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects","description":"<p>Add an existing Product to a Service Object. Product will be added as a children Service Object from the Service Object to which the product will be attached.</p>\n<h3 id=\"note\">Note</h3>\n<p>The Product entity will be linked without its custom step list. For this reason, steps will need to be created manually.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ParentServiceObjectId</td>\n<td>int</td>\n<td>Required. Id of the Service Object to which the product will be attached.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Required. ExternalId for the attached Product. If left as empty string, an automatic id will be generated.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Product to attach. It is recommended to name it according to the original Product.</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td>int</td>\n<td>Required. Id of the Product to attach.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"fb18b52e-d6cc-4039-a680-65055ca667a0","name":"Attach a Product to a Service Object 201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ParentServiceObjectId\": \"10978918413\",\n    \"ExternalId\": \"\",\n    \"Name\": \"Wartung3\",\n    \"ProductId\": \"10995761153\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ServiceObjects(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 13 Dec 2019 13:45:20 GMT"},{"key":"Content-Length","value":"448"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceObjects/@Element\",\n    \"Location\": null,\n    \"Id\": \"10993369133\",\n    \"Name\": \"Wartung3\",\n    \"Note\": null,\n    \"CustomValues\": [],\n    \"DateModified\": \"2019-12-13T13:45:20.4023436Z\",\n    \"ExternalId\": \"SO-403\",\n    \"MappingId\": null,\n    \"QuickSearch\": null,\n    \"Version\": 2,\n    \"CreateGeoLocation\": false,\n    \"IsWarehouse\": false,\n    \"ParentServiceObjectId\": \"10978918413\",\n    \"CompanyId\": \"10981310465\",\n    \"ProductId\": \"10995761153\"\n}"}],"_postman_id":"660bf7fc-ca53-4151-b3aa-59d965c4c961"},{"name":"Update Service Object","id":"776586af-0168-4508-b148-7cb7f35748ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"Id\": \"1146881\",\n    \"Name\": \"Test Service object\",\n    \"Note\": \"This is an update in a Service Object\",\n    \"ExternalId\": \"S-01\",\n    \"ParentServiceObjectId\": \"0\",\n    \"CompanyId\": \"1015808\",\n    \"Location\": {\n        \"Id\": \"11694669879\",\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(1146881L)","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Service Object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(1146881L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"776586af-0168-4508-b148-7cb7f35748ea"},{"name":"Add tags to Service Object","id":"897a293b-a247-4e77-bbbb-4f0c694172ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"url\": \"https://portal.mobilefieldreport.com/odata/Tags(2621444L)\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(2392066L)/$links/Tags","description":"<p>Add a tag to a Service Object</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(2392066L)","$links","Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"897a293b-a247-4e77-bbbb-4f0c694172ad"},{"name":"Delete a Service Object","id":"b3d5234c-8000-4473-94ef-098be8ab6fe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceObjects(1998848L)","description":"<p>Deletes a service object with the given id.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceObjects(1998848L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3d5234c-8000-4473-94ef-098be8ab6fe0"}],"id":"3912567b-8577-4dfb-91e7-f785b3ef5bba","description":"<p>With Service Objects is represented the work location for a specific collection of jobs. It can hold a group of <strong>Contacts</strong> and be linked to a <strong>Company</strong>. It can also include <strong>Products</strong> and <strong>Documents</strong>. <strong>Tags</strong> can be applied to categorize them. With <strong>TimeEvents</strong>, also time based solutions or maintenances can be defined. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Service Object's id.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Service Object's location.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Service Object's name.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Note regarding the Service Object.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>Service Object's custom values.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Service Object's external or ERP id.</td>\n</tr>\n<tr>\n<td>ParentServiceObjectId</td>\n<td>int</td>\n<td>If it's a Product, the id of the Service Object in which it is contained.</td>\n</tr>\n<tr>\n<td>CompanyId</td>\n<td>int</td>\n<td>Service Object's related company id.</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td>int</td>\n<td>If it's a Product, its id.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>object</td>\n<td>Service Object's related company.</td>\n</tr>\n<tr>\n<td>Product</td>\n<td>object</td>\n<td>If it's a Product, the product's object.</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array</td>\n<td>Service Object's tags list.</td>\n</tr>\n<tr>\n<td>Contacts</td>\n<td>array</td>\n<td>Service Object's contacts list.</td>\n</tr>\n<tr>\n<td>Items</td>\n<td>array</td>\n<td>Service Object's items list.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"045f2226-dc61-4c8c-8811-ab55211a6189"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"11a4ca88-6240-4eda-a5db-5d56f905e682"}}],"_postman_id":"3912567b-8577-4dfb-91e7-f785b3ef5bba","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Company","item":[{"name":"Get Companies","id":"44d20d0f-c466-4889-9570-bbafcb1c9c64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Companies?$expand=Contacts,Tags,ServiceObjects,MainContact","description":"<p>Get all Companies.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Companies"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contacts,Tags,ServiceObjects,MainContact"}],"variable":[]}},"response":[{"id":"85fc70a1-d84b-42d1-8f2a-fbb7b6dbd5da","name":"Get Companies (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Companies?$expand=Contacts,Tags,ServiceObjects,MainContact","host":["https://portal.mobilefieldreport.com/odata"],"path":["Companies"],"query":[{"key":"$expand","value":"Contacts,Tags,ServiceObjects,MainContact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:25:19 GMT"},{"key":"Content-Length","value":"50498"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Companies\",\n    \"value\": [\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4436688896\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"J.\",\n                    \"LastName\": \"Höppner\",\n                    \"Email\": \"jan.hoeppner@simplias.com\",\n                    \"JobTitle\": \"Manager\",\n                    \"MobilePhone\": \"\",\n                    \"Telephone\": \"089231413150\",\n                    \"Fax\": \"\",\n                    \"Note\": null,\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"4436590592\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"7874215944\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"slim\",\n                    \"LastName\": \"ben youssef\",\n                    \"Email\": \"slim.benyoussef@simplias.com\",\n                    \"JobTitle\": \"developer \",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"+21699987457\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-05T09:56:27\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"4436590592\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"7876804619\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"slim \",\n                    \"LastName\": \"ben youssef\",\n                    \"Email\": \"slim.benyoussef@simplias.com\",\n                    \"JobTitle\": \"developer\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"99987457\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-05T10:35:24\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"4436590592\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"7901085709\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Benjamin Amos\",\n                    \"LastName\": \"Amos\",\n                    \"Email\": \"benjamin.amos@simplias.com\",\n                    \"JobTitle\": \"Developer\",\n                    \"MobilePhone\": \"012341232123\",\n                    \"Telephone\": \"+123456789123\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-02-07T11:18:00\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"4436590592\",\n                    \"IsUser\": false,\n                    \"ExternalId\": \"123412342\",\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [\n                {\n                    \"Location\": null,\n                    \"Id\": \"4436656128\",\n                    \"Name\": \"CSG GmbH Bonn\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 1,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9860612136\",\n                    \"Name\": \"B-Produkt522\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-08-30T14:23:19\",\n                    \"ExternalId\": \"SO-301\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"9861627937\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9861627937\",\n                    \"Name\": \"test serviceobject\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-08-27T12:21:27\",\n                    \"ExternalId\": \"SO-299\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 7,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9861627938\",\n                    \"Name\": \"KühlschrankGefriertruhe\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-08-27T13:36:55\",\n                    \"ExternalId\": \"SO-300\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"9861627937\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9914417152\",\n                    \"Name\": \"Test Product X-1Test SubKey X-1\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-01T20:23:05\",\n                    \"ExternalId\": \"SO-303\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"9861627937\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"9914351616\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9914417153\",\n                    \"Name\": \"Test Product X-1Test SubKey X-1\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-01T20:28:34\",\n                    \"ExternalId\": \"SO-304\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"9861627937\",\n                    \"CompanyId\": \"4436590592\",\n                    \"ProductId\": \"9914351616\"\n                }\n            ],\n            \"MainContact\": {\n                \"Id\": \"4436688896\",\n                \"CustomValues\": [],\n                \"FirstName\": \"J.\",\n                \"LastName\": \"Höppner\",\n                \"Email\": \"jan.hoeppner@simplias.com\",\n                \"JobTitle\": \"Manager\",\n                \"MobilePhone\": \"\",\n                \"Telephone\": \"089231413150\",\n                \"Fax\": \"\",\n                \"Note\": null,\n                \"DateModified\": \"1980-01-01T00:00:00\",\n                \"Version\": 3,\n                \"CompanyId\": \"4436590592\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"4436623360\",\n                \"AddressString\": \"Lützner Straße 11\",\n                \"Postal\": \"04177\",\n                \"City\": \"Leipzig\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 12.33679,\n                \"Latitude\": 51.33526,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"4436590592\",\n            \"Version\": 8,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"Simplias GmbH\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": \"christian.richter@simplias.com\",\n            \"QuickSearch\": null,\n            \"DateModified\": \"1980-01-01T00:00:00\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"4436688896\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"4436688897\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Petar\",\n                    \"LastName\": \"Seric\",\n                    \"Email\": \"petar.seric@dpdhl.com\",\n                    \"JobTitle\": \"Abteilungsleiter Nord\",\n                    \"MobilePhone\": \"0175 5849820\",\n                    \"Telephone\": \"040 636 495 200\",\n                    \"Fax\": null,\n                    \"Note\": \"<p>Heidenkampsweg 99, 20097 Hamburg</p>\",\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"4436590593\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"MainContact\": {\n                \"Id\": \"4436688897\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Petar\",\n                \"LastName\": \"Seric\",\n                \"Email\": \"petar.seric@dpdhl.com\",\n                \"JobTitle\": \"Abteilungsleiter Nord\",\n                \"MobilePhone\": \"0175 5849820\",\n                \"Telephone\": \"040 636 495 200\",\n                \"Fax\": null,\n                \"Note\": \"<p>Heidenkampsweg 99, 20097 Hamburg</p>\",\n                \"DateModified\": \"1980-01-01T00:00:00\",\n                \"Version\": 3,\n                \"CompanyId\": \"4436590593\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"4436623363\",\n                \"AddressString\": \"Godesberger Allee 157\",\n                \"Postal\": \"53175\",\n                \"City\": \"Bonn\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 7.13419,\n                \"Latitude\": 50.70327,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"4436590593\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"CSG.TS <br/> c/o CSG GmbH Finance Accounting <br/> Frau Bernhardt\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"1980-01-01T00:00:00\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"4436688897\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [\n                {\n                    \"Location\": null,\n                    \"Id\": \"6152880128\",\n                    \"Name\": \"Klimaanlage\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"6152847360\",\n                    \"ProductId\": \"0\"\n                }\n            ],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"6151340033\",\n                \"AddressString\": \"Weidehorst 28\",\n                \"Postal\": \"32609\",\n                \"City\": \"Hüllhorst\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 8.6961450576782227,\n                \"Latitude\": 52.249721527099609,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"6152847360\",\n            \"Version\": 2,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"3532333\",\n            \"Name\": \"Hausverwaltung Störlitz\",\n            \"Note\": null,\n            \"SupportTelephone\": \"+05744 5030\",\n            \"SupportFax\": null,\n            \"SupportMail\": \"facility service SÜD GmbH\",\n            \"QuickSearch\": null,\n            \"DateModified\": \"1980-01-01T00:00:00\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"6151307265\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Frank\",\n                    \"LastName\": \"Spergerbart\",\n                    \"Email\": \"jan.hoeppner@simplias.com\",\n                    \"JobTitle\": \"Geschäftsführer\",\n                    \"MobilePhone\": \"4917624820906\",\n                    \"Telephone\": \"4917624820906\",\n                    \"Fax\": \"2432341234\",\n                    \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"6152847361\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"MainContact\": {\n                \"Id\": \"6151307265\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Frank\",\n                \"LastName\": \"Spergerbart\",\n                \"Email\": \"jan.hoeppner@simplias.com\",\n                \"JobTitle\": \"Geschäftsführer\",\n                \"MobilePhone\": \"4917624820906\",\n                \"Telephone\": \"4917624820906\",\n                \"Fax\": \"2432341234\",\n                \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                \"DateModified\": \"1980-01-01T00:00:00\",\n                \"Version\": 2,\n                \"CompanyId\": \"6152847361\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"6151340035\",\n                \"AddressString\": \"Peter-Müller-Straße 11\",\n                \"Postal\": \"40468\",\n                \"City\": \"Düsseldorf\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 6.7683188,\n                \"Latitude\": 51.2750892,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"6152847361\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"Klimatechnik Streiter GmbH\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"1980-01-01T00:00:00\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"6151307265\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"6151307266\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ursula\",\n                    \"LastName\": \"Blum\",\n                    \"Email\": null,\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"0176 54545454\",\n                    \"Telephone\": \"0234234 324234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"1980-01-01T00:00:00\",\n                    \"Version\": 2,\n                    \"CompanyId\": \"6152847362\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"MainContact\": {\n                \"Id\": \"6151307266\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Ursula\",\n                \"LastName\": \"Blum\",\n                \"Email\": null,\n                \"JobTitle\": null,\n                \"MobilePhone\": \"0176 54545454\",\n                \"Telephone\": \"0234234 324234\",\n                \"Fax\": null,\n                \"Note\": null,\n                \"DateModified\": \"1980-01-01T00:00:00\",\n                \"Version\": 2,\n                \"CompanyId\": \"6152847362\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"6151340037\",\n                \"AddressString\": \"Blumenstraße 1\",\n                \"Postal\": \"82140\",\n                \"City\": \"Olching\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 11.3382397,\n                \"Latitude\": 48.210065,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"6152847362\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"Gärtnerei Calla\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"1980-01-01T00:00:00\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"6151307266\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1275691009\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Ursula\",\n                    \"LastName\": \"Blum\",\n                    \"Email\": null,\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"0176 54545454\",\n                    \"Telephone\": \"0234234 324234\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-08-12T09:19:04\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"1275625473\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [\n                {\n                    \"Location\": null,\n                    \"Id\": \"1428389900\",\n                    \"Name\": \"Klimaanlage\",\n                    \"Note\": \"<p>as dfasdf</p><p>a sdf</p><p>as</p><p>dfa</p><p>sdf</p><p>asdfasdfasdf</p>\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-01-15T08:44:26\",\n                    \"ExternalId\": \"9783864892332\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 28,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"2769944594\",\n                    \"Name\": \"Innengerät\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-11-14T08:55:13\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 14,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1630011392\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"2769944595\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-06T15:51:41\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4308762627\",\n                    \"Name\": \"Teh Proasdfasdf\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-06T15:51:42\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 7,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1203109891\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4308762628\",\n                    \"Name\": \"A-Produkt\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-01-15T08:44:27\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1203109890\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4308762629\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-02-22T10:20:28\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1855062018\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4311613445\",\n                    \"Name\": \"Neues Innengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:17:18\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 7,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1899036673\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957542\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-02-22T10:20:32\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957543\",\n                    \"Name\": \"KG\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:34:58\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 10,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"3174531072\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957544\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T08:49:47\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957546\",\n                    \"Name\": \"KG\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:37:28\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"3174531072\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957547\",\n                    \"Name\": \"Kühlschrank\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:29:41\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1014661120\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957548\",\n                    \"Name\": \"OC\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:29:32\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"503250944\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957549\",\n                    \"Name\": \"TestProdukt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:37:30\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"4540432384\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957550\",\n                    \"Name\": \"Innengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:37:31\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1630011392\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957551\",\n                    \"Name\": \"FE55\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-01-15T08:44:26\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"2081030144\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5079957561\",\n                    \"Name\": \"FE55hhg\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T08:49:06\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"2081030144\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5081890830\",\n                    \"Name\": \"FE55\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:24:55\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"2081030144\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5081890831\",\n                    \"Name\": \"KG\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-02T09:25:06\",\n                    \"ExternalId\": null,\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 10,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"3174531072\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9431941149\",\n                    \"Name\": \"B-Produkt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T14:01:00\",\n                    \"ExternalId\": \"SO-287\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1203109889\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9431941150\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T14:01:13\",\n                    \"ExternalId\": \"SO-288\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1855062016\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9446686739\",\n                    \"Name\": \"B-Produkt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-12T09:40:21\",\n                    \"ExternalId\": \"SO-289\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1428389900\",\n                    \"CompanyId\": \"1275625473\",\n                    \"ProductId\": \"1203109889\"\n                }\n            ],\n            \"MainContact\": {\n                \"Id\": \"1275691009\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Ursula\",\n                \"LastName\": \"Blum\",\n                \"Email\": null,\n                \"JobTitle\": null,\n                \"MobilePhone\": \"0176 54545454\",\n                \"Telephone\": \"0234234 324234\",\n                \"Fax\": null,\n                \"Note\": null,\n                \"DateModified\": \"2016-08-12T09:19:04\",\n                \"Version\": 4,\n                \"CompanyId\": \"1275625473\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1275658242\",\n                \"AddressString\": \"Blumenstraße 1\",\n                \"Postal\": \"82140\",\n                \"City\": \"Olching\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 11.3382397,\n                \"Latitude\": 48.210065,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1275625473\",\n            \"Version\": 28,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"Gärtnerei Calla\",\n            \"Note\": \"Riecht gut\",\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2015-04-15T07:39:38\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"1275691009\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1195147264\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Dirk\",\n                    \"LastName\": \"Träutlein\",\n                    \"Email\": \"frank.test@test.de\",\n                    \"JobTitle\": \"manager\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": \"08654 57872266\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-04-20T15:31:06\",\n                    \"Version\": 6,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"1313964074\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"asdfasdf\",\n                    \"LastName\": \"asdfadsfasdf\",\n                    \"Email\": null,\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-05-02T12:58:56\",\n                    \"Version\": 3,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                },\n                {\n                    \"Id\": \"3688923159\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Peter\",\n                    \"LastName\": \"Lindberg\",\n                    \"Email\": \"pl@simplias-demo.com\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2019-04-02T08:18:52\",\n                    \"Version\": 9,\n                    \"CompanyId\": \"1194524674\",\n                    \"IsUser\": true,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [\n                {\n                    \"Location\": null,\n                    \"Id\": \"1194590211\",\n                    \"Name\": \"Filiale Neureuter Strasse\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-15T09:31:41\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 13,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1407090691\",\n                    \"Name\": \"Klimaanlage VTS\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2015-09-10T16:33:46\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1194590211\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1497104453\",\n                    \"Name\": \"Filiale 323\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-12-16T11:05:22\",\n                    \"ExternalId\": \"3232\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1674838040\",\n                    \"Name\": \"Filiale DM in Dresden\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-02-21T08:06:18\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1691484220\",\n                    \"Name\": \"DM Filiale 563\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-02-28T12:05:55\",\n                    \"ExternalId\": \"633\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 22,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1716682779\",\n                    \"Name\": \"Super Store 323\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-12-16T11:05:27\",\n                    \"ExternalId\": \"43\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 11,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1729134592\",\n                    \"Name\": \"Neuer ServiceObjekt\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-06-04T19:00:33\",\n                    \"ExternalId\": \"234234\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 10,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1739784227\",\n                    \"Name\": \"Klimaanlage 3232\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-06T09:52:31\",\n                    \"ExternalId\": \"776212\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 5,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1408040960\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"1769865238\",\n                    \"Name\": \"Klima Außengerät\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2015-10-19T09:36:20\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 11,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1674838040\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1630011392\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4301586450\",\n                    \"Name\": \"Kaffeemaschine\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2017-08-08T08:47:26\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1674838040\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1183481856\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"4406083608\",\n                    \"Name\": \"Oberdörfer\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-12-16T11:05:18\",\n                    \"ExternalId\": \"115082\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"8187805704\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T16:32:50\",\n                    \"ExternalId\": \"768678\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 18,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"8187805712\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T16:33:03\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 7,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"8187871239\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T09:01:01\",\n                    \"ExternalId\": \"afsadfasdf\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"8187871253\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T13:18:05\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 4,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1855062018\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"8188198920\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-03-05T16:07:09\",\n                    \"ExternalId\": \"67678678\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 18,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9407791115\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-08T12:29:10\",\n                    \"ExternalId\": \"SO-278\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9407791116\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-08T12:29:11\",\n                    \"ExternalId\": \"SO-279\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1855062017\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9407791117\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-08T12:29:20\",\n                    \"ExternalId\": \"SO-282\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1855062017\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9408086034\",\n                    \"Name\": \"BHKWdddd\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T08:54:03\",\n                    \"ExternalId\": \"SO-280\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1855062017\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9408086035\",\n                    \"Name\": \"BHKW\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-08T12:29:12\",\n                    \"ExternalId\": \"SO-281\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1855062017\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9431941135\",\n                    \"Name\": \"Innengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-07-10T11:39:49\",\n                    \"ExternalId\": \"SO-286\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 11,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1729134592\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"1630011392\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9655779355\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-08-05T09:32:29\",\n                    \"ExternalId\": \"SO-293\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1716682779\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9657319437\",\n                    \"Name\": \"Außengerät\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-08-05T09:32:31\",\n                    \"ExternalId\": \"SO-292\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 7,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1716682779\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"6835568641\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9953116184\",\n                    \"Name\": \"aymen\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-05T11:40:10\",\n                    \"ExternalId\": \"SO-320\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"9956556800\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9954852869\",\n                    \"Name\": \"aymen2\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-05T11:37:21\",\n                    \"ExternalId\": \"SO-318\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"9956556801\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"9954852870\",\n                    \"Name\": \"aymen2\",\n                    \"Note\": null,\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2019-09-05T11:37:39\",\n                    \"ExternalId\": \"SO-319\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 2,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1691484220\",\n                    \"CompanyId\": \"1194524674\",\n                    \"ProductId\": \"9956556801\"\n                }\n            ],\n            \"MainContact\": {\n                \"Id\": \"1195147264\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Dirk\",\n                \"LastName\": \"Träutlein\",\n                \"Email\": \"frank.test@test.de\",\n                \"JobTitle\": \"manager\",\n                \"MobilePhone\": null,\n                \"Telephone\": \"08654 57872266\",\n                \"Fax\": null,\n                \"Note\": null,\n                \"DateModified\": \"2015-04-20T15:31:06\",\n                \"Version\": 6,\n                \"CompanyId\": \"1194524674\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1194557445\",\n                \"AddressString\": \"Neureuter Straße 37b\",\n                \"Postal\": \"76185\",\n                \"City\": \"Karlsruhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 8.35742,\n                \"Latitude\": 49.02634,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"1194524674\",\n            \"Version\": 38,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"DM \",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": \"jan.hoeppner@gmail.com\",\n            \"QuickSearch\": null,\n            \"DateModified\": \"2015-04-22T13:39:41\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"1195147264\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"1641512979\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"Tamina\",\n                    \"LastName\": \"Wüst\",\n                    \"Email\": \"jan.hoeppner@test.de\",\n                    \"JobTitle\": null,\n                    \"MobilePhone\": \"01765 674635793\",\n                    \"Telephone\": \"\",\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2015-09-21T14:36:26\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"1641447431\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [\n                {\n                    \"Location\": null,\n                    \"Id\": \"1641545783\",\n                    \"Name\": \"Tamina Wüst\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-10T12:57:20\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 8,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"0\",\n                    \"CompanyId\": \"1641447431\",\n                    \"ProductId\": \"0\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5093687349\",\n                    \"Name\": \"Lichtbänder Kantine\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-04T17:21:33\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 3,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1641545783\",\n                    \"CompanyId\": \"1641447431\",\n                    \"ProductId\": \"2431483906\"\n                },\n                {\n                    \"Location\": null,\n                    \"Id\": \"5093687350\",\n                    \"Name\": \"Neues Innengerät\",\n                    \"Note\": \"\",\n                    \"CustomValues\": [],\n                    \"DateModified\": \"2018-01-04T17:38:21\",\n                    \"ExternalId\": \"\",\n                    \"MappingId\": null,\n                    \"QuickSearch\": null,\n                    \"Version\": 6,\n                    \"IsWarehouse\": false,\n                    \"ParentServiceObjectId\": \"1641545783\",\n                    \"CompanyId\": \"1641447431\",\n                    \"ProductId\": \"1899036673\"\n                }\n            ],\n            \"MainContact\": {\n                \"Id\": \"1641512979\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Tamina\",\n                \"LastName\": \"Wüst\",\n                \"Email\": \"jan.hoeppner@test.de\",\n                \"JobTitle\": null,\n                \"MobilePhone\": \"01765 674635793\",\n                \"Telephone\": \"\",\n                \"Fax\": null,\n                \"Note\": null,\n                \"DateModified\": \"2015-09-21T14:36:26\",\n                \"Version\": 4,\n                \"CompanyId\": \"1641447431\",\n                \"IsUser\": false,\n                \"ExternalId\": null,\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"1641480238\",\n                \"AddressString\": \"frank\",\n                \"Postal\": null,\n                \"City\": \"Frankenberg/Sachsen\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"1641447431\",\n            \"Version\": 4,\n            \"IsPhysicalPerson\": true,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"Tamina Wüst\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2015-09-07T12:06:26\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"1641512979\"\n        },\n        {\n            \"Contacts\": [\n                {\n                    \"Id\": \"2495021075\",\n                    \"CustomValues\": [],\n                    \"FirstName\": \"\",\n                    \"LastName\": \"\",\n                    \"Email\": null,\n                    \"JobTitle\": \"Service Hotline\",\n                    \"MobilePhone\": null,\n                    \"Telephone\": null,\n                    \"Fax\": null,\n                    \"Note\": null,\n                    \"DateModified\": \"2016-06-01T09:33:16\",\n                    \"Version\": 4,\n                    \"CompanyId\": \"2495610893\",\n                    \"IsUser\": false,\n                    \"ExternalId\": null,\n                    \"Gender\": \"Male\",\n                    \"UserId\": \"0\"\n                }\n            ],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"2494988325\",\n                \"AddressString\": \"Lilienthalallee 25\",\n                \"Postal\": \"80939\",\n                \"City\": \"München\",\n                \"State\": null,\n                \"Country\": \"DE\",\n                \"Longitude\": 11.6079864,\n                \"Latitude\": 48.1938992,\n                \"IsValidLocation\": true\n            },\n            \"Id\": \"2495610893\",\n            \"Version\": 6,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": null,\n            \"Name\": \"DIBAG Industriebau AG\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2016-06-07T11:55:27\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3630923776\",\n                \"AddressString\": \"Heinrich-Lübcke-Weg 20\",\n                \"Postal\": \"33818\",\n                \"City\": \"Leopoldshöhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3630891008\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"106096\",\n            \"Name\": \"Friesen\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-24T12:57:36\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3630923785\",\n                \"AddressString\": \"Funkenfeldweg 1\",\n                \"Postal\": \"33106\",\n                \"City\": \"Paderborn\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3630891009\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"102345\",\n            \"Name\": \"Brakhane\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-24T13:16:07\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047954\",\n                \"AddressString\": \"Gelsenkirchener Str. 16\",\n                \"Postal\": \"33647\",\n                \"City\": \"Bielefeld\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768832\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"112105\",\n            \"Name\": \"Leving\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:43:19\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047955\",\n                \"AddressString\": \"Margarethenkamp 9\",\n                \"Postal\": \"59329\",\n                \"City\": \"Wadersloh\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768833\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"111358\",\n            \"Name\": \"Kastrati\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:49:49\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047956\",\n                \"AddressString\": \"Schäfer Str. 4\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten- Thüle\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768834\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"120347\",\n            \"Name\": \"Schäfer\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:50:49\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047957\",\n                \"AddressString\": \"Werner-Kremeyer-Str. 29\",\n                \"Postal\": \"32049\",\n                \"City\": \"Herford\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768835\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"110059\",\n            \"Name\": \"Jetzlaff\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:52:19\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047958\",\n                \"AddressString\": \"Droste-Hülshoff-Straße 6\",\n                \"Postal\": \"33129\",\n                \"City\": \"Delbrück\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768836\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"107228\",\n            \"Name\": \"Grabosch\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:52:49\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047959\",\n                \"AddressString\": \"Westring 35\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768837\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"120025\",\n            \"Name\": \"Schulz\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T10:53:49\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3641835552\",\n                \"AddressString\": \"Bramweg 4\",\n                \"Postal\": \"59174\",\n                \"City\": \"Kamen\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643211784\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"111305\",\n            \"Name\": \"Kornek\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T12:08:21\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3643047967\",\n                \"AddressString\": \"Grenkuhlenweg 3a\",\n                \"Postal\": \"48167\",\n                \"City\": \"Münster\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643768838\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"102547\",\n            \"Name\": \"Büscher\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T13:23:25\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3641835560\",\n                \"AddressString\": \"Pastor-Zeiß-Weg 4a\",\n                \"Postal\": \"33818\",\n                \"City\": \"Leopoldshöhe\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3643211785\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"101126\",\n            \"Name\": \"Appelhans\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-27T13:31:54\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3647766547\",\n                \"AddressString\": \"Südmauer 18\",\n                \"Postal\": \"59590\",\n                \"City\": \"Geseke\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3649339394\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"119301\",\n            \"Name\": \"Sigge\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-28T09:14:09\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3647111233\",\n                \"AddressString\": \"Peppinghegeweg 8\",\n                \"Postal\": \"48167\",\n                \"City\": \"Münster\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3647078410\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"114058\",\n            \"Name\": \"New Home GmbH\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-29T07:41:01\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3654778885\",\n                \"AddressString\": \"Von-Moltke-Straße 9\",\n                \"Postal\": \"33129\",\n                \"City\": \"Delbrück\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3654746113\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"108334\",\n            \"Name\": \"Heinz\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-29T10:12:36\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3654778935\",\n                \"AddressString\": \"Brandhoveweg 183\",\n                \"Postal\": \"48167\",\n                \"City\": \"Münster\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3654746123\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"120384\",\n            \"Name\": \"Schwake\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-30T07:39:56\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3654287430\",\n                \"AddressString\": \"Hövelwiese 1\",\n                \"Postal\": \"33161\",\n                \"City\": \"Hövelhof\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3654385676\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"116157\",\n            \"Name\": \"Pollmeier\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-03-30T13:36:09\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554961\",\n                \"AddressString\": \"Milan Weg 10\",\n                \"Postal\": \"59821\",\n                \"City\": \"Arnsberg\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374147\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"112169\",\n            \"Name\": \"Ljapin\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:29:46\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554962\",\n                \"AddressString\": \"Else-Alken-Straße 10\",\n                \"Postal\": \"60486\",\n                \"City\": \"Frankfurt\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374148\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"119279\",\n            \"Name\": \"Sallen\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:31:16\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554965\",\n                \"AddressString\": \"Drosselweg 1\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374149\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"101092\",\n            \"Name\": \"Ahlers\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:31:46\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554966\",\n                \"AddressString\": \"Erzbergerstraße 10\",\n                \"Postal\": \"59590\",\n                \"City\": \"Geseke\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374150\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"107263\",\n            \"Name\": \"Göbel\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:35:16\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3672768543\",\n                \"AddressString\": \"Danziger Straße 42\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3672735748\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"108277\",\n            \"Name\": \"Hampel\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:37:16\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554968\",\n                \"AddressString\": \"Vielser Straße 38\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374152\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"107219\",\n            \"Name\": \"Gees\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:47:47\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        },\n        {\n            \"Contacts\": [],\n            \"Tags\": [],\n            \"ServiceObjects\": [],\n            \"Location\": {\n                \"Version\": 0,\n                \"Id\": \"3673554971\",\n                \"AddressString\": \"Holtkamp 11\",\n                \"Postal\": \"33154\",\n                \"City\": \"Salzkotten-Verlar\",\n                \"State\": null,\n                \"Country\": null,\n                \"Longitude\": 0,\n                \"Latitude\": 0,\n                \"IsValidLocation\": false\n            },\n            \"Id\": \"3674374153\",\n            \"Version\": 1,\n            \"IsPhysicalPerson\": false,\n            \"IsOwner\": false,\n            \"IsSupplier\": false,\n            \"MappingId\": null,\n            \"ExternalId\": \"111395\",\n            \"Name\": \"Keller\",\n            \"Note\": null,\n            \"SupportTelephone\": null,\n            \"SupportFax\": null,\n            \"SupportMail\": null,\n            \"QuickSearch\": null,\n            \"DateModified\": \"2017-04-03T11:49:17\",\n            \"CustomValues\": [],\n            \"MainContactId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Companies?$expand=Contacts%2CTags%2CServiceObjects%2CMainContact&$skip=32\"\n}"}],"_postman_id":"44d20d0f-c466-4889-9570-bbafcb1c9c64"},{"name":"Get a Company","id":"fa2ca4d8-e3f4-40aa-983a-4be1fd846efc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Companies(9999482901L)?$expand=Contacts,Tags,ServiceObjects,MainContact","description":"<p>Get a specific Company.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Company's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Companies(9999482901L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contacts,Tags,ServiceObjects,MainContact"}],"variable":[]}},"response":[{"id":"56f02209-dd5c-47e8-a305-dc45b20d7a14","name":"Get a Company (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Companies(9988702208L)?$expand=Contacts,Tags,ServiceObjects,MainContact","host":["https://portal.mobilefieldreport.com/odata"],"path":["Companies(9988702208L)"],"query":[{"key":"$expand","value":"Contacts,Tags,ServiceObjects,MainContact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:29:59 GMT"},{"key":"Content-Length","value":"718"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Companies/@Element\",\n    \"Contacts\": [],\n    \"Tags\": [],\n    \"ServiceObjects\": [],\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9985392648\",\n        \"AddressString\": \"Musterstraße 1\",\n        \"Postal\": \"232323\",\n        \"City\": \"Musterstadt\",\n        \"State\": null,\n        \"Country\": null,\n        \"Longitude\": 0,\n        \"Latitude\": 0,\n        \"IsValidLocation\": false\n    },\n    \"Id\": \"9988702208\",\n    \"Version\": 1,\n    \"IsPhysicalPerson\": false,\n    \"IsOwner\": false,\n    \"IsSupplier\": false,\n    \"MappingId\": null,\n    \"ExternalId\": \"CO-304\",\n    \"Name\": \"Musterunternehmen\",\n    \"Note\": null,\n    \"SupportTelephone\": null,\n    \"SupportFax\": null,\n    \"SupportMail\": null,\n    \"QuickSearch\": null,\n    \"DateModified\": \"2019-09-09T07:21:47\",\n    \"CustomValues\": [],\n    \"MainContactId\": \"0\"\n}"}],"_postman_id":"fa2ca4d8-e3f4-40aa-983a-4be1fd846efc"},{"name":"Create a Company","id":"382f5b8e-bc86-433d-a362-6724f1d04e73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Location\": {\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\"\n    },\n    \"IsPhysicalPerson\": false,\n    \"Name\": \"Test company\",\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"IsSupplier\": false,\n    \"ExternalId\": \"123456\",\n    \"MainContactId\": \"0\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Companies","description":"<p>Creates a Company.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Company's name.</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>object</td>\n<td>Optional. Company's address.</td>\n</tr>\n<tr>\n<td>SupportTelephone</td>\n<td>string</td>\n<td>Optional. Company's contact phone.</td>\n</tr>\n<tr>\n<td>SupportFax</td>\n<td>string</td>\n<td>Optional. Company's fax number.</td>\n</tr>\n<tr>\n<td>SupportMail</td>\n<td>string</td>\n<td>Optional. Company's email address.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Optional. Notes about the Company.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External or ERP id for the company. If is not given, one is automatically generated.</td>\n</tr>\n<tr>\n<td>IsPhysicalPerson</td>\n<td>bool</td>\n<td>Optional. Wheter the customer is a company (<code>true</code>) or a single person. Default is <code>false</code>. If true, <code>MainContact</code> must be defined and the company will get the <strong>full name</strong> of this contact.</td>\n</tr>\n<tr>\n<td>MainContact</td>\n<td>object</td>\n<td>Optional. Main Contact for the Company. It won't be an existing contact - will instead create a new one and only needs the <code>LastName</code> property to be defined.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Companies"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"53046f9f-45c5-4b4d-8f54-fdb5aeaf1813","name":"Create a Company (Single Person)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Location\": {\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\"\n    },\n    \"IsPhysicalPerson\": true,\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"MainContact\": {\n        \"FirstName\": \"Person\",\n        \"LastName\": \"Muster\",\n        \"Email\": \"muster@mail.com\"\n    }\n}"},"url":"https://portal.mobilefieldreport.com/odata/Companies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Companies(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:53:22 GMT"},{"key":"Content-Length","value":"671"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Companies/@Element\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9993027656\",\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\",\n        \"State\": null,\n        \"Country\": null,\n        \"Longitude\": 0,\n        \"Latitude\": 0,\n        \"IsValidLocation\": false\n    },\n    \"Id\": \"9999482901\",\n    \"Version\": 1,\n    \"IsPhysicalPerson\": true,\n    \"IsOwner\": false,\n    \"IsSupplier\": false,\n    \"MappingId\": null,\n    \"ExternalId\": \"CO-312\",\n    \"Name\": \"Person Muster\",\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"QuickSearch\": null,\n    \"DateModified\": \"2019-09-10T12:53:22.3867946Z\",\n    \"CustomValues\": [],\n    \"MainContactId\": \"9999515674\"\n}"},{"id":"5fcef1dc-e47b-4ebb-8417-70058d44860e","name":"Create a Company (Company customer)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Location\": {\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\"\n    },\n    \"IsPhysicalPerson\": false,\n    \"Name\": \"Test company\",\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"MainContact\": {\n        \"FirstName\": \"Person\",\n        \"LastName\": \"Muster\"\n    }\n}"},"url":"https://portal.mobilefieldreport.com/odata/Companies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Companies(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:54:03 GMT"},{"key":"Content-Length","value":"671"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Companies/@Element\",\n    \"Location\": {\n        \"Version\": 0,\n        \"Id\": \"9993027657\",\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\",\n        \"State\": null,\n        \"Country\": null,\n        \"Longitude\": 0,\n        \"Latitude\": 0,\n        \"IsValidLocation\": false\n    },\n    \"Id\": \"9999482902\",\n    \"Version\": 1,\n    \"IsPhysicalPerson\": false,\n    \"IsOwner\": false,\n    \"IsSupplier\": false,\n    \"MappingId\": null,\n    \"ExternalId\": \"CO-313\",\n    \"Name\": \"Test company\",\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"QuickSearch\": null,\n    \"DateModified\": \"2019-09-10T12:54:02.7052305Z\",\n    \"CustomValues\": [],\n    \"MainContactId\": \"9999515675\"\n}"}],"_postman_id":"382f5b8e-bc86-433d-a362-6724f1d04e73"},{"name":"Update a Company","id":"ce9c0cc3-4869-4d52-b040-212547d095ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"Id\": \"1015808\",\n    \"IsPhysicalPerson\": false,\n    \"Name\": \"Test company\",\n    \"Note\": \"Test note\",\n    \"SupportTelephone\": \"000000\",\n    \"SupportFax\": \"000000\",\n    \"SupportMail\": \"mail@mail.com\",\n    \"ExternalId\": \"123456789\",\n    \"Location\": {\n        \"Id\": \"11694669879\",\n        \"AddressString\": \"Musterstr. 1\",\n        \"Postal\": \"00000\",\n        \"City\": \"Leipzig\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Companies(1015808L)","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Company.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Companies(1015808L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce9c0cc3-4869-4d52-b040-212547d095ef"},{"name":"Delete a  Company","id":"1bdb1a4f-774f-44d4-91f8-fe7885c5245f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Companies(884736L)","description":"<p>Deletes a company with the given id.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Companies(884736L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bdb1a4f-774f-44d4-91f8-fe7885c5245f"}],"id":"8518e892-0763-4b09-be61-aa90e91657d2","description":"<p>Customers are represented with Companies. Companies can be a single person or an enterprise. A Company can hold several <strong>Service Objects</strong>, <strong>Contacts</strong> and important information about the billing address. <strong>Tags</strong> can be applied to categorize them.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Company's id.</td>\n</tr>\n<tr>\n<td>IsPhysicalPerson</td>\n<td>bool</td>\n<td>Wheter the company is a single person.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Company's external or ERP id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Company's name.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Notes about the company.</td>\n</tr>\n<tr>\n<td>SupportTelephone</td>\n<td>string</td>\n<td>Company's main contact phone number.</td>\n</tr>\n<tr>\n<td>SupportFax</td>\n<td>string</td>\n<td>Company's fax number.</td>\n</tr>\n<tr>\n<td>SupportMail</td>\n<td>string</td>\n<td>Company's email address.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>Company's custom values list.</td>\n</tr>\n<tr>\n<td>MainContactId</td>\n<td>int</td>\n<td>Required. Company's main contact's id.</td>\n</tr>\n<tr>\n<td>Contacts</td>\n<td>array</td>\n<td>Company's contacts list.</td>\n</tr>\n<tr>\n<td>Tags</td>\n<td>array</td>\n<td>Company's tags list.</td>\n</tr>\n<tr>\n<td>ServiceObjects</td>\n<td>array</td>\n<td>Company's related service objects list.</td>\n</tr>\n<tr>\n<td>IsSupplier</td>\n<td>bool</td>\n<td>Wheter the company is a supplier.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"500f55a5-3c3b-40fb-9f12-d442232d35fc"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"0755556c-b57d-40f7-9e99-7f05b80770e9"}}],"_postman_id":"8518e892-0763-4b09-be61-aa90e91657d2","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Contact","item":[{"name":"Get Contacts","id":"0ede389b-7bb7-41dc-a07d-82a75f6f962e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Contacts?$expand=Company,User","description":"<p>Get all contacts.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Contacts"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Company,User"}],"variable":[]}},"response":[{"id":"ba749780-7aa3-420f-aac2-ca5767dd80d2","name":"Get Contacts (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Contacts?$expand=Company,User","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","Contacts"],"query":[{"key":"$expand","value":"Company,User"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 14:51:56 GMT"},{"key":"Content-Length","value":"25857"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Contacts\",\n    \"value\": [\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"8017281039\",\n                \"Version\": 6,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"Testkunde1223id\",\n                \"Name\": \"Testkunde 1223\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-18T11:40:29\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"410583043\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank2\",\n            \"LastName\": \"Graf2\",\n            \"Email\": \"info@simplias.com\",\n            \"JobTitle\": \"Geschäftsführer\",\n            \"MobilePhone\": \"03823123422\",\n            \"Telephone\": \"0176873234234\",\n            \"Fax\": \"2432341234\",\n            \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n            \"DateModified\": \"2019-09-09T13:43:32\",\n            \"Version\": 1252,\n            \"CompanyId\": \"8017281039\",\n            \"IsUser\": true,\n            \"ExternalId\": \"frank2graf2ext\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"440696832\",\n                \"Version\": 58,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"440762368\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Pascal2\",\n            \"LastName\": \"Friedrich\",\n            \"Email\": \"pascal.friedrich@atlas-maschinen-gmbh.de\",\n            \"JobTitle\": \"\",\n            \"MobilePhone\": \"+49 172 27378234\",\n            \"Telephone\": \"+49 672 7782398\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2017-09-14T17:57:27\",\n            \"Version\": 10,\n            \"CompanyId\": \"440696832\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"442728449\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank\",\n            \"LastName\": \"Steiner\",\n            \"Email\": \"jan.hoeppner@gmail.com\",\n            \"JobTitle\": \"Serviceleiter\",\n            \"MobilePhone\": \"234234234\",\n            \"Telephone\": \"234234\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2019-03-21T08:09:59\",\n            \"Version\": 67,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"442728450\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Nikola\",\n            \"LastName\": \" Petrovic \",\n            \"Email\": \"np@simplias-demo.com\",\n            \"JobTitle\": \"Maler\",\n            \"MobilePhone\": \"0176060606\",\n            \"Telephone\": \"232323232323\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2018-11-26T16:10:29\",\n            \"Version\": 35,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"442728451\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Ophelia \",\n            \"LastName\": \"Danninger\",\n            \"Email\": \"od@simplias-demo.com\",\n            \"JobTitle\": \"Auszubildende\",\n            \"MobilePhone\": \"017606060606\",\n            \"Telephone\": \"\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2018-12-20T15:16:02\",\n            \"Version\": 25,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"442728452\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Besnik \",\n            \"LastName\": \"Avdylaj \",\n            \"Email\": \"frank.steuer@test.derr\",\n            \"JobTitle\": \"Techniker\",\n            \"MobilePhone\": \"017606060606\",\n            \"Telephone\": \"90273654\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2019-02-07T16:02:21\",\n            \"Version\": 41,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"440696832\",\n                \"Version\": 58,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"450363405\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank\",\n            \"LastName\": \"Steiner\",\n            \"Email\": \"\",\n            \"JobTitle\": \"Steuerberater\",\n            \"MobilePhone\": \"\",\n            \"Telephone\": \"\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2014-12-10T18:17:42\",\n            \"Version\": 8,\n            \"CompanyId\": \"440696832\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"458096650\",\n            \"CustomValues\": [],\n            \"FirstName\": \"asdfasdf\",\n            \"LastName\": \"asdfasdf\",\n            \"Email\": \"\",\n            \"JobTitle\": \"\",\n            \"MobilePhone\": \"\",\n            \"Telephone\": \"asdf\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2014-01-05T16:58:30\",\n            \"Version\": 5,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"458096651\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank\",\n            \"LastName\": \"Sturni\",\n            \"Email\": \"frank.sturnie@est.de\",\n            \"JobTitle\": \"\",\n            \"MobilePhone\": \"3234234234\",\n            \"Telephone\": \"asdf\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2019-03-06T10:37:52\",\n            \"Version\": 9,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"458555393\",\n            \"CustomValues\": [],\n            \"FirstName\": \"dsfasdf\",\n            \"LastName\": \"asdfasd\",\n            \"Email\": \"frank.tester@tester.de\",\n            \"JobTitle\": \"asdfasdfasdf\",\n            \"MobilePhone\": \"\",\n            \"Telephone\": \"fasdf\",\n            \"Fax\": \"\",\n            \"Note\": \"\",\n            \"DateModified\": \"2014-07-31T06:36:54\",\n            \"Version\": 7,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"440696832\",\n                \"Version\": 58,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"251234\",\n                \"Name\": \"Atlas Maschinen GmbH\",\n                \"Note\": \"Asdfasdf\",\n                \"SupportTelephone\": \"\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"info@atlas.de,peterson@tet.de\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-04-07T10:18:32\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1049624579\",\n            \"CustomValues\": [],\n            \"FirstName\": \"asdfasdf\",\n            \"LastName\": \"Planungshilfe\",\n            \"Email\": \"planninghelper_0@simplias-info.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"234234234\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2019-02-03T14:50:45\",\n            \"Version\": 14,\n            \"CompanyId\": \"440696832\",\n            \"IsUser\": true,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1195147264\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Dirk\",\n            \"LastName\": \"Träutlein\",\n            \"Email\": \"frank.test@test.de\",\n            \"JobTitle\": \"manager\",\n            \"MobilePhone\": null,\n            \"Telephone\": \"08654 57872266\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-04-20T15:31:06\",\n            \"Version\": 6,\n            \"CompanyId\": \"1194524674\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1275625473\",\n                \"Version\": 28,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Gärtnerei Calla\",\n                \"Note\": \"Riecht gut\",\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-15T07:39:38\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1275691009\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Ursula\",\n            \"LastName\": \"Blum\",\n            \"Email\": null,\n            \"JobTitle\": null,\n            \"MobilePhone\": \"0176 54545454\",\n            \"Telephone\": \"0234234 324234\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2016-08-12T09:19:04\",\n            \"Version\": 4,\n            \"CompanyId\": \"1275625473\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1275691013\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Hans\",\n            \"LastName\": \"Werk\",\n            \"Email\": \"info@simplias.com\",\n            \"JobTitle\": \"Techniker\",\n            \"MobilePhone\": \"017687878787\",\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2019-02-11T08:56:37\",\n            \"Version\": 15,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1275789316\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Norman\",\n            \"LastName\": \"Ittner\",\n            \"Email\": \"ni@simplias-demo.com\",\n            \"JobTitle\": \"Technikerin\",\n            \"MobilePhone\": \"017689898989\",\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2018-11-27T11:28:59\",\n            \"Version\": 16,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"2513469448\",\n                \"Version\": 50,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Klimatechnik Streiter GmbH-\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2019-02-22T11:30:27\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1275789317\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Radu\",\n            \"LastName\": \"Lupur \",\n            \"Email\": \"meister@simplias.com\",\n            \"JobTitle\": \"Techniker\",\n            \"MobilePhone\": \"017645454545\",\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2019-08-30T12:27:31\",\n            \"Version\": 25,\n            \"CompanyId\": \"2513469448\",\n            \"IsUser\": true,\n            \"ExternalId\": \"\",\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1194524674\",\n                \"Version\": 38,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"DM \",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": \"jan.hoeppner@gmail.com\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-04-22T13:39:41\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1313964074\",\n            \"CustomValues\": [],\n            \"FirstName\": \"asdfasdf\",\n            \"LastName\": \"asdfadsfasdf\",\n            \"Email\": null,\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-05-02T12:58:56\",\n            \"Version\": 3,\n            \"CompanyId\": \"1194524674\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"1641447431\",\n                \"Version\": 4,\n                \"IsPhysicalPerson\": true,\n                \"IsOwner\": false,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": null,\n                \"Name\": \"Tamina Wüst\",\n                \"Note\": null,\n                \"SupportTelephone\": null,\n                \"SupportFax\": null,\n                \"SupportMail\": null,\n                \"QuickSearch\": null,\n                \"DateModified\": \"2015-09-07T12:06:26\",\n                \"CustomValues\": [],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1641512979\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Tamina\",\n            \"LastName\": \"Wüst\",\n            \"Email\": \"jan.hoeppner@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": \"01765 674635793\",\n            \"Telephone\": \"\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-09-21T14:36:26\",\n            \"Version\": 4,\n            \"CompanyId\": \"1641447431\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1650819076\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Christine\",\n            \"LastName\": \"Ebner\",\n            \"Email\": \"christine.ebner@simplias.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-09-10T07:17:55\",\n            \"Version\": 3,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1653735424\",\n            \"CustomValues\": [],\n            \"FirstName\": \"account\",\n            \"LastName\": \"hvac\",\n            \"Email\": \"hvac@mobilefieldreport.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-09-10T17:24:09\",\n            \"Version\": 3,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1664942099\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Tamina\",\n            \"LastName\": \"Wüst\",\n            \"Email\": \"tamina.wuest@gmx.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": \"\",\n            \"DateModified\": \"2015-09-14T14:49:41\",\n            \"Version\": 4,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1675362320\",\n            \"CustomValues\": [],\n            \"FirstName\": \"jan\",\n            \"LastName\": \"Hoeppner\",\n            \"Email\": \"hvac@mobilefieldreport.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-09-17T11:47:08\",\n            \"Version\": 3,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1733787674\",\n            \"CustomValues\": [],\n            \"FirstName\": \"frank\",\n            \"LastName\": \"Pascal\",\n            \"Email\": \"jan.hoeppner@gmail.com\",\n            \"JobTitle\": \"test3\",\n            \"MobilePhone\": null,\n            \"Telephone\": \"38234234\",\n            \"Fax\": null,\n            \"Note\": \"\",\n            \"DateModified\": \"2016-03-17T12:05:21\",\n            \"Version\": 7,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1794211858\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank\",\n            \"LastName\": \"Stubert\",\n            \"Email\": \"frank.stubert@krankenhaus.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-10-27T09:21:34\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1804075016\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Tobias\",\n            \"LastName\": \"Kalmann\",\n            \"Email\": \"jan.hoeppner@simplias.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": \"\",\n            \"Telephone\": \"\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2017-01-29T15:05:55\",\n            \"Version\": 4,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1822621706\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Peter\",\n            \"LastName\": \"Justus\",\n            \"Email\": \"peter.justus@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"7342732 23423423\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-11-03T09:49:16\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Company\": {\n                \"Location\": null,\n                \"Id\": \"410517505\",\n                \"Version\": 103,\n                \"IsPhysicalPerson\": false,\n                \"IsOwner\": true,\n                \"IsSupplier\": false,\n                \"MappingId\": null,\n                \"ExternalId\": \"3532333\",\n                \"Name\": \"Hausverwaltung Störlitz\",\n                \"Note\": \"Sdfasdfasdfasfasdf\",\n                \"SupportTelephone\": \"+05744 5030\",\n                \"SupportFax\": null,\n                \"SupportMail\": \"facility service SÜD GmbH\",\n                \"QuickSearch\": null,\n                \"DateModified\": \"2018-02-02T14:37:15\",\n                \"CustomValues\": [\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"80EF5255-24B0-03C8-1D93-D4ED2BDF95F6\\\",\\\"Name\\\":\\\"Branche\\\"}\",\n                        \"Value\": null\n                    },\n                    {\n                        \"Meta\": \"{\\\"Id\\\":\\\"AC205CCA-3DA3-4A78-469D-936EBB244DAE\\\",\\\"Name\\\":\\\"z.H.\\\"}\",\n                        \"Value\": null\n                    }\n                ],\n                \"MainContactId\": \"0\"\n            },\n            \"Id\": \"1845428244\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Jan\",\n            \"LastName\": \"Höppner\",\n            \"Email\": \"jan.messe@mobilefieldreport.com\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": null,\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-11-11T09:04:53\",\n            \"Version\": 3,\n            \"CompanyId\": \"410517505\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1853587470\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Peter\",\n            \"LastName\": \"Raznak\",\n            \"Email\": \"peter.raznak@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"0363 32827432\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-11-12T13:33:21\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1870561288\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Hans\",\n            \"LastName\": \"Hausmeister\",\n            \"Email\": \"hans.hausmeister@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"32323\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-11-17T13:35:18\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"1950482455\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frida\",\n            \"LastName\": \"Hoehn\",\n            \"Email\": \"frida.hoehn@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"0323423432 \",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2015-12-14T16:26:12\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"2032533508\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Frank\",\n            \"LastName\": \"Steiner\",\n            \"Email\": \"frank.steiner@test.de\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"032344\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2016-01-13T09:11:55\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        },\n        {\n            \"Id\": \"2041839621\",\n            \"CustomValues\": [],\n            \"FirstName\": \"Peter\",\n            \"LastName\": \"Schmidt\",\n            \"Email\": \"\",\n            \"JobTitle\": null,\n            \"MobilePhone\": null,\n            \"Telephone\": \"0734234 4323\",\n            \"Fax\": null,\n            \"Note\": null,\n            \"DateModified\": \"2016-01-15T08:25:13\",\n            \"Version\": 3,\n            \"CompanyId\": \"0\",\n            \"IsUser\": false,\n            \"ExternalId\": null,\n            \"Gender\": \"Male\",\n            \"UserId\": \"0\"\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Contacts?$expand=Company%2CUser&$skip=32\"\n}"}],"_postman_id":"0ede389b-7bb7-41dc-a07d-82a75f6f962e"},{"name":"Retrieve a Contact","id":"05c55a38-ac26-473f-ab64-c9d3fd5d1e58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Contacts(9876013064L)?$expand=Company,User","description":"<p>Get a Contact.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Contact.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Contacts(9876013064L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Company,User"}],"variable":[]}},"response":[{"id":"800d7df6-7b52-40f0-87f5-68033ed36759","name":"Retrieve a Contact (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Contacts(9876013064L)?$expand=Company,User","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","Contacts(9876013064L)"],"query":[{"key":"$expand","value":"Company,User"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 14:58:00 GMT"},{"key":"Content-Length","value":"452"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Contacts/@Element\",\n    \"Id\": \"9876013064\",\n    \"CustomValues\": [],\n    \"FirstName\": \"Benjamin Amós Amos Carta\",\n    \"LastName\": \"Amos\",\n    \"Email\": \"benjamin.amos@simplias.com\",\n    \"JobTitle\": null,\n    \"MobilePhone\": null,\n    \"Telephone\": null,\n    \"Fax\": null,\n    \"Note\": null,\n    \"DateModified\": \"2019-08-30T12:47:34\",\n    \"Version\": 2,\n    \"CompanyId\": \"0\",\n    \"IsUser\": false,\n    \"ExternalId\": \"B-091194-A\",\n    \"Gender\": \"Male\",\n    \"UserId\": \"0\"\n}"}],"_postman_id":"05c55a38-ac26-473f-ab64-c9d3fd5d1e58"},{"name":"Create a Contact","id":"5784d2d0-6043-4e4b-b165-f4d981390d5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FirstName\": \"Max\",\n    \"LastName\": \"Musterman\",\n    \"Email\": \"bb.aa.xx@simplias.com\",\n    \"MobilePhone\": \"0101010101\",\n    \"Telephone\": \"1010101010\",\n    \"IsUser\": false,\n    \"ExternalId\": \"B-091194-AV\",\n    \"Gender\": \"Male\",\n    \"Fax\": \"23232\",\n    \"Note\": \"Note for the contact\",\n    \"CompanyId\": \"0\",\n    \"JobTitle\": \"Testmitarbeiter\"\n}\n  "},"url":"https://portal.mobilefieldreport.com/odata/Contacts","description":"<p>Create a Contact.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Required. Last name of the Contact.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>string</td>\n<td>Optional. First name of the Contact.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Optional. Email of the Contact.</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Optional. Main contact phone of the Contact.</td>\n</tr>\n<tr>\n<td>MobilePhone</td>\n<td>string</td>\n<td>Optional. Mobile phone of the Contact.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External Id or ERP id for the Contact.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td>string</td>\n<td>Optional. Contact's gender (if applies).</td>\n</tr>\n<tr>\n<td>IsUser</td>\n<td>bool</td>\n<td>Optional. Wheter the contact is a system user or not. Default is false.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Optional. Note about the contact.</td>\n</tr>\n<tr>\n<td>CompanyId</td>\n<td>int</td>\n<td>Optional. Company linked to the contact (if applies).</td>\n</tr>\n<tr>\n<td>JobTitle</td>\n<td>string</td>\n<td>Optional. Contact's role in the company (if applies).</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Contacts"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"d24f0598-b92f-4931-a0e4-e48ed5079896","name":"Create a Contact (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FirstName\": \"Benjamin X-User\",\n    \"LastName\": \"Amos\",\n    \"Email\": \"bb.aa.xx@simplias.com\",\n    \"MobilePhone\": \"0101010101\",\n    \"Telephone\": \"1010101010\",\n    \"IsUser\": false,\n    \"ExternalId\": \"B-091194-AV\",\n    \"Gender\": \"Male\",\n    \"Fax\": \"23232\",\n    \"Note\": \"Note for the contact\",\n    \"CompanyId\": \"440696832\",\n    \"JobTitle\": \"Testmitarbeiter\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Contacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Contacts(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 15:03:19 GMT"},{"key":"Content-Length","value":"501"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Contacts/@Element\",\n    \"Id\": \"9985425427\",\n    \"CustomValues\": [],\n    \"FirstName\": \"Benjamin X-User\",\n    \"LastName\": \"Amos\",\n    \"Email\": \"bb.aa.xx@simplias.com\",\n    \"JobTitle\": \"Testmitarbeiter\",\n    \"MobilePhone\": \"0101010101\",\n    \"Telephone\": \"1010101010\",\n    \"Fax\": \"23232\",\n    \"Note\": \"Note for the contact\",\n    \"DateModified\": \"2019-09-09T15:03:19.8626772Z\",\n    \"Version\": 1,\n    \"CompanyId\": \"440696832\",\n    \"IsUser\": false,\n    \"ExternalId\": \"B-091194-AV\",\n    \"Gender\": \"Male\",\n    \"UserId\": \"0\"\n}"}],"_postman_id":"5784d2d0-6043-4e4b-b165-f4d981390d5b"},{"name":"Update Contact","id":"5cabde27-5ca7-413d-90d4-d5a14ecec859","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Id\": \"1081344\",\r\n  \"FirstName\": \"Ben\",\r\n  \"LastName\": \"Amos\",\r\n  \"Email\": \"ben@simplias.com\",\r\n  \"JobTitle\": \"Developer\",\r\n  \"MobilePhone\": \"04178545\",\r\n  \"Telephone\": \"4535478\",\r\n  \"Note\": \"Note for the contact\",\r\n  \"ExternalId\": \"B-1\",\r\n  \"Gender\": \"Male\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Contacts(1081344L)","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the Contact.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Contacts(1081344L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cabde27-5ca7-413d-90d4-d5a14ecec859"}],"id":"f29af514-2b9b-4657-a2e6-aded1ec101b3","description":"<p>Contacts represents persons that can be linked to <strong>Service Objects</strong> and <strong>Companies</strong>. Contacts can also be <strong>Users</strong>. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Contact's id.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>Custom values list for the contact.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>string</td>\n<td>Contact's first name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Contact's last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Contact's email address</td>\n</tr>\n<tr>\n<td>JobTitle</td>\n<td>string</td>\n<td>Contact's role in the company, if defined.</td>\n</tr>\n<tr>\n<td>MobilePhone</td>\n<td>string</td>\n<td>Contact's mobile phone number.</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Contact's main phone number.</td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>string</td>\n<td>Contact's fax number.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Notes about the contact</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>CompanyId</td>\n<td>int</td>\n<td>Contact's company id.</td>\n</tr>\n<tr>\n<td>IsUser</td>\n<td>bool</td>\n<td>Wheter the contact is a registered user in the system.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>External or ERP id.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td>string</td>\n<td>Contact's gender. Valid values are: <strong>Male</strong>, <strong>Female</strong> and <strong>Unknown</strong>.</td>\n</tr>\n<tr>\n<td>UserId</td>\n<td>int</td>\n<td>Related User entity id, if defined.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"ee2c5fde-d22d-4113-9cb4-a29fb68e94f3"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"01d502b4-43e2-43b4-99fc-877fb022e5d8"}}],"_postman_id":"f29af514-2b9b-4657-a2e6-aded1ec101b3","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Product","item":[{"name":"Get Products","id":"35300e9e-9f57-4da6-ab57-0678689d997f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Products?$expand=CustomValueStepTemplate/Steps","description":"<p>Get all Products.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Products"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"CustomValueStepTemplate/Steps"}],"variable":[]}},"response":[{"id":"8012883f-42e2-43a5-acfb-55b3c2099cfc","name":"Get Products (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Products?$expand=CustomValueStepTemplate/Steps","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","Products"],"query":[{"key":"$expand","value":"CustomValueStepTemplate/Steps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:09:56 GMT"},{"key":"Content-Length","value":"55121"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Products\",\n    \"value\": [\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"614171468\",\n                        \"MobileId\": \"614171468\",\n                        \"Version\": 1,\n                        \"Name\": \"Gebäude\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gebäude\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Etage\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"503218176\",\n                        \"ParentId\": \"614171467\"\n                    },\n                    {\n                        \"Id\": \"614171467\",\n                        \"MobileId\": \"614171467\",\n                        \"Version\": 2,\n                        \"Name\": \"EinsatzorteDetails\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Group\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\\"GroupType\\\":0,\\\"IsCloneable\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": \"\",\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"503218176\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"503218176\",\n                \"Version\": 1,\n                \"Name\": \"Raum\",\n                \"MappingId\": null,\n                \"DateModified\": \"2014-03-21T11:02:31\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"503250944\",\n            \"Version\": 2,\n            \"Name\": \"OC\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2017-08-06T11:34:02\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"503218176\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"518784798\",\n                        \"MobileId\": \"518784798\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"517668872\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"518784799\",\n                        \"MobileId\": \"518784799\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"517668872\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"518784797\",\n                        \"MobileId\": \"518784797\",\n                        \"Version\": 3,\n                        \"Name\": \"Unterschrift\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"SignDocument\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\\"name\\\":\\\"{\\\\\\\"name\\\\\\\":\\\\\\\"\\\",\\\"isRequired\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"517668872\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"517668872\",\n                \"Version\": 2,\n                \"Name\": \"test\",\n                \"MappingId\": null,\n                \"DateModified\": \"2014-07-24T07:33:28\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"517799939\",\n            \"Version\": 1,\n            \"Name\": \"test\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2014-01-16T16:28:41\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"517668872\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1013156202\",\n                        \"MobileId\": \"1013156202\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1014202374\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1013156201\",\n                        \"MobileId\": \"1013156201\",\n                        \"Version\": 3,\n                        \"Name\": \"Herstellergarantie\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Garantie bis\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"Datum für die Herstellergarantie\",\n                        \"Comment\": \"\",\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1014202374\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1014202374\",\n                \"Version\": 2,\n                \"Name\": \"Kühlschrank\",\n                \"MappingId\": null,\n                \"DateModified\": \"2014-11-14T07:38:45\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1014661120\",\n            \"Version\": 1,\n            \"Name\": \"Kühlschrank\",\n            \"SubKey\": \"Gefriertruhe\",\n            \"Description\": null,\n            \"DateModified\": \"2014-11-14T07:38:09\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1014202374\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1182859268\",\n                \"Version\": 1,\n                \"Name\": \"Kaffeemaschine\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-02-24T15:55:27\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1183481856\",\n            \"Version\": 7,\n            \"Name\": \"Kaffeemaschine\",\n            \"SubKey\": \"45665\",\n            \"Description\": null,\n            \"DateModified\": \"2017-08-08T12:03:24\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1182859268\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1202618370\",\n                \"Version\": 1,\n                \"Name\": \"A-Produkt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-03-09T08:37:48\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1203109888\",\n            \"Version\": 3,\n            \"Name\": \"A-Produkt\",\n            \"SubKey\": \"501\",\n            \"Description\": null,\n            \"DateModified\": \"2017-08-06T11:33:45\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1202618370\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1202618371\",\n                \"Version\": 1,\n                \"Name\": \"B-Produkt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-03-09T08:38:01\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1203109889\",\n            \"Version\": 2,\n            \"Name\": \"B-Produkt\",\n            \"SubKey\": \"522\",\n            \"Description\": null,\n            \"DateModified\": \"2017-04-10T18:18:37\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1202618371\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1202618372\",\n                \"Version\": 1,\n                \"Name\": \"A-Produkt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-03-09T08:38:05\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1203109890\",\n            \"Version\": 2,\n            \"Name\": \"A-Produkt\",\n            \"SubKey\": \"402\",\n            \"Description\": \"\",\n            \"DateModified\": \"2015-03-09T08:38:15\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1202618372\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1896416441\",\n                        \"MobileId\": \"1896416441\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1202618373\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1896416442\",\n                        \"MobileId\": \"1896416442\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1202618373\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1896416443\",\n                        \"MobileId\": \"1896416443\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1202618373\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1202618373\",\n                \"Version\": 2,\n                \"Name\": \"B-Produkt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-11-26T09:31:27\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1203109891\",\n            \"Version\": 3,\n            \"Name\": \"Teh Proasdfasdf\",\n            \"SubKey\": \"121\",\n            \"Description\": null,\n            \"DateModified\": \"2017-05-10T07:16:09\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1202618373\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1407778835\",\n                        \"MobileId\": \"1407778835\",\n                        \"Version\": 5,\n                        \"Name\": \"Allgemeine Informationen\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erstinstallation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kühlflüssigkeit\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1408008192\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1408008192\",\n                \"Version\": 6,\n                \"Name\": \"Klimaanlage \",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-03-05T07:18:37\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1408040960\",\n            \"Version\": 2,\n            \"Name\": \"Klimaanlage \",\n            \"SubKey\": \"VTS\",\n            \"Description\": null,\n            \"DateModified\": \"2019-03-05T07:18:37\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1408008192\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1758726318\",\n                        \"MobileId\": \"1758726318\",\n                        \"Version\": 3,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1758726319\",\n                        \"MobileId\": \"1758726319\",\n                        \"Version\": 3,\n                        \"Name\": \"sadfasdf asdf\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"Group\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1758726323\",\n                        \"MobileId\": \"1758726323\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"8\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 7,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"1758726319\"\n                    },\n                    {\n                        \"Id\": \"1758726324\",\n                        \"MobileId\": \"1758726324\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"9\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 8,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"1758726319\"\n                    },\n                    {\n                        \"Id\": \"1758726317\",\n                        \"MobileId\": \"1758726317\",\n                        \"Version\": 4,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1758726320\",\n                        \"MobileId\": \"1758726320\",\n                        \"Version\": 3,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"5\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 4,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"1758726319\"\n                    },\n                    {\n                        \"Id\": \"1758726321\",\n                        \"MobileId\": \"1758726321\",\n                        \"Version\": 3,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"6\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 5,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"sdfasdfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"1758726319\"\n                    },\n                    {\n                        \"Id\": \"1758726322\",\n                        \"MobileId\": \"1758726322\",\n                        \"Version\": 3,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"7\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 6,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfsdaf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"1758726319\"\n                    },\n                    {\n                        \"Id\": \"1626673453\",\n                        \"MobileId\": \"1626673453\",\n                        \"Version\": 6,\n                        \"Name\": \"Anlagendaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erste Installation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": \"\",\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978624\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1629978624\",\n                \"Version\": 6,\n                \"Name\": \"Innengerät\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-11-25T17:07:39\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1630011392\",\n            \"Version\": 4,\n            \"Name\": \"Innengerät\",\n            \"SubKey\": null,\n            \"Description\": \"\",\n            \"DateModified\": \"2018-10-15T11:40:41\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1629978624\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1626673452\",\n                        \"MobileId\": \"1626673452\",\n                        \"Version\": 2,\n                        \"Name\": \"Anlagendaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erstinstallation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1629978625\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1629978625\",\n                \"Version\": 2,\n                \"Name\": \"Rolltreppe\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-09-03T06:07:31\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1630011393\",\n            \"Version\": 3,\n            \"Name\": \"Rolltreppe\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2017-09-25T12:02:53\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1629978625\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1853688135\",\n                        \"MobileId\": \"1853688135\",\n                        \"Version\": 3,\n                        \"Name\": \"Produkdaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"<span>Der patruus auf einen Blick.</span><ul><li>BHKW Baureihe mit einer elektrischen Leistung von 50 bis 400 kW</li><li>Betrieb mit Erdgas oder Biogas</li><li>Ausführung als anschlussfertiges Kompaktmodul</li><li>Hohe Anlagenverfügbarkeit durch etablierte Motorentechnik</li><li>Verfügbar sowohl mit Saugmotoren als auch mit turboaufgeladenen Motoren</li><li>Modularer Aufbau erleichtert Installation an schwer zugänglichen Orten</li><li>Robust und wartungsarm</li></ul>\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029249\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"9584345090\",\n                        \"MobileId\": \"9584345090\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029249\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1855029249\",\n                \"Version\": 7,\n                \"Name\": \"BHKW\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-07-27T11:56:38\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1855062016\",\n            \"Version\": 4,\n            \"Name\": \"BHKWaaaa\",\n            \"SubKey\": \"Patruus\",\n            \"Description\": null,\n            \"DateModified\": \"2019-07-27T11:56:38\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1855029249\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1853688115\",\n                        \"MobileId\": \"1853688115\",\n                        \"Version\": 3,\n                        \"Name\": \"Produktdaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029250\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1855029250\",\n                \"Version\": 3,\n                \"Name\": \"BHKW\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-11-12T13:32:04\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1855062017\",\n            \"Version\": 1,\n            \"Name\": \"BHKW\",\n            \"SubKey\": \"g-box\",\n            \"Description\": null,\n            \"DateModified\": \"2015-11-12T09:25:58\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1855029250\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1852998403\",\n                        \"MobileId\": \"1852998403\",\n                        \"Version\": 2,\n                        \"Name\": \"Produktdaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029251\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"9584345088\",\n                        \"MobileId\": \"9584345088\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029251\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"9584345089\",\n                        \"MobileId\": \"9584345089\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1855029251\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1855029251\",\n                \"Version\": 6,\n                \"Name\": \"BHKW\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-07-27T11:55:45\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1855062018\",\n            \"Version\": 4,\n            \"Name\": \"BHKW2asdf\",\n            \"SubKey\": \"agenitor\",\n            \"Description\": null,\n            \"DateModified\": \"2019-07-27T11:55:45\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1855029251\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"1896416425\",\n                        \"MobileId\": \"1896416425\",\n                        \"Version\": 3,\n                        \"Name\": \"3\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1896416426\",\n                        \"MobileId\": \"1896416426\",\n                        \"Version\": 3,\n                        \"Name\": \"2\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 5,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1896416427\",\n                        \"MobileId\": \"1896416427\",\n                        \"Version\": 4,\n                        \"Name\": \"1\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 6,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1908670663\",\n                        \"MobileId\": \"1908670663\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1908670664\",\n                        \"MobileId\": \"1908670664\",\n                        \"Version\": 2,\n                        \"Name\": \"Choice\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"5\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1908670666\",\n                        \"MobileId\": \"1908670666\",\n                        \"Version\": 2,\n                        \"Name\": \"asdfas dfasdfas\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"7\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 4,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"1908670665\",\n                        \"MobileId\": \"1908670665\",\n                        \"Version\": 3,\n                        \"Name\": \"asdfasdfasdf\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"6\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003904\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"1899003904\",\n                \"Version\": 5,\n                \"Name\": \"Neues Produkt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-11-30T18:36:40\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1899036672\",\n            \"Version\": 1,\n            \"Name\": \"Neues Produkt\",\n            \"SubKey\": \"Das Produkt\",\n            \"Description\": null,\n            \"DateModified\": \"2015-11-26T09:18:18\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1899003904\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"2075263367\",\n                        \"MobileId\": \"2075263367\",\n                        \"Version\": 2,\n                        \"Name\": \"Innengeräte\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Group\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003905\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"2075263368\",\n                        \"MobileId\": \"2075263368\",\n                        \"Version\": 2,\n                        \"Name\": \"Innengerät 1\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennumer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003905\",\n                        \"ParentId\": \"2075263367\"\n                    },\n                    {\n                        \"Id\": \"2075263369\",\n                        \"MobileId\": \"2075263369\",\n                        \"Version\": 2,\n                        \"Name\": \"Innengerät 2\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003905\",\n                        \"ParentId\": \"2075263367\"\n                    },\n                    {\n                        \"Id\": \"2075263370\",\n                        \"MobileId\": \"2075263370\",\n                        \"Version\": 2,\n                        \"Name\": \"Innengerät\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"1899003905\",\n                        \"ParentId\": \"2075263367\"\n                    }\n                ],\n                \"Id\": \"1899003905\",\n                \"Version\": 3,\n                \"Name\": \"Neues Innengerät\",\n                \"MappingId\": null,\n                \"DateModified\": \"2016-01-26T07:16:02\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1899036673\",\n            \"Version\": 1,\n            \"Name\": \"Neues Innengerät\",\n            \"SubKey\": \"234234\",\n            \"Description\": null,\n            \"DateModified\": \"2015-11-26T09:40:07\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1899003905\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1899003906\",\n                \"Version\": 1,\n                \"Name\": \"test32\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-11-26T09:42:38\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1899036674\",\n            \"Version\": 1,\n            \"Name\": \"test32\",\n            \"SubKey\": \"sw32\",\n            \"Description\": null,\n            \"DateModified\": \"2015-11-26T09:42:38\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1899003906\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"1931018243\",\n                \"Version\": 1,\n                \"Name\": \"Telefonanlage\",\n                \"MappingId\": null,\n                \"DateModified\": \"2015-12-07T09:45:35\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"1931051008\",\n            \"Version\": 1,\n            \"Name\": \"Telefonanlage\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2015-12-07T09:45:35\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"1931018243\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"2078475606\",\n                        \"MobileId\": \"2078475606\",\n                        \"Version\": 4,\n                        \"Name\": \"Systemparameter\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bestückleistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Softwarestand Ankunft\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Softwarestand Abfahrt\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"2080768001\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"2347336005\",\n                        \"MobileId\": \"2347336005\",\n                        \"Version\": 2,\n                        \"Name\": \"Ströme\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"L 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"L2 \\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"L3\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"2080768001\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"2080768001\",\n                \"Version\": 5,\n                \"Name\": \"FE55\",\n                \"MappingId\": null,\n                \"DateModified\": \"2016-04-19T12:57:04\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"2081030144\",\n            \"Version\": 1,\n            \"Name\": \"FE55\",\n            \"SubKey\": \"Tablettenpresse\",\n            \"Description\": null,\n            \"DateModified\": \"2016-01-27T09:07:08\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"2080768001\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"2443051009\",\n                        \"MobileId\": \"2443051009\",\n                        \"Version\": 3,\n                        \"Name\": \"Parameter\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Softwarestand abfahrt\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"2431451137\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"2431451137\",\n                \"Version\": 5,\n                \"Name\": \"Lichtkuppel Eingang\",\n                \"MappingId\": null,\n                \"DateModified\": \"2016-05-16T09:48:39\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"2431483905\",\n            \"Version\": 3,\n            \"Name\": \"Lichtkuppel Eingang\",\n            \"SubKey\": \"\",\n            \"Description\": null,\n            \"DateModified\": \"2016-05-12T09:13:10\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"2431451137\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"2443051008\",\n                        \"MobileId\": \"2443051008\",\n                        \"Version\": 7,\n                        \"Name\": \"Parazmeterd\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Softwarestand Ankunft\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Softwarestand Abfahrt\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"2431451138\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"2431451138\",\n                \"Version\": 9,\n                \"Name\": \"Lichtbänder Kantine\",\n                \"MappingId\": null,\n                \"DateModified\": \"2018-08-06T14:22:23\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"2431483906\",\n            \"Version\": 4,\n            \"Name\": \"Lichtbänder Kantine\",\n            \"SubKey\": \" JET-Vario-Therm\",\n            \"Description\": null,\n            \"DateModified\": \"2018-01-04T17:35:33\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"2431451138\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"3170010489\",\n                        \"MobileId\": \"3170010489\",\n                        \"Version\": 3,\n                        \"Name\": \"pumpe Heizung\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010490\",\n                        \"MobileId\": \"3170010490\",\n                        \"Version\": 3,\n                        \"Name\": \"Ausdehnungsgefäss\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010491\",\n                        \"MobileId\": \"3170010491\",\n                        \"Version\": 3,\n                        \"Name\": \"Überströmventil\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 4,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010492\",\n                        \"MobileId\": \"3170010492\",\n                        \"Version\": 3,\n                        \"Name\": \"Kompressor\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 5,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010493\",\n                        \"MobileId\": \"3170010493\",\n                        \"Version\": 3,\n                        \"Name\": \"Datum Herstellujng\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"5\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 6,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010494\",\n                        \"MobileId\": \"3170010494\",\n                        \"Version\": 3,\n                        \"Name\": \"material\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"6\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010495\",\n                        \"MobileId\": \"3170010495\",\n                        \"Version\": 3,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"7\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"3170010496\",\n                        \"MobileId\": \"3170010496\",\n                        \"Version\": 3,\n                        \"Name\": \"test 75\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"8\",\n                        \"Type\": \"Choice\",\n                        \"SortOrder\": 7,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"3174498304\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"3174498304\",\n                \"Version\": 6,\n                \"Name\": \"KG\",\n                \"MappingId\": null,\n                \"DateModified\": \"2016-12-02T09:00:46\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"3174531072\",\n            \"Version\": 3,\n            \"Name\": \"KG\",\n            \"SubKey\": \"Kg\",\n            \"Description\": \"<p>Alle Gebäude relevante Geräte Erfasst</p>\",\n            \"DateModified\": \"2017-05-10T07:14:56\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"3174498304\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"6060804981\",\n                        \"MobileId\": \"6060804981\",\n                        \"Version\": 6,\n                        \"Name\": \"Stammdaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Herrsteller\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/91acb464-be46-4eca-803c-f4bed0971262\\\" data-image=\\\"6066733056\\\"></figure><p></p>\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"4540399616\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6060804982\",\n                        \"MobileId\": \"6060804982\",\n                        \"Version\": 3,\n                        \"Name\": \"Foto Produkt\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"Picture\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"4540399616\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"4540399616\",\n                \"Version\": 6,\n                \"Name\": \"TestProdukt\",\n                \"MappingId\": null,\n                \"DateModified\": \"2018-06-21T08:29:12\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"4540432384\",\n            \"Version\": 3,\n            \"Name\": \"TestProdukt\",\n            \"SubKey\": \"3243234\",\n            \"Description\": null,\n            \"DateModified\": \"2017-09-25T12:03:10\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"4540399616\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"6828132517\",\n                        \"MobileId\": \"6828132517\",\n                        \"Version\": 5,\n                        \"Name\": \"Außengerät xxx\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"Group\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6835503110\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6828132518\",\n                        \"MobileId\": \"6828132518\",\n                        \"Version\": 4,\n                        \"Name\": \"Gerätedaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6835503110\",\n                        \"ParentId\": \"6828132517\"\n                    },\n                    {\n                        \"Id\": \"6828132521\",\n                        \"MobileId\": \"6828132521\",\n                        \"Version\": 3,\n                        \"Name\": \"Außengerät xx\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"Group\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6835503110\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6828132522\",\n                        \"MobileId\": \"6828132522\",\n                        \"Version\": 2,\n                        \"Name\": \"Gerätedaten\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 4,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6835503110\",\n                        \"ParentId\": \"6828132521\"\n                    }\n                ],\n                \"Id\": \"6835503110\",\n                \"Version\": 5,\n                \"Name\": \"Außengerät\",\n                \"MappingId\": null,\n                \"DateModified\": \"2018-10-15T11:38:52\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"6835568641\",\n            \"Version\": 3,\n            \"Name\": \"Außengerät\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2018-10-15T11:39:09\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"6835503110\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"6925191047\",\n                        \"MobileId\": \"6925191047\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 1,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"<p>as dfasdfasdf</p>\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6928826368\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6925191048\",\n                        \"MobileId\": \"6925191048\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"2\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 2,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6928826368\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6925191049\",\n                        \"MobileId\": \"6925191049\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"3\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 3,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6928826368\",\n                        \"ParentId\": \"0\"\n                    },\n                    {\n                        \"Id\": \"6925191050\",\n                        \"MobileId\": \"6925191050\",\n                        \"Version\": 2,\n                        \"Name\": \"Auswahl\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"4\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 4,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": null,\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"6928826368\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"6928826368\",\n                \"Version\": 2,\n                \"Name\": \"asdfasdf\",\n                \"MappingId\": null,\n                \"DateModified\": \"2018-10-29T09:21:59\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"6928859136\",\n            \"Version\": 2,\n            \"Name\": \"asdfasdf\",\n            \"SubKey\": \"asdfasdfasdf\",\n            \"Description\": null,\n            \"DateModified\": \"2018-10-29T09:21:42\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"6928826368\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"9867526145\",\n                \"Version\": 2,\n                \"Name\": \"Newproduct\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-08-27T13:57:22\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9869000704\",\n            \"Version\": 3,\n            \"Name\": \"Newproduct\",\n            \"SubKey\": \"he-he\",\n            \"Description\": \"<p>adasda</p>\",\n            \"DateModified\": \"2019-08-27T13:57:22\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9867526145\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"9867526146\",\n                \"Version\": 1,\n                \"Name\": \"OdataProduct\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-08-27T14:21:05\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9869000705\",\n            \"Version\": 2,\n            \"Name\": \"OdataProduct\",\n            \"SubKey\": \"With subkey\",\n            \"Description\": \"With description.\",\n            \"DateModified\": \"2019-08-27T14:21:05\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9867526146\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"9877520384\",\n                \"Version\": 3,\n                \"Name\": \"Test Product\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-08-30T14:57:35\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9877553152\",\n            \"Version\": 4,\n            \"Name\": \"Test Product\",\n            \"SubKey\": \"Test SubKey\",\n            \"Description\": null,\n            \"DateModified\": \"2019-08-30T14:57:35\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9877520384\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [\n                    {\n                        \"Id\": \"9911369816\",\n                        \"MobileId\": \"9911369816\",\n                        \"Version\": 4,\n                        \"Name\": \"Test Product X-1 Choice step\",\n                        \"IsDone\": false,\n                        \"HasError\": false,\n                        \"TrackingId\": \"1\",\n                        \"Type\": \"EnterValue\",\n                        \"SortOrder\": 0,\n                        \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                        \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                        \"ServiceRequestId\": \"0\",\n                        \"Description\": \"<p>checklist</p>\",\n                        \"Comment\": null,\n                        \"InternalComment\": null,\n                        \"ServiceObjectId\": \"0\",\n                        \"StepListTemplateId\": \"9914318848\",\n                        \"ParentId\": \"0\"\n                    }\n                ],\n                \"Id\": \"9914318848\",\n                \"Version\": 8,\n                \"Name\": \"Test Product X-1\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-09-01T18:45:44\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9914351616\",\n            \"Version\": 6,\n            \"Name\": \"Test Product X-1\",\n            \"SubKey\": \"Test SubKey X-1\",\n            \"Description\": \"<p>Test Descriptionmhvmhbh,k<em>dfhsfhsfhshsdhsdhs</em></p>\",\n            \"DateModified\": \"2019-09-01T18:45:44\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9914318848\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"9956524032\",\n                \"Version\": 4,\n                \"Name\": \"aymen\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-09-05T11:55:28\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9956556800\",\n            \"Version\": 5,\n            \"Name\": \"aymen\",\n            \"SubKey\": \"\",\n            \"Description\": null,\n            \"DateModified\": \"2019-09-05T11:55:28\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9956524032\"\n        },\n        {\n            \"CustomValueStepTemplate\": {\n                \"Steps\": [],\n                \"Id\": \"9956524033\",\n                \"Version\": 1,\n                \"Name\": \"aymen2\",\n                \"MappingId\": null,\n                \"DateModified\": \"2019-09-05T11:34:34\",\n                \"IsReleased\": true,\n                \"IsDurable\": true\n            },\n            \"Id\": \"9956556801\",\n            \"Version\": 2,\n            \"Name\": \"aymen2\",\n            \"SubKey\": null,\n            \"Description\": null,\n            \"DateModified\": \"2019-09-05T11:34:34\",\n            \"MappingId\": null,\n            \"CustomValueStepTemplateId\": \"9956524033\"\n        }\n    ]\n}"}],"_postman_id":"35300e9e-9f57-4da6-ab57-0678689d997f"},{"name":"Retrieve a Product","id":"87b1514f-0a85-4c99-a9c5-ce8344dfc34c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Products(1014661120L)?$expand=CustomValueStepTemplate/Steps","description":"<p>Get a Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Product's Id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Products(1014661120L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"CustomValueStepTemplate/Steps"}],"variable":[]}},"response":[{"id":"83fe3339-783b-41a0-b907-c812f323260a","name":"Retrieve a Product (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Products(1014661120L)?$expand=CustomValueStepTemplate/Steps","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","Products(1014661120L)"],"query":[{"key":"$expand","value":"CustomValueStepTemplate/Steps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:12:07 GMT"},{"key":"Content-Length","value":"1752"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Products/@Element\",\n    \"CustomValueStepTemplate\": {\n        \"Steps\": [\n            {\n                \"Id\": \"1013156202\",\n                \"MobileId\": \"1013156202\",\n                \"Version\": 2,\n                \"Name\": \"Auswahl\",\n                \"IsDone\": false,\n                \"HasError\": false,\n                \"TrackingId\": \"2\",\n                \"Type\": \"Choice\",\n                \"SortOrder\": 1,\n                \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                \"ServiceRequestId\": \"0\",\n                \"Description\": \"\",\n                \"Comment\": null,\n                \"InternalComment\": null,\n                \"ServiceObjectId\": \"0\",\n                \"StepListTemplateId\": \"1014202374\",\n                \"ParentId\": \"0\"\n            },\n            {\n                \"Id\": \"1013156201\",\n                \"MobileId\": \"1013156201\",\n                \"Version\": 3,\n                \"Name\": \"Herstellergarantie\",\n                \"IsDone\": false,\n                \"HasError\": false,\n                \"TrackingId\": \"1\",\n                \"Type\": \"EnterValue\",\n                \"SortOrder\": 0,\n                \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Garantie bis\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                \"ServiceRequestId\": \"0\",\n                \"Description\": \"Datum für die Herstellergarantie\",\n                \"Comment\": \"\",\n                \"InternalComment\": null,\n                \"ServiceObjectId\": \"0\",\n                \"StepListTemplateId\": \"1014202374\",\n                \"ParentId\": \"0\"\n            }\n        ],\n        \"Id\": \"1014202374\",\n        \"Version\": 2,\n        \"Name\": \"Kühlschrank\",\n        \"MappingId\": null,\n        \"DateModified\": \"2014-11-14T07:38:45\",\n        \"IsReleased\": true,\n        \"IsDurable\": true\n    },\n    \"Id\": \"1014661120\",\n    \"Version\": 1,\n    \"Name\": \"Kühlschrank\",\n    \"SubKey\": \"Gefriertruhe\",\n    \"Description\": null,\n    \"DateModified\": \"2014-11-14T07:38:09\",\n    \"MappingId\": null,\n    \"CustomValueStepTemplateId\": \"1014202374\"\n}"}],"_postman_id":"87b1514f-0a85-4c99-a9c5-ce8344dfc34c"},{"name":"Create a Product","id":"0d79ae80-ed37-499e-971f-200b6c5e4836","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Product 0001\",\n    \"SubKey\": \"Test SubKey\",\n    \"Description\": \"Test Description\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Products","description":"<p>Create a new Product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Product's Name.</td>\n</tr>\n<tr>\n<td>SubKey</td>\n<td>string</td>\n<td>Optional. Product's sub key.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description for the Product.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["Products"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"783321f4-38a1-499b-864a-236ac4caa599","name":"Create Product (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Product 0001\",\n    \"SubKey\": \"Test SubKey\",\n    \"Description\": \"Test Description\",\n    \"CustomValueStepTemplateId\": \"9969565697\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Products"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Products(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:14:37 GMT"},{"key":"Content-Length","value":"316"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Products/@Element\",\n    \"Id\": \"10001219585\",\n    \"Version\": 2,\n    \"Name\": \"Test Product 0001\",\n    \"SubKey\": \"Test SubKey\",\n    \"Description\": \"Test Description\",\n    \"DateModified\": \"2019-09-10T07:14:38.1610654Z\",\n    \"MappingId\": null,\n    \"CustomValueStepTemplateId\": \"10001186817\"\n}"}],"_postman_id":"0d79ae80-ed37-499e-971f-200b6c5e4836"}],"id":"f6341af5-aadd-4ff8-86d3-f7bde5a5e9d6","description":"<p>Products represents installations in <strong>Service Objects</strong>. Products can contain <strong>Steps</strong> as a guide to work with them.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Product's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Product's name.</td>\n</tr>\n<tr>\n<td>SubKey</td>\n<td>string</td>\n<td>Product's sub key.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Description about the Product.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>CustomValueStepTemplateId</td>\n<td>int</td>\n<td>Id of the selected checklist template.</td>\n</tr>\n<tr>\n<td>CustomValueStepTemplate</td>\n<td>object</td>\n<td>Selected Checklist template.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1ecdd682-9efb-4d6a-b81d-69b92f9f95a2"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"7827b53a-2f08-4e0d-b65e-292fea600536"}}],"_postman_id":"f6341af5-aadd-4ff8-86d3-f7bde5a5e9d6","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Document","item":[{"name":"Get Documents","id":"ad74dc64-00ba-435c-ae0b-2e73e79bdf93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Documents?$expand=ServiceRequest\n","description":"<p>Get all Documents.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Documents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"ServiceRequest\n"}],"variable":[]}},"response":[],"_postman_id":"ad74dc64-00ba-435c-ae0b-2e73e79bdf93"},{"name":"Get a Document","id":"5a486dcf-b9a5-463d-93ee-3b49ff29e579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Documents(9993191437L)?$expand=ServiceRequest\n","description":"<p>Get a Document by id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Document's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Documents(9993191437L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"ServiceRequest\n"}],"variable":[]}},"response":[{"id":"990b4369-c348-4bed-8df0-bede11ca40dd","name":"Get Documents Copy (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Documents(9993191437L)?$expand=ServiceRequest\n","host":["https://portal.mobilefieldreport.com/odata"],"path":["Documents(9993191437L)"],"query":[{"key":"$expand","value":"ServiceRequest\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 14:30:10 GMT"},{"key":"Content-Length","value":"593"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Documents/@Element\",\n    \"Id\": \"9993191437\",\n    \"CustomValues\": [],\n    \"Version\": 2,\n    \"State\": null,\n    \"ExternalId\": \"D-273\",\n    \"URI\": \"https://portal.mobilefieldreport.com/Document/9993191437/Content\",\n    \"IsGlobal\": false,\n    \"StartDateTime\": \"0001-01-01T00:00:00\",\n    \"EndDateTime\": \"0001-01-01T00:00:00\",\n    \"FileName\": \"(1904-103) DSF_Angebot.pdf\",\n    \"DateModified\": \"2019-09-10T14:29:24\",\n    \"UploadDate\": \"2019-09-10T14:29:24\",\n    \"IsLink\": false,\n    \"ContentType\": \"application/pdf\",\n    \"HTMLCode\": \"MFR.Domain.Domain.FileReference\",\n    \"ServiceRequestId\": \"0\",\n    \"Note\": null\n}"}],"_postman_id":"5a486dcf-b9a5-463d-93ee-3b49ff29e579"},{"name":"Update a Document","id":"bdebc620-3b6f-4346-8c14-d30c07bbb618","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Id\": \"9248997386\",\n  \"ExternalId\": \"T_DB_2020-12-20\",\n  \"FileName\": \"Train_Ticket.pdf\",\n  \"Note\": \"Klein Text!\",\n  \"IsGlobal\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Documents(9248997386L)\n","description":"<p>Get a Document by id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Document's id.</td>\n</tr>\n</tbody>\n</table>\n</div><p>IMPORTANT\nBy making a PUT request with only this parameters will erase all other properties values that are not included in this request's body. In order to keep all information it is strongly recommended to make a GET request over the Document to update, and copy the whole response in the body of this request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Document's id.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. Document's external id.</td>\n</tr>\n<tr>\n<td>FileName</td>\n<td>string</td>\n<td>Optional. Document's file name.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Optional. Note on the document.</td>\n</tr>\n<tr>\n<td>IsGlobal</td>\n<td>bool</td>\n<td>Optional. Wheter the document is globally available or not.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Documents(9248997386L)\n"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"f8870779-6491-48fb-89e9-678edebedbfd","name":"Get Documents Copy (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Documents(9993191437L)?$expand=ServiceRequest\n","host":["https://portal.mobilefieldreport.com/odata"],"path":["Documents(9993191437L)"],"query":[{"key":"$expand","value":"ServiceRequest\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 14:30:10 GMT"},{"key":"Content-Length","value":"593"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Documents/@Element\",\n    \"Id\": \"9993191437\",\n    \"CustomValues\": [],\n    \"Version\": 2,\n    \"State\": null,\n    \"ExternalId\": \"D-273\",\n    \"URI\": \"https://portal.mobilefieldreport.com/Document/9993191437/Content\",\n    \"IsGlobal\": false,\n    \"StartDateTime\": \"0001-01-01T00:00:00\",\n    \"EndDateTime\": \"0001-01-01T00:00:00\",\n    \"FileName\": \"(1904-103) DSF_Angebot.pdf\",\n    \"DateModified\": \"2019-09-10T14:29:24\",\n    \"UploadDate\": \"2019-09-10T14:29:24\",\n    \"IsLink\": false,\n    \"ContentType\": \"application/pdf\",\n    \"HTMLCode\": \"MFR.Domain.Domain.FileReference\",\n    \"ServiceRequestId\": \"0\",\n    \"Note\": null\n}"}],"_postman_id":"bdebc620-3b6f-4346-8c14-d30c07bbb618"},{"name":"Attach document to service request","id":"241c77cf-964e-4d0a-8c4b-357cb63cb16b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://localhost:44366/mfr/ServiceRequest/2359300/Document/753664","description":"<p><strong>NOTE</strong>: Currently there's no support from our OData's API implementation to make this request. This is a workaround for it.</p>\n","urlObject":{"protocol":"https","port":"44366","path":["mfr","ServiceRequest","2359300","Document","753664"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"241c77cf-964e-4d0a-8c4b-357cb63cb16b"},{"name":"Attach document to service object","id":"8e68ded3-a9a2-4131-a203-abcf1d79c405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://localhost:44366/mfr/ServiceObject/360449/Document/2818048","description":"<p><strong>NOTE</strong>: Currently there's no support from our OData's API implementation to make this request. This is a workaround for it.</p>\n","urlObject":{"protocol":"https","port":"44366","path":["mfr","ServiceObject","360449","Document","2818048"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e68ded3-a9a2-4131-a203-abcf1d79c405"},{"name":"Upload a Document","id":"df723b80-7d89-4abe-98a1-ca121804854b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"Filedata","description":"<p>Under the form request, give the absolut path to the file in your system.</p>\n","type":"file","value":null}]},"url":"https://portal.mobilefieldreport.com/mfr/Document/UploadAndCreate","description":"<p><strong>NOTE</strong>: Currently there's no support from our OData's API implementation to make this request. This is a workaround for it.</p>\n<h5 id=\"example-in-javascript\">Example in Javascript</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var request = require('request');\nvar fs = require('fs');\n\nvar uploadDocument = function () {\n    let url = \"https://portal.mobilefieldreport.com/mfr/Document/UploadAndCreate\";\n    let formData = {\n        file: {\n            value: fs.createReadStream('C:\\\\Path\\\\to\\\\local\\\\File.pdf'), // pdf is an example.\n            options: {}\n        }\n    };\n    \n    request.post({\n        url: url,\n        headers: {\n            'Authorization': 'Basic Encoded_Credentials'\n        },\n        formData: formData\n    }, function(err, resp, body) {\n           if (err) {\n               return console.error(`Fehler beim Hochladen der Datei. ${err}`);\n           }\n\n           let doc = JSON.parse(body);\n           console.log(`ExternalId der Datei: ${doc.ExternalId}.`);\n    });\n}\n\nuploadDocument();\n</code></pre>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"protocol":"https","path":["mfr","Document","UploadAndCreate"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[{"id":"2deb8f21-fbd5-4d52-8c2a-52f7c6e93de1","name":"Upload a Document (200 OK)","originalRequest":{"method":"POST","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"FilePath","description":"Under the form request, give the absolut path to the file in your system.","type":"file","src":[]}]},"url":"https://portal.mobilefieldreport.com/mfr/Document/UploadAndCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 14:29:25 GMT"},{"key":"Content-Length","value":"308"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 9993191437,\n    \"Version\": 2,\n    \"ExternalId\": \"D-273\",\n    \"Note\": null,\n    \"FileName\": \"(1904-103) DSF_Angebot.pdf\",\n    \"DateModified\": \"2019-09-10T14:29:24.868539\",\n    \"UploadDate\": \"2019-09-10T14:29:24.884171\",\n    \"IsGlobal\": false,\n    \"FileSize\": 10,\n    \"CustomValues\": [],\n    \"URI\": \"https://portal.mobilefieldreport.com/Document/9993191437/Content\",\n    \"IsLink\": false,\n    \"ContentType\": \"application/pdf\",\n    \"HTMLCode\": \"MFR.Domain.Domain.FileReference\",\n    \"Tags\": []\n}"}],"_postman_id":"df723b80-7d89-4abe-98a1-ca121804854b"},{"name":"Delete a Document","id":"db5f997e-6c7a-4809-8ced-18f738b57325","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Documents(8513290243L)","description":"<p>Deletes a Document.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the Document to be deleted.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Documents(8513290243L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"db5f997e-6c7a-4809-8ced-18f738b57325"}],"id":"24b4aff1-f04c-4a26-ab4e-60fc83118594","description":"<p>Documents are files, reports, invoices, etc. that can be attached to <strong>Service Requests</strong> and <strong>Service Objects</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Document's id.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>Document's custom values list.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>Document's state.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Document's external or ERP id.</td>\n</tr>\n<tr>\n<td>URI</td>\n<td>string</td>\n<td>Document's URI to download the file.</td>\n</tr>\n<tr>\n<td>FileName</td>\n<td>string</td>\n<td>Document's file name.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>UploadDate</td>\n<td>datetime</td>\n<td>Date of uploading.</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>string</td>\n<td>Document's content type based on HTTP entity header parameter.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Document's related Service Request's id.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Notes about the Document.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"902cb933-115d-4eb4-96a0-72a1e1e2542c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"d38b3077-36ad-49cd-92e7-361976afee5f"}}],"_postman_id":"24b4aff1-f04c-4a26-ab4e-60fc83118594","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Time Event","item":[{"name":"Get Time Events","id":"b3219114-bc1a-43a3-be24-60b690bedc6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/TimeEvents?$expand=Contact,ServiceRequest\n","description":"<p>Get all Time Events in the system.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["TimeEvents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contact,ServiceRequest\n"}],"variable":[]}},"response":[],"_postman_id":"b3219114-bc1a-43a3-be24-60b690bedc6e"},{"name":"Get Time Events by StartDateTime","id":"ff44ef7b-9e76-48a2-8f4a-91454fbf35d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/TimeEvents?$filter=StartDateTime%20gt%20datetime%272020-12-11T13%3A06%3A34.5585823Z%27","description":"<p>Get all Time Events in the system.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["TimeEvents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$filter","value":"StartDateTime%20gt%20datetime%272020-12-11T13%3A06%3A34.5585823Z%27"}],"variable":[]}},"response":[],"_postman_id":"ff44ef7b-9e76-48a2-8f4a-91454fbf35d4"},{"name":"Get Time Events for a Service Request","id":"9a697842-b4a5-4625-b1db-3b5e1e07ca29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(10916429851L)?$expand=TimeEvents&$select=TimeEvents","description":"<p>Get time events for a particular Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Service Request's Id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(10916429851L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"TimeEvents"},{"key":"$select","value":"TimeEvents"}],"variable":[]}},"response":[{"id":"902ff6f8-d338-4e61-bc53-749674ea02a4","name":"Get Time Events for a Service Request 200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceRequests(10916429851L)?$expand=TimeEvents&$select=TimeEvents","host":["https://portal.mobilefieldreport.com/odata"],"path":["ServiceRequests(10916429851L)"],"query":[{"key":"$expand","value":"TimeEvents"},{"key":"$select","value":"TimeEvents"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 12 Dec 2019 10:31:44 GMT"},{"key":"Content-Length","value":"1773"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests/@Element&$select=TimeEvents\",\n    \"TimeEvents\": [\n        {\n            \"Id\": \"10908532856\",\n            \"Version\": 1,\n            \"State\": null,\n            \"IsApproved\": false,\n            \"TimeEventType\": \"eDriving\",\n            \"DateModified\": \"2019-12-06T13:44:43Z\",\n            \"StartDateTime\": \"2019-12-06T07:00:00Z\",\n            \"EndDateTime\": \"2019-12-06T07:30:00Z\",\n            \"ProposedDrivingDistance\": 23,\n            \"ContactId\": \"410583043\",\n            \"ServiceRequestId\": \"10916429851\",\n            \"Description\": null\n        },\n        {\n            \"Id\": \"10916921459\",\n            \"Version\": 2,\n            \"State\": null,\n            \"IsApproved\": false,\n            \"TimeEventType\": \"eWorking\",\n            \"DateModified\": \"2019-12-06T13:43:34Z\",\n            \"StartDateTime\": \"2019-12-06T06:00:00Z\",\n            \"EndDateTime\": \"2019-12-06T07:00:00Z\",\n            \"ProposedDrivingDistance\": 0,\n            \"ContactId\": \"410583043\",\n            \"ServiceRequestId\": \"10916429851\",\n            \"Description\": \"Gigi GLNG \"\n        },\n        {\n            \"Id\": \"10916921460\",\n            \"Version\": 1,\n            \"State\": null,\n            \"IsApproved\": false,\n            \"TimeEventType\": \"eWorking\",\n            \"DateModified\": \"2019-12-06T13:50:34Z\",\n            \"StartDateTime\": \"2019-12-06T13:56:56Z\",\n            \"EndDateTime\": \"2019-12-06T14:26:56Z\",\n            \"ProposedDrivingDistance\": 0,\n            \"ContactId\": \"410583043\",\n            \"ServiceRequestId\": \"10916429851\",\n            \"Description\": \"\"\n        },\n        {\n            \"Id\": \"10916921461\",\n            \"Version\": 2,\n            \"State\": null,\n            \"IsApproved\": false,\n            \"TimeEventType\": \"eDriving\",\n            \"DateModified\": \"2019-12-06T13:53:38Z\",\n            \"StartDateTime\": \"2019-12-06T14:26:56Z\",\n            \"EndDateTime\": \"2019-12-06T14:41:56Z\",\n            \"ProposedDrivingDistance\": 0,\n            \"ContactId\": \"410583043\",\n            \"ServiceRequestId\": \"10916429851\",\n            \"Description\": \"\"\n        },\n        {\n            \"Id\": \"10916921462\",\n            \"Version\": 1,\n            \"State\": null,\n            \"IsApproved\": false,\n            \"TimeEventType\": \"eDriving\",\n            \"DateModified\": \"2019-12-06T13:52:55Z\",\n            \"StartDateTime\": \"2019-12-06T14:45:00Z\",\n            \"EndDateTime\": \"2019-12-06T15:00:00Z\",\n            \"ProposedDrivingDistance\": 1,\n            \"ContactId\": \"410583043\",\n            \"ServiceRequestId\": \"10916429851\",\n            \"Description\": null\n        }\n    ]\n}"}],"_postman_id":"9a697842-b4a5-4625-b1db-3b5e1e07ca29"},{"name":"Get Time Events for a Technician","id":"165bb009-90ba-4fb1-acd4-7b149f186ada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/TimeEvents?$filter=Contact/Id eq 410583043L","description":"<p>Get all Time Events for a technician given its id.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["TimeEvents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$filter","value":"Contact/Id eq 410583043L"}],"variable":[]}},"response":[],"_postman_id":"165bb009-90ba-4fb1-acd4-7b149f186ada"},{"name":"Create a Time Event for a Service Request","id":"c0499d1f-9260-490d-bcbf-4e26a1e9f71a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"TimeEventType\": \"eOther\",\n    \"StartDateTime\": \"2019-12-06T07:00:00Z\",\n    \"EndDateTime\": \"2019-12-06T07:30:00Z\",\n    \"ContactId\": \"10979540996\",\n    \"ServiceRequestId\": \"10978983957\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/TimeEvents","description":"<p>Creates a time event for the specified Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Service Request's Id.</td>\n</tr>\n<tr>\n<td>TimeEventType</td>\n<td>string</td>\n<td>Required. Type of the time event. Allowed options are: <code>eDriving</code>, <code>eWorking</code>, <code>ePause</code>, <code>eCustomTimeEvent</code> and <code>eOther</code>.</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>Required. Start time of the time event. Please mind that this date will be interpreted as UTC.</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>Required. Start time of the time event. Please mind that this date will be interpreted as UTC.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>int</td>\n<td>Required. Id of the contact/technician to whom the time event will be assigned.</td>\n</tr>\n<tr>\n<td>ProposedDrivingDistance</td>\n<td>int</td>\n<td>Optional. Number of drove kilometers.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description to the time event.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["TimeEvents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0499d1f-9260-490d-bcbf-4e26a1e9f71a"},{"name":"Create a Time Event for a Technician","id":"a9b6fcff-0c84-4a0d-a951-d704be4e0acf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"TimeEventType\": \"eVacation\",\n    \"StartDateTime\": \"2019-12-15T07:00:00Z\",\n    \"EndDateTime\": \"2019-12-17T12:00:00Z\",\n    \"ContactId\": \"410583043\",\n    \"ServiceRequestId\": \"0\",\n    \"Description\": \"null\",\n    \"IsApproved\": true\n}"},"url":"https://portal.mobilefieldreport.com/odata/TimeEvents","description":"<p>Creates a time event for a technician. It can be illness, vacation or other reasons. Those will be visible in the <strong>Time Tracking</strong> view. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Service Request's Id.</td>\n</tr>\n<tr>\n<td>TimeEventType</td>\n<td>string</td>\n<td>Required. Type of the time event. Allowed options are: <code>eVacation</code>, <code>eIllness</code>, <code>eOther</code> and <code>eCustomTimeEvent</code>.</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>Required. Start time of the time event. Please mind that this date will be interpreted as UTC.</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>Required. Start time of the time event. Please mind that this date will be interpreted as UTC.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>int</td>\n<td>Required. Id of the contact/technician to whom the time event will be assigned.</td>\n</tr>\n<tr>\n<td>ProposedDrivingDistance</td>\n<td>int</td>\n<td>Optional. Number of drove kilometers.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description to the time event.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["TimeEvents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9b6fcff-0c84-4a0d-a951-d704be4e0acf"}],"id":"485f2389-7534-4054-a14c-a9e072c7b109","description":"<p>Time events are all events that are defined by time periods. Those are related to technicians. They can be related to service requests, for example driving/working/not working times. They can also be specific to the technicians related, like illness or vacation. It is also possible to create custom time events.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Time Event's id.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>Time Event's state.</td>\n</tr>\n<tr>\n<td>TimeEventType</td>\n<td>string</td>\n<td>Type of the Time Event. Available values are: <code>eVacation</code>, <code>eIllness</code>, <code>eOther</code>, <code>eCustomTimeEvent</code>, <code>ePause</code>, <code>eWorking</code> and <code>eDriving</code>.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>ProposedDrivingDistance</td>\n<td>int</td>\n<td>Proposed driving distance in kilometers when the event is a driving time.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>int</td>\n<td>Time Event's related contact's id.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Time Event's related Service Request.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Time Event's description.</td>\n</tr>\n<tr>\n<td>Contact</td>\n<td>object</td>\n<td>Time Event's related contact.</td>\n</tr>\n<tr>\n<td>ServiceRequest</td>\n<td>object</td>\n<td>Time Event's related service request.</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>Start time of the time event.</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>End time of the time event.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"bcd81145-cce7-4165-9e1a-2979beded4a6"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"3579ec82-4fef-46ae-b293-e7832dd4d12c"}}],"_postman_id":"485f2389-7534-4054-a14c-a9e072c7b109","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Step List Template","item":[{"name":"Get Step Templates","id":"9c965690-9544-4144-b31e-444b8ee15a6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://portal.mobilefieldreport.com/odata/StepListTemplates?$expand=Steps","description":"<p>Get all Checklist Templates.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["StepListTemplates"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Steps"}],"variable":[]}},"response":[{"id":"fac67cc9-6559-4ee4-aac8-fd7330745b47","name":"Get Step Templates (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/StepListTemplates?$expand=Steps","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","StepListTemplates"],"query":[{"key":"$expand","value":"Steps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:57:26 GMT"},{"key":"Content-Length","value":"109278"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#StepListTemplates\",\n    \"value\": [\n        {\n            \"Steps\": [],\n            \"Id\": \"410320897\",\n            \"Version\": 2,\n            \"Name\": \"Beispiel Checkliste\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-02-01T14:46:09\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"438632591\",\n                    \"MobileId\": \"438632591\",\n                    \"Version\": 3,\n                    \"Name\": \"Brandschutz\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"438632593\",\n                    \"MobileId\": \"438632593\",\n                    \"Version\": 3,\n                    \"Name\": \"Produktdaten 1\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Steuerung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Ansteuerungsmodul\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Antriebstyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Führungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fluchtweg\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Sicherheitseinrichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"438632591\"\n                },\n                {\n                    \"Id\": \"438632594\",\n                    \"MobileId\": \"438632594\",\n                    \"Version\": 3,\n                    \"Name\": \"Produktdaten 2\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Brandmeldung an BMZ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rückhaltevorichtung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Rauchmelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typ Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl Wärmemelder 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"438632591\"\n                },\n                {\n                    \"Id\": \"438632595\",\n                    \"MobileId\": \"438632595\",\n                    \"Version\": 3,\n                    \"Name\": \"Allgemeine Daten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Bezeichnung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kunden Tor Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zulassungsnummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Hersteller Typ\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Produkttyp\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Typschlüssel\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Wartungsart\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Baujahr\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fabrik Nr.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Breite [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Höhe [mm]\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Vervollständigen Sie allgemeinen Produktdaten\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"438632591\"\n                },\n                {\n                    \"Id\": \"438632596\",\n                    \"MobileId\": \"438632596\",\n                    \"Version\": 3,\n                    \"Name\": \"Einbauort\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gebäude\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Achse\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Einbauhöhe\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Etage\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Besonderheiten\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"438632591\"\n                },\n                {\n                    \"Id\": \"438632616\",\n                    \"MobileId\": \"438632616\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift Mitarbeiter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"438632617\",\n                    \"MobileId\": \"438632617\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\\"name\\\":\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<span style=\\\"color: rgb(34, 34, 34); font-family: Calibri, sans-serif; font-size: 14.44444465637207px; line-height: normal;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Um Gewährleistungsansprüche aufrecht zu erhalten, müssen alle Prüfpunkte gem. Herstellervorgaben bearbeitet und festgestellte Mängel schnellst möglichst beseitigt werden.</span></span>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"439156738\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"439156738\",\n            \"Version\": 4,\n            \"Name\": \"Ablauf Torwartung\",\n            \"MappingId\": null,\n            \"DateModified\": \"2017-07-11T08:53:06\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"2031190351\",\n                    \"MobileId\": \"2031190351\",\n                    \"Version\": 11,\n                    \"Name\": \"Durchgeführte Arbeiten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"23\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Tätigkeiten geschrieben\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Weitere Arbeiten erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>Beschreiben Sie in Stichpunkten&nbsp;die ausgeführten Tätigkeiten</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"466158779\"\n                },\n                {\n                    \"Id\": \"458752006\",\n                    \"MobileId\": \"458752006\",\n                    \"Version\": 16,\n                    \"Name\": \"Materialbestellung \",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Materialbestellung erforderlich\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Materialbestellung ist erforderlich (Kommentar)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Mehrverbrauch an Material laut Materialschein&nbsp;<strong>bei Materialien</strong> eintragen</li><li>Folgende Materialien müssen nachbestellt&nbsp;werden</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"466158779\"\n                },\n                {\n                    \"Id\": \"458752011\",\n                    \"MobileId\": \"458752011\",\n                    \"Version\": 14,\n                    \"Name\": \"Heizwasseranalyse gemäß VDI 2035\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizungswasser PH Wert\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizungswasser Leitfähigkeit\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Füllwasser PH Wert\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Füllwasser Leitfähigkeit\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Prüfungsergebnis\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752010\"\n                },\n                {\n                    \"Id\": \"458752012\",\n                    \"MobileId\": \"458752012\",\n                    \"Version\": 14,\n                    \"Name\": \"Abgasanalyse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752009\"\n                },\n                {\n                    \"Id\": \"458752013\",\n                    \"MobileId\": \"458752013\",\n                    \"Version\": 14,\n                    \"Name\": \"Abgasanalyse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Brennstoff\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur Abgas\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"co\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"o2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"co2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verluste\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752012\"\n                },\n                {\n                    \"Id\": \"458752014\",\n                    \"MobileId\": \"458752014\",\n                    \"Version\": 14,\n                    \"Name\": \"Ringspaltmessung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"16\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752012\"\n                },\n                {\n                    \"Id\": \"458752015\",\n                    \"MobileId\": \"458752015\",\n                    \"Version\": 14,\n                    \"Name\": \"Ringspaltmessung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"17\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Brennstoff\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur Abgas\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"co\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"o2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"co2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752014\"\n                },\n                {\n                    \"Id\": \"458752018\",\n                    \"MobileId\": \"458752018\",\n                    \"Version\": 14,\n                    \"Name\": \"Prüfung Expansionsgefäße\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752009\"\n                },\n                {\n                    \"Id\": \"458752019\",\n                    \"MobileId\": \"458752019\",\n                    \"Version\": 14,\n                    \"Name\": \"Prüfung Expansionsgefäße\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"19\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anlagedruck\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Vordruck bei Ankunft\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Vordruck eingestellt auf:\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anlagedruck\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Vordruck bei Ankunft\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Vordruck eingestellt auf:\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752018\"\n                },\n                {\n                    \"Id\": \"458752020\",\n                    \"MobileId\": \"458752020\",\n                    \"Version\": 14,\n                    \"Name\": \"Temperaturmessungen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752009\"\n                },\n                {\n                    \"Id\": \"458752009\",\n                    \"MobileId\": \"458752009\",\n                    \"Version\": 15,\n                    \"Name\": \"Messergebnisse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"458752010\",\n                    \"MobileId\": \"458752010\",\n                    \"Version\": 15,\n                    \"Name\": \"Heizwasseranalyse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752009\"\n                },\n                {\n                    \"Id\": \"458752022\",\n                    \"MobileId\": \"458752022\",\n                    \"Version\": 15,\n                    \"Name\": \"Unterschrift des Kunden\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 17,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>Eigentumsvorbehalt bis zum restlosen Zahlungseingang. Es gelten unsere allgemeinen Verkaufs- und Lieferbedingungen. Die Richtigkeit und Notwendigkeit vorstehend verzeichneter Leistungen, welche als Stundenlohn zur Abrechnung kommen, bescheinigt:&nbsp;</p>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"458752023\",\n                    \"MobileId\": \"458752023\",\n                    \"Version\": 15,\n                    \"Name\": \"Unterschrift des Mitarbeiters\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 18,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Vorgenannte Arbeiten durchgeführt.<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"2040725973\",\n                    \"MobileId\": \"2040725973\",\n                    \"Version\": 3,\n                    \"Name\": \"Sauberkeit geprüft\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"24\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 19,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Nein (KIommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"458752016\",\n                    \"MobileId\": \"458752016\",\n                    \"Version\": 15,\n                    \"Name\": \"Prüfung Solarflüssigkeit\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"11\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752009\"\n                },\n                {\n                    \"Id\": \"458752017\",\n                    \"MobileId\": \"458752017\",\n                    \"Version\": 15,\n                    \"Name\": \"Prüfung Solarflüssigkeit\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"18\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur Kollektor\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur Speicher\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"PH Wert\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Frostschutztemperatur (Gefrierpunkt)\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anlagendruck\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752016\"\n                },\n                {\n                    \"Id\": \"458752021\",\n                    \"MobileId\": \"458752021\",\n                    \"Version\": 15,\n                    \"Name\": \"Temperaturmessungen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"20\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Warmwassertemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Rücklauf Zirkulationsleitung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kessel Vorlauftemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kessel Rücklauftemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizkreis VL Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Heizkreis RL Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Außentemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"458752020\"\n                },\n                {\n                    \"Id\": \"2041283019\",\n                    \"MobileId\": \"2041283019\",\n                    \"Version\": 2,\n                    \"Name\": \"Lieferscchein fotografiert\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Lieferschein\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Lieferschein fotografiert\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"466158779\"\n                },\n                {\n                    \"Id\": \"466158779\",\n                    \"MobileId\": \"466158779\",\n                    \"Version\": 7,\n                    \"Name\": \"Informationen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"458784768\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"458784768\",\n            \"Version\": 32,\n            \"Name\": \"Regiebericht Standart\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-15T08:40:27\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"466977114\",\n                    \"MobileId\": \"466977114\",\n                    \"Version\": 4,\n                    \"Name\": \"Thema:\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Besprechung abgeschlossen\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Weitere Nachbearbeitung nötig\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"467468293\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"467468293\",\n            \"Version\": 4,\n            \"Name\": \"Besprechungsnotiz\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T08:54:16\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"614171468\",\n                    \"MobileId\": \"614171468\",\n                    \"Version\": 1,\n                    \"Name\": \"Gebäude\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gebäude\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Etage\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"503218176\",\n                    \"ParentId\": \"614171467\"\n                },\n                {\n                    \"Id\": \"614171467\",\n                    \"MobileId\": \"614171467\",\n                    \"Version\": 2,\n                    \"Name\": \"EinsatzorteDetails\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"503218176\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"503218176\",\n            \"Version\": 1,\n            \"Name\": \"Raum\",\n            \"MappingId\": null,\n            \"DateModified\": \"2014-03-21T11:02:31\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"518784798\",\n                    \"MobileId\": \"518784798\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"517668872\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"518784799\",\n                    \"MobileId\": \"518784799\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"517668872\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"518784797\",\n                    \"MobileId\": \"518784797\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\\"name\\\":\\\"{\\\\\\\"name\\\\\\\":\\\\\\\"\\\",\\\"isRequired\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"517668872\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"517668872\",\n            \"Version\": 2,\n            \"Name\": \"test\",\n            \"MappingId\": null,\n            \"DateModified\": \"2014-07-24T07:33:28\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"595230721\",\n            \"Version\": 3,\n            \"Name\": \"All Steps\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T08:52:38\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"634454016\",\n            \"Version\": 3,\n            \"Name\": \"Computerreparatur\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-02-01T13:35:54\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"2103642810\",\n                    \"MobileId\": \"2103642810\",\n                    \"Version\": 2,\n                    \"Name\": \"Umbennen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Anzahl angschlossener Innengeräte\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Gesamtleistung angeschlossener Innengeräte\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Außengerät höher o. tiefer als Innengerät\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Außengerät höher o. tiefer als Innengerät\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Höhendifferenz Innenger-Außengerät max.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Leitungslänge Innen-Außengerät max.\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Unter Stickstoff gelötet\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Unter Stickstoff gelötet\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Unter Stickstoff gelötet\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Saug- und Einspritzleitung isoliert\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Saug- und Einspritzleitung isoliert\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Durchmesser Saugleiutung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Durchmesser Einspritzleitung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<a href=\\\"http://www.brandonbrotsky.com/?openInSafari=true\\\" target=\\\"_blank\\\">asdfasdfasdfasdf</a>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"696188928\",\n                    \"ParentId\": \"2205352469\"\n                },\n                {\n                    \"Id\": \"2205352469\",\n                    \"MobileId\": \"2205352469\",\n                    \"Version\": 3,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"696188928\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"696188928\",\n            \"Version\": 31,\n            \"Name\": \"BesprechungTest\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-03-04T09:45:50\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"919732224\",\n            \"Version\": 2,\n            \"Name\": \"Bestandsaufnahme Energieprojekt\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T09:01:45\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1013156202\",\n                    \"MobileId\": \"1013156202\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1014202374\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1013156201\",\n                    \"MobileId\": \"1013156201\",\n                    \"Version\": 3,\n                    \"Name\": \"Herstellergarantie\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Garantie bis\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Datum für die Herstellergarantie\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1014202374\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1014202374\",\n            \"Version\": 2,\n            \"Name\": \"Kühlschrank\",\n            \"MappingId\": null,\n            \"DateModified\": \"2014-11-14T07:38:45\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1149665280\",\n            \"Version\": 2,\n            \"Name\": \"IBN VRV Chiller\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-03-03T12:52:23\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1182859268\",\n            \"Version\": 1,\n            \"Name\": \"Kaffeemaschine\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-02-24T15:55:27\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1202618370\",\n            \"Version\": 1,\n            \"Name\": \"A-Produkt\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-03-09T08:37:48\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1202618371\",\n            \"Version\": 1,\n            \"Name\": \"B-Produkt\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-03-09T08:38:01\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1202618372\",\n            \"Version\": 1,\n            \"Name\": \"A-Produkt\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-03-09T08:38:05\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1896416441\",\n                    \"MobileId\": \"1896416441\",\n                    \"Version\": 2,\n                    \"Name\": \"Choice\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1202618373\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1896416442\",\n                    \"MobileId\": \"1896416442\",\n                    \"Version\": 2,\n                    \"Name\": \"Choice\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1202618373\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1896416443\",\n                    \"MobileId\": \"1896416443\",\n                    \"Version\": 2,\n                    \"Name\": \"Choice\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1202618373\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1202618373\",\n            \"Version\": 2,\n            \"Name\": \"B-Produkt\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-11-26T09:31:27\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1406894080\",\n            \"Version\": 23,\n            \"Name\": \"Endabnahme\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T08:52:22\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1407778835\",\n                    \"MobileId\": \"1407778835\",\n                    \"Version\": 5,\n                    \"Name\": \"Allgemeine Informationen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erstinstallation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Kühlflüssigkeit\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1408008192\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1408008192\",\n            \"Version\": 6,\n            \"Name\": \"Klimaanlage \",\n            \"MappingId\": null,\n            \"DateModified\": \"2019-03-05T07:18:37\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1758726318\",\n                    \"MobileId\": \"1758726318\",\n                    \"Version\": 3,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1758726319\",\n                    \"MobileId\": \"1758726319\",\n                    \"Version\": 3,\n                    \"Name\": \"sadfasdf asdf\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1758726323\",\n                    \"MobileId\": \"1758726323\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"1758726319\"\n                },\n                {\n                    \"Id\": \"1758726324\",\n                    \"MobileId\": \"1758726324\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"1758726319\"\n                },\n                {\n                    \"Id\": \"1758726317\",\n                    \"MobileId\": \"1758726317\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1758726320\",\n                    \"MobileId\": \"1758726320\",\n                    \"Version\": 3,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"1758726319\"\n                },\n                {\n                    \"Id\": \"1758726321\",\n                    \"MobileId\": \"1758726321\",\n                    \"Version\": 3,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"sdfasdfasdfasdf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"1758726319\"\n                },\n                {\n                    \"Id\": \"1758726322\",\n                    \"MobileId\": \"1758726322\",\n                    \"Version\": 3,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfsdaf\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"1758726319\"\n                },\n                {\n                    \"Id\": \"1626673453\",\n                    \"MobileId\": \"1626673453\",\n                    \"Version\": 6,\n                    \"Name\": \"Anlagendaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erste Installation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978624\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1629978624\",\n            \"Version\": 6,\n            \"Name\": \"Innengerät\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-11-25T17:07:39\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1626673452\",\n                    \"MobileId\": \"1626673452\",\n                    \"Version\": 2,\n                    \"Name\": \"Anlagendaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Erstinstallation\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Letzte Wartung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1629978625\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1629978625\",\n            \"Version\": 2,\n            \"Name\": \"Rolltreppe\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-09-03T06:07:31\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1647247366\",\n            \"Version\": 8,\n            \"Name\": \"Leckortung\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T08:52:44\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1691325270\",\n                    \"MobileId\": \"1691325270\",\n                    \"Version\": 2,\n                    \"Name\": \"FXFQ50P Inneneinheit/en\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325271\",\n                    \"MobileId\": \"1691325271\",\n                    \"Version\": 2,\n                    \"Name\": \"Funktionsprüfung Kondensatpumpe\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Funktionsprüfung Kondensatpumpe\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325272\",\n                    \"MobileId\": \"1691325272\",\n                    \"Version\": 2,\n                    \"Name\": \"Prüfung Kondensatablfuss\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Prüfung Kondensatablfuss<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325273\",\n                    \"MobileId\": \"1691325273\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung Kondensatwanne / -leitungen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Reinigung Kondensatwanne / -leitungen<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325274\",\n                    \"MobileId\": \"1691325274\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung Lichtsensor / Blende\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Reinigung Lichtsensor / Blende<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325275\",\n                    \"MobileId\": \"1691325275\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung / Erneuerung Filter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Reinigung / Erneuerung Filter<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325276\",\n                    \"MobileId\": \"1691325276\",\n                    \"Version\": 2,\n                    \"Name\": \"Reset Filtermeldung durchgeführt\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Führen Sie einen Reset der Filtermeldung durch\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325277\",\n                    \"MobileId\": \"1691325277\",\n                    \"Version\": 2,\n                    \"Name\": \"Prüfung und Reinigen Lüfter/Lüfterflügel\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"11\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Lüfter auf Unwucht und Funktion prüfen<br></li><li>Ventilatorschaufeln säubern</li><li>Laufrichtung der Ventilatoren prüfen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325278\",\n                    \"MobileId\": \"1691325278\",\n                    \"Version\": 2,\n                    \"Name\": \"Funktionsprüfung Innengerät und Fernbedienung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Führen Sie eine Funktionsprüfung der Innengeräte und der Fernbedienung durch.&nbsp;<div><ul><li>Kein Mangel =&gt; Grüner Haken</li><li>Mangel =&gt; Rotes Kreuz =&gt; Kommentar einfügen</li></ul></div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325279\",\n                    \"MobileId\": \"1691325279\",\n                    \"Version\": 2,\n                    \"Name\": \"Prüfung der elektrischen Spannungsversorgung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Prüfung der elektrischen Spannung</li><li>Prüfung des Schutzskontakts am Außengerät</li><li>Prüfung der elektrischen Anlagen. + Spannungsversorgung</li><li>Prüfung der Anschlussklemmen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325280\",\n                    \"MobileId\": \"1691325280\",\n                    \"Version\": 2,\n                    \"Name\": \"Messung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325281\",\n                    \"MobileId\": \"1691325281\",\n                    \"Version\": 2,\n                    \"Name\": \"Verdampfer Temperatur Innengerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Eintritt\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Austritt\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"T0\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810689\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1693810689\",\n            \"Version\": 6,\n            \"Name\": \"DM Innengerät\",\n            \"MappingId\": null,\n            \"DateModified\": \"2017-05-18T11:07:06\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1691325286\",\n                    \"MobileId\": \"1691325286\",\n                    \"Version\": 2,\n                    \"Name\": \"Allgemeiner Zustand (Foto)\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"1-Gut \\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"2-Zufriedenstellend\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"3-Schlecht (Bild machen)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325287\",\n                    \"MobileId\": \"1691325287\",\n                    \"Version\": 2,\n                    \"Name\": \"Foto des Zustandes\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325288\",\n                    \"MobileId\": \"1691325288\",\n                    \"Version\": 2,\n                    \"Name\": \"Anlagenstatus vor Service\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage in Betrieb\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Anlage spannungsfrei\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Anlage mit Fehler (Fehlerstatus dokumentieren)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325289\",\n                    \"MobileId\": \"1691325289\",\n                    \"Version\": 2,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325290\",\n                    \"MobileId\": \"1691325290\",\n                    \"Version\": 2,\n                    \"Name\": \"Fehlerstatus\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"29\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Adresse\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Fehlermeldung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325289\"\n                },\n                {\n                    \"Id\": \"1691325291\",\n                    \"MobileId\": \"1691325291\",\n                    \"Version\": 2,\n                    \"Name\": \"Innen und Außenreinigung des Geräts\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel festgestellt\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Feucht abwischen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325292\",\n                    \"MobileId\": \"1691325292\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung Verflüssiger\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Nicht erforderlich\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325293\",\n                    \"MobileId\": \"1691325293\",\n                    \"Version\": 2,\n                    \"Name\": \"Prüfung Verflüssiger Ventilator\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel und Gesäubert\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Lüfter auf Unwucht und Funktion prüfen</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Ventilatorschaufeln säubern</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Laufrichtung der Ventilatoren prüfen</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325294\",\n                    \"MobileId\": \"1691325294\",\n                    \"Version\": 2,\n                    \"Name\": \"Kontrolle auf Ölspuren\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Alles ist dicht\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ölspuren vorhanden (mit Kältemaschinenöl nachgeölt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Ölwechsel durchgeführt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Öltest angeordnet\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtkontrolle auf Dichtigkeit und Ölspuren an den Börtelmutter prüfen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325295\",\n                    \"MobileId\": \"1691325295\",\n                    \"Version\": 2,\n                    \"Name\": \"Begleitheizung auf Beschädigung prüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Kondensatbegleitheizung auf Beschädigung prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325296\",\n                    \"MobileId\": \"1691325296\",\n                    \"Version\": 2,\n                    \"Name\": \"Kondensatablauf Außengerät prüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Frostfreier Kondensatablauf prüfen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325297\",\n                    \"MobileId\": \"1691325297\",\n                    \"Version\": 2,\n                    \"Name\": \"Reparaturschalter am Außengerät vorhanden\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"31\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel (Wartung ist nicht möglich)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Alternative Wartung mit Mangel weiterführen\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325298\",\n                    \"MobileId\": \"1691325298\",\n                    \"Version\": 2,\n                    \"Name\": \"Prüfung elektrische Spannungsversorgung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"30\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Keine Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Prüfung der elektrischen Spannung</li><li>Prüfung des Schutzskontakts am Außengerät</li><li>Prüfung der elektrischen Anlagen. + Spannungsversorgung</li><li>Prüfung der Anschlussklemmen</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325299\",\n                    \"MobileId\": \"1691325299\",\n                    \"Version\": 2,\n                    \"Name\": \"Messdaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"32\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325300\",\n                    \"MobileId\": \"1691325300\",\n                    \"Version\": 2,\n                    \"Name\": \"Verflüssiger\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"34\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 19,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verdampfungstemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Verflüssigungstemperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Messen Sie die Temperaturen am Verflüssiger\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325299\"\n                },\n                {\n                    \"Id\": \"1691325301\",\n                    \"MobileId\": \"1691325301\",\n                    \"Version\": 2,\n                    \"Name\": \"Isolierung prüfen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Isolierung, Rohrleitungen und Tauwasserleitungen keine Mängel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mängel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li><span style=\\\"line-height: 1.42857143;\\\">Kältemittelrohrleitung auf sichtbare Beschädigungen geprüft</span><br></li><li><span style=\\\"line-height: 1.42857143;\\\">Isolierung auf sichtbare Beschädigung geprüft</span></li><li><span style=\\\"line-height: 1.42857143;\\\">Tauwasserleitung auf sichtbare Beschädigung geprüft</span></li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325302\",\n                    \"MobileId\": \"1691325302\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung Gerät\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"36\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"TEK-MATE\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Weiteres Gerät im Komentar hinzufügen\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Wählen Sie ein Gerät für die Dichtheitsprüfung\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325303\",\n                    \"MobileId\": \"1691325303\",\n                    \"Version\": 2,\n                    \"Name\": \"Dichtheitsprüfung (Kältekreis)\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"35\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Dichtheitsprüfung bestanden (Keine Mängel)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kältemittel nachgefüllt, keine Undichtigkeit festgestellt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel festgestellt und Leck beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel nicht beseitigt (Havarieschritt hinzugefügt)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Führen Sie eine Dichtheitsprüfung des Kältekreises durch<div><ul><li>Dichtheitsprüfung der Börderlmuttern mit elektrischen Lecksuchgerät (Innengeräte)</li><li>Dichtheitsprüfung des Innenraums mit elektrischem Lecksuchgerät (Außengerät)</li><li>Automatischer Leakcheck durchgeführt</li></ul></div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325304\",\n                    \"MobileId\": \"1691325304\",\n                    \"Version\": 2,\n                    \"Name\": \"VRV Checker anschliessen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"nicht notwendig\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"angeschlossen und Datei gesichtert\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"1691325285\"\n                },\n                {\n                    \"Id\": \"1691325285\",\n                    \"MobileId\": \"1691325285\",\n                    \"Version\": 3,\n                    \"Name\": \"REMQ22P Außeneinheit 3 Leiter Technik\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"2074772070\",\n                    \"MobileId\": \"2074772070\",\n                    \"Version\": 3,\n                    \"Name\": \"Produktdaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"40\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325282\",\n                    \"MobileId\": \"1691325282\",\n                    \"Version\": 3,\n                    \"Name\": \"Notwendiges Wartungsmaterial\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"37\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Für Innengerät:<ol><li>Serviccefernbedienung BRC1E52</li><li>Endoskopkamera</li><li>Wasserspriztflasche</li><li>Innengerätreiniger (Chlor und Azeton frei)</li></ol>Für Außengerät und System:<ol><li>VRV Checker + Laptop</li><li>R410A Lecksuchgerät</li></ol>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325283\",\n                    \"MobileId\": \"1691325283\",\n                    \"Version\": 3,\n                    \"Name\": \"Wartungsanleitung gelesen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"38\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ich habe die Wartungsanleitung verstanden\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Sie finden die Wartungsanleitung und alle wichtigen Dokumente im Anhang.<br><br>Bestätigen Sie, dass Sie die Wartungsanleitung zu diesem Auftrag gelesen und verstanden haben.<br>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1691325284\",\n                    \"MobileId\": \"1691325284\",\n                    \"Version\": 3,\n                    \"Name\": \"Prüfung MSR Störweiterschaltung\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"39\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Ja\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Stellen Sie sicher, dass die MSR Störweiterschaltung deaktiviert wurde.<div>Stellen Sie sicher, dass Sie den Wartungsschalter an der Anlage gedrückt haben</div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1693810690\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1693810690\",\n            \"Version\": 7,\n            \"Name\": \"DM 3 Leiter Technik\",\n            \"MappingId\": null,\n            \"DateModified\": \"2017-05-18T11:07:28\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1694334977\",\n            \"Version\": 5,\n            \"Name\": \"Unterschrift\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-13T08:53:01\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"2023489870\",\n                    \"MobileId\": \"2023489870\",\n                    \"Version\": 4,\n                    \"Name\": \"Mängelanzeige\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden und Foto gemacht\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mange vorhanden und muss noch behoben werden\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>Beschreiben Sie den Mangel und machen Sie ein Foto</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1735524355\",\n                    \"ParentId\": \"2031289293\"\n                },\n                {\n                    \"Id\": \"2031289293\",\n                    \"MobileId\": \"2031289293\",\n                    \"Version\": 3,\n                    \"Name\": \"Mangel\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1735524355\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"2031289294\",\n                    \"MobileId\": \"2031289294\",\n                    \"Version\": 5,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 4,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>Hiermit nehme ich folgenden Mangel zur Kenntnis</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1735524355\",\n                    \"ParentId\": \"2031289293\"\n                },\n                {\n                    \"Id\": \"2031289296\",\n                    \"MobileId\": \"2031289296\",\n                    \"Version\": 3,\n                    \"Name\": \"Unterschrift Techniker\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 3,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1735524355\",\n                    \"ParentId\": \"2031289293\"\n                }\n            ],\n            \"Id\": \"1735524355\",\n            \"Version\": 9,\n            \"Name\": \"Mängelanzeige\",\n            \"MappingId\": null,\n            \"DateModified\": \"2018-05-31T07:32:39\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1765803483\",\n                    \"MobileId\": \"1765803483\",\n                    \"Version\": 1,\n                    \"Name\": \"HAVARIE undichter Kältekreis\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Undichte Kälteleitung konnte nicht abgedichtet werden Anlage wurde stillgelegt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Undichte Kälteleitung konnte abgedichtet werden. Nächster Prüftermin in 4 Wochen\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Bei der Feindichtheitspürfung wurde einen Haveri des Kältekreises festgestellt\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455040\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1770455040\",\n            \"Version\": 3,\n            \"Name\": \"HAVARIE undichter Kätlekreis\",\n            \"MappingId\": null,\n            \"DateModified\": \"2016-01-26T07:54:26\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1845199142\",\n                    \"MobileId\": \"1845199142\",\n                    \"Version\": 3,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"11\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1845199144\",\n                    \"MobileId\": \"1845199144\",\n                    \"Version\": 3,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"13\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1805648811\",\n                    \"MobileId\": \"1805648811\",\n                    \"Version\": 9,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Spannung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"Bitte trage diese Werte hier ein.\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1794377453\",\n                    \"MobileId\": \"1794377453\",\n                    \"Version\": 11,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"8\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Leistung Eingang\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Leistung Ausgang\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1845199143\",\n                    \"MobileId\": \"1845199143\",\n                    \"Version\": 6,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"12\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1765803675\",\n                    \"MobileId\": \"1765803675\",\n                    \"Version\": 11,\n                    \"Name\": \"Reinigung Gehäuse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"3\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 10,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Gereinigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803676\",\n                    \"MobileId\": \"1765803676\",\n                    \"Version\": 11,\n                    \"Name\": \"Funktionsprüfung Lüfter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803677\",\n                    \"MobileId\": \"1765803677\",\n                    \"Version\": 11,\n                    \"Name\": \"Funktionsprüfung Expansionsventil\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"nicht vorhanden\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803678\",\n                    \"MobileId\": \"1765803678\",\n                    \"Version\": 11,\n                    \"Name\": \"Funktionsprüfung Heizleistung Ausreichend\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 13,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1845199141\",\n                    \"MobileId\": \"1845199141\",\n                    \"Version\": 10,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803673\",\n                    \"MobileId\": \"1765803673\",\n                    \"Version\": 12,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803674\",\n                    \"MobileId\": \"1765803674\",\n                    \"Version\": 12,\n                    \"Name\": \"Reinigung und Prüfung Filter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Gereinigt und geprüft\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<div><br></div>\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1765803672\",\n                    \"MobileId\": \"1765803672\",\n                    \"Version\": 12,\n                    \"Name\": \"DM Türluftschleier\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"7\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": \"\",\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199145\",\n                    \"MobileId\": \"1845199145\",\n                    \"Version\": 4,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"14\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1845199146\",\n                    \"MobileId\": \"1845199146\",\n                    \"Version\": 2,\n                    \"Name\": \"copy_DM Türluftschleier\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"15\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 5,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1845199147\",\n                    \"MobileId\": \"1845199147\",\n                    \"Version\": 2,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"16\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199148\",\n                    \"MobileId\": \"1845199148\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung und Prüfung Filter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"17\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 18,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Gereinigt und geprüft\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<div><br></div>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199149\",\n                    \"MobileId\": \"1845199149\",\n                    \"Version\": 2,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"18\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 19,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199150\",\n                    \"MobileId\": \"1845199150\",\n                    \"Version\": 2,\n                    \"Name\": \"Reinigung Gehäuse\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"19\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 20,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Gereinigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199151\",\n                    \"MobileId\": \"1845199151\",\n                    \"Version\": 2,\n                    \"Name\": \"Funktionsprüfung Lüfter\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"20\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 21,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Kein Mangel (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199152\",\n                    \"MobileId\": \"1845199152\",\n                    \"Version\": 2,\n                    \"Name\": \"Funktionsprüfung Expansionsventil\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 22,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"nicht vorhanden\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199153\",\n                    \"MobileId\": \"1845199153\",\n                    \"Version\": 2,\n                    \"Name\": \"Funktionsprüfung Heizleistung Ausreichend\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 23,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199154\",\n                    \"MobileId\": \"1845199154\",\n                    \"Version\": 2,\n                    \"Name\": \"Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"23\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 24,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199155\",\n                    \"MobileId\": \"1845199155\",\n                    \"Version\": 2,\n                    \"Name\": \"copy_Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"24\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 25,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199156\",\n                    \"MobileId\": \"1845199156\",\n                    \"Version\": 2,\n                    \"Name\": \"copy_Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 26,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1845199146\"\n                },\n                {\n                    \"Id\": \"1845199157\",\n                    \"MobileId\": \"1845199157\",\n                    \"Version\": 2,\n                    \"Name\": \"copy_Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                },\n                {\n                    \"Id\": \"1845199158\",\n                    \"MobileId\": \"1845199158\",\n                    \"Version\": 2,\n                    \"Name\": \"copy_Allgemeiner Zustand\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Kein Mangel\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Mangel vorhanden (Kommentar und Foto)\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<ul><li>Sichtprüfung des Gehäuses</li><li>Sichtprüfung der Lamellen</li><li>Sichtprüfung des Lüfters</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1770455041\",\n                    \"ParentId\": \"1765803672\"\n                }\n            ],\n            \"Id\": \"1770455041\",\n            \"Version\": 18,\n            \"Name\": \"DM Türluftschleier\",\n            \"MappingId\": null,\n            \"DateModified\": \"2017-05-18T11:07:51\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1845729627\",\n                    \"MobileId\": \"1845729627\",\n                    \"Version\": 9,\n                    \"Name\": \"Parameter Warmwasserspeicher\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"VL Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"RL Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>Tragen Sie die VL und RL des Warmwasserspeichers gemäß Skizze ein.</p>\\n<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/57e0dd53-748f-42e3-8a87-2310936a01f4\\\" data-image=\\\"5300617218\\\"></figure><p><br></p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"1845729628\",\n                    \"MobileId\": \"1845729628\",\n                    \"Version\": 9,\n                    \"Name\": \"Foto vom Warmwasserspeicher\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 2,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfa\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"2026963635\",\n                    \"MobileId\": \"2026963635\",\n                    \"Version\": 9,\n                    \"Name\": \"Messwerte aufnehmen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"4\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 3,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"2026963637\",\n                    \"MobileId\": \"2026963637\",\n                    \"Version\": 13,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"6\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 5,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"2026963635\"\n                },\n                {\n                    \"Id\": \"2026963636\",\n                    \"MobileId\": \"2026963636\",\n                    \"Version\": 14,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"5\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 4,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"2026963635\"\n                },\n                {\n                    \"Id\": \"2028602753\",\n                    \"MobileId\": \"2028602753\",\n                    \"Version\": 11,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"9\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 6,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"2026963635\"\n                },\n                {\n                    \"Id\": \"2028602754\",\n                    \"MobileId\": \"2028602754\",\n                    \"Version\": 11,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"10\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 7,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"2026963635\"\n                },\n                {\n                    \"Id\": \"2028603365\",\n                    \"MobileId\": \"2028603365\",\n                    \"Version\": 11,\n                    \"Name\": \"Unterschrift Kunde\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"20\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 13,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<p>asdfas dfasfasdf</p>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"5339680927\",\n                    \"MobileId\": \"5339680927\",\n                    \"Version\": 4,\n                    \"Name\": \"Messwerte aufnehmen\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"21\",\n                    \"Type\": \"Group\",\n                    \"SortOrder\": 8,\n                    \"Data\": \"{\\\"GroupType\\\":0,\\\"isChoosen\\\":true,\\\"IsCloneable\\\":0}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"2026963635\"\n                },\n                {\n                    \"Id\": \"5339680928\",\n                    \"MobileId\": \"5339680928\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"22\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 9,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 1\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Zähler 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<figure><img src=\\\"https://portal.mobilefieldreport.com/mfr/EmbeddedImageBlob/8d397418-b660-47fd-9640-50132a3f97b4\\\" data-image=\\\"\\\"></figure>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"5339680927\"\n                },\n                {\n                    \"Id\": \"5339680929\",\n                    \"MobileId\": \"5339680929\",\n                    \"Version\": 4,\n                    \"Name\": \"Unterschrift\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"23\",\n                    \"Type\": \"SignDocument\",\n                    \"SortOrder\": 10,\n                    \"Data\": null,\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"5339680927\"\n                },\n                {\n                    \"Id\": \"5339680930\",\n                    \"MobileId\": \"5339680930\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"24\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 11,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"5339680927\"\n                },\n                {\n                    \"Id\": \"5339680931\",\n                    \"MobileId\": \"5339680931\",\n                    \"Version\": 4,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"25\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 12,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"OK\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"Fehler\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"5339680927\"\n                },\n                {\n                    \"Id\": \"5339680932\",\n                    \"MobileId\": \"5339680932\",\n                    \"Version\": 3,\n                    \"Name\": \"Foto vom Warmwasserspeicher\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"26\",\n                    \"Type\": \"Choice\",\n                    \"SortOrder\": 14,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isError\\\": false,\\r\\n      \\\"name\\\": \\\"Erledigt\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isError\\\": true,\\r\\n      \\\"name\\\": \\\"asdfasdfa\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"isRequired\\\": false,\\r\\n  \\\"result\\\": null,\\r\\n  \\\"type\\\": \\\"singlechoice\\\",\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"5892541461\",\n                    \"MobileId\": \"5892541461\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"27\",\n                    \"Type\": \"Material\",\n                    \"SortOrder\": 15,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"5892541462\",\n                    \"MobileId\": \"5892541462\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"28\",\n                    \"Type\": \"Picture\",\n                    \"SortOrder\": 16,\n                    \"Data\": \"{}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"5892541463\",\n                    \"MobileId\": \"5892541463\",\n                    \"Version\": 2,\n                    \"Name\": \"Auswahl\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"29\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 17,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1846837251\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1846837251\",\n            \"Version\": 39,\n            \"Name\": \"Warmwasserspeicher\",\n            \"MappingId\": null,\n            \"DateModified\": \"2018-05-24T10:47:07\",\n            \"IsReleased\": true,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [],\n            \"Id\": \"1855029248\",\n            \"Version\": 1,\n            \"Name\": \"BHKW Patruus 50 bis 400kW\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-11-12T09:25:21\",\n            \"IsReleased\": false,\n            \"IsDurable\": false\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1853688135\",\n                    \"MobileId\": \"1853688135\",\n                    \"Version\": 3,\n                    \"Name\": \"Produkdaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"<span>Der patruus auf einen Blick.</span><ul><li>BHKW Baureihe mit einer elektrischen Leistung von 50 bis 400 kW</li><li>Betrieb mit Erdgas oder Biogas</li><li>Ausführung als anschlussfertiges Kompaktmodul</li><li>Hohe Anlagenverfügbarkeit durch etablierte Motorentechnik</li><li>Verfügbar sowohl mit Saugmotoren als auch mit turboaufgeladenen Motoren</li><li>Modularer Aufbau erleichtert Installation an schwer zugänglichen Orten</li><li>Robust und wartungsarm</li></ul>\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1855029249\",\n                    \"ParentId\": \"0\"\n                },\n                {\n                    \"Id\": \"9584345090\",\n                    \"MobileId\": \"9584345090\",\n                    \"Version\": 2,\n                    \"Name\": \"Choice\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"2\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 1,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperature 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": null,\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1855029249\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1855029249\",\n            \"Version\": 7,\n            \"Name\": \"BHKW\",\n            \"MappingId\": null,\n            \"DateModified\": \"2019-07-27T11:56:38\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        },\n        {\n            \"Steps\": [\n                {\n                    \"Id\": \"1853688115\",\n                    \"MobileId\": \"1853688115\",\n                    \"Version\": 3,\n                    \"Name\": \"Produktdaten\",\n                    \"IsDone\": false,\n                    \"HasError\": false,\n                    \"TrackingId\": \"1\",\n                    \"Type\": \"EnterValue\",\n                    \"SortOrder\": 0,\n                    \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Seriennummer\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Installationsdatum\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Effektive Leistung\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n                    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n                    \"ServiceRequestId\": \"0\",\n                    \"Description\": \"\",\n                    \"Comment\": null,\n                    \"InternalComment\": null,\n                    \"ServiceObjectId\": \"0\",\n                    \"StepListTemplateId\": \"1855029250\",\n                    \"ParentId\": \"0\"\n                }\n            ],\n            \"Id\": \"1855029250\",\n            \"Version\": 3,\n            \"Name\": \"BHKW\",\n            \"MappingId\": null,\n            \"DateModified\": \"2015-11-12T13:32:04\",\n            \"IsReleased\": true,\n            \"IsDurable\": true\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/StepListTemplates?$expand=Steps&$skip=32\"\n}"}],"_postman_id":"9c965690-9544-4144-b31e-444b8ee15a6d"},{"name":"Get a Step List Template","id":"ab3cc72d-6f74-43ef-bf10-065cfb654163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/StepListTemplates(9969565697L)?$expand=Steps","description":"<p>Gets a specific Step List Template.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Template's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["StepListTemplates(9969565697L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Steps"}],"variable":[]}},"response":[{"id":"df6f11b3-ece2-4628-9ef6-bf77de49b597","name":"Get a Step List Template (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/StepListTemplates(9969565697L)?$expand=Steps","host":["https://portal.mobilefieldreport.com/odata"],"path":["StepListTemplates(9969565697L)"],"query":[{"key":"$expand","value":"Steps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:24:07 GMT"},{"key":"Content-Length","value":"2027"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#StepListTemplates/@Element\",\n    \"Steps\": [\n        {\n            \"Id\": \"9962851356\",\n            \"MobileId\": \"9962851356\",\n            \"Version\": 27,\n            \"Name\": \"Fehlerstep\",\n            \"IsDone\": false,\n            \"HasError\": false,\n            \"TrackingId\": \"1\",\n            \"Type\": \"EnterValue\",\n            \"SortOrder\": 0,\n            \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Test\\\",\\r\\n      \\\"type\\\": \\\"choice\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n            \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n            \"ServiceRequestId\": \"0\",\n            \"Description\": \"<p>yxcyxcvyxcv</p>\",\n            \"Comment\": null,\n            \"InternalComment\": null,\n            \"ServiceObjectId\": \"0\",\n            \"StepListTemplateId\": \"9969565697\",\n            \"ParentId\": \"0\"\n        },\n        {\n            \"Id\": \"9983263448\",\n            \"MobileId\": \"9983263448\",\n            \"Version\": 9,\n            \"Name\": \"Auswahl\",\n            \"IsDone\": false,\n            \"HasError\": false,\n            \"TrackingId\": \"2\",\n            \"Type\": \"EnterValue\",\n            \"SortOrder\": 1,\n            \"Data\": \"{\\r\\n  \\\"fields\\\": [\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    },\\r\\n    {\\r\\n      \\\"isRequired\\\": true,\\r\\n      \\\"name\\\": \\\"Temperatur 2\\\",\\r\\n      \\\"type\\\": \\\"text\\\"\\r\\n    }\\r\\n  ],\\r\\n  \\\"custom\\\": null\\r\\n}\",\n            \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n            \"ServiceRequestId\": \"0\",\n            \"Description\": null,\n            \"Comment\": null,\n            \"InternalComment\": null,\n            \"ServiceObjectId\": \"0\",\n            \"StepListTemplateId\": \"9969565697\",\n            \"ParentId\": \"0\"\n        }\n    ],\n    \"Id\": \"9969565697\",\n    \"Version\": 56,\n    \"Name\": \"Fehlertest\",\n    \"MappingId\": null,\n    \"DateModified\": \"2019-09-10T11:19:36\",\n    \"IsReleased\": true,\n    \"IsDurable\": false\n}"}],"_postman_id":"ab3cc72d-6f74-43ef-bf10-065cfb654163"},{"name":"Create a Step List Template","id":"be84e0dd-105c-42e6-904d-e1f413c428da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Checklist 0001\",\n    \"MappingId\": \"CT-0001\",\n    \"IsReleased\": true\n}"},"url":"https://portal.mobilefieldreport.com/odata/StepListTemplates","description":"<p>Creates a Step List Template.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Template's name.</td>\n</tr>\n<tr>\n<td>MappingId</td>\n<td>string</td>\n<td>Optional. Template's mapping id.</td>\n</tr>\n<tr>\n<td>IsReleased</td>\n<td>bool</td>\n<td>Optional. If false, it cannot be added to a Service Request. Default is false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["StepListTemplates"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"19b83526-a3ce-4c9b-94d4-7f66caaa648f","name":"Create a Step List Template (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Test Checklist 0001\",\n    \"MappingId\": \"CT-0001\",\n    \"IsReleased\": true\n}"},"url":"https://portal.mobilefieldreport.com/odata/StepListTemplates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/StepListTemplates(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:24:28 GMT"},{"key":"Content-Length","value":"270"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#StepListTemplates/@Element\",\n    \"Id\": \"10001186820\",\n    \"Version\": 1,\n    \"Name\": \"Test Checklist 0001\",\n    \"MappingId\": \"CT-0001\",\n    \"DateModified\": \"2019-09-10T12:24:28.1340631Z\",\n    \"IsReleased\": true,\n    \"IsDurable\": false\n}"}],"_postman_id":"be84e0dd-105c-42e6-904d-e1f413c428da"}],"id":"38391fd8-0d6e-4064-a3e0-781da0baab9b","description":"<p>A Step List Template or <em>Checklist Template</em> is a collection of <strong>Steps</strong> done for a particular pattern. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Checklist template's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Checklist template's name.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Date of last modification.</td>\n</tr>\n<tr>\n<td>IsReleased</td>\n<td>bool</td>\n<td>Wheter the Checklist template can be attached to a job.</td>\n</tr>\n<tr>\n<td>Steps</td>\n<td>array</td>\n<td>Checklist template's step list.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"af29b1fd-b76b-4cb6-8fa6-7ce416dcff06"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"98327728-c90a-41f2-91bf-caf9a943ec32"}}],"_postman_id":"38391fd8-0d6e-4064-a3e0-781da0baab9b","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Step","item":[{"name":"Get Steps in a Service Request","id":"2fc26563-a9c6-4df7-8777-653a28c4ace6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)?$expand=Steps&$select=Steps","description":"<p>Get all Steps in a specific Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Service Request's Id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9993846794L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Steps"},{"key":"$select","value":"Steps"}],"variable":[]}},"response":[{"id":"d8c1b26c-7a20-4e9c-98b0-bbf3a30e5955","name":"Get Steps in a Service Request (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)?$expand=Steps&$select=Steps","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","ServiceRequests(9993846794L)"],"query":[{"key":"$expand","value":"Steps"},{"key":"$select","value":"Steps"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 10:58:14 GMT"},{"key":"Content-Length","value":"1372"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ServiceRequests/@Element&$select=Steps\",\n    \"Steps\": [\n        {\n            \"Id\": \"9992897584\",\n            \"MobileId\": \"9992897584\",\n            \"Version\": 1,\n            \"Name\": \"New Step\",\n            \"IsDone\": false,\n            \"HasError\": false,\n            \"TrackingId\": null,\n            \"Type\": \"Group\",\n            \"SortOrder\": 1,\n            \"Data\": null,\n            \"DateModifiedOffline\": \"2019-09-10T10:48:41\",\n            \"ServiceRequestId\": \"9993846794\",\n            \"Description\": \"Test group step\",\n            \"Comment\": null,\n            \"InternalComment\": null,\n            \"ServiceObjectId\": \"0\",\n            \"StepListTemplateId\": \"0\",\n            \"ParentId\": \"0\"\n        },\n        {\n            \"Id\": \"9994045418\",\n            \"MobileId\": \"9994045418\",\n            \"Version\": 1,\n            \"Name\": \"New Step\",\n            \"IsDone\": false,\n            \"HasError\": false,\n            \"TrackingId\": null,\n            \"Type\": \"EnterValue\",\n            \"SortOrder\": 2,\n            \"Data\": null,\n            \"DateModifiedOffline\": \"2019-09-10T10:51:06\",\n            \"ServiceRequestId\": \"9993846794\",\n            \"Description\": \"Test group step\",\n            \"Comment\": \"Comments in this step\",\n            \"InternalComment\": null,\n            \"ServiceObjectId\": \"0\",\n            \"StepListTemplateId\": \"0\",\n            \"ParentId\": \"9992897584\"\n        },\n        {\n            \"Id\": \"9994045419\",\n            \"MobileId\": \"9994045419\",\n            \"Version\": 1,\n            \"Name\": \"New Step Material\",\n            \"IsDone\": false,\n            \"HasError\": false,\n            \"TrackingId\": null,\n            \"Type\": \"Material\",\n            \"SortOrder\": 3,\n            \"Data\": null,\n            \"DateModifiedOffline\": \"2019-09-10T10:52:20\",\n            \"ServiceRequestId\": \"9993846794\",\n            \"Description\": \"Test group step\",\n            \"Comment\": \"Comments in this step\",\n            \"InternalComment\": null,\n            \"ServiceObjectId\": \"0\",\n            \"StepListTemplateId\": \"0\",\n            \"ParentId\": \"9992897584\"\n        }\n    ]\n}"}],"_postman_id":"2fc26563-a9c6-4df7-8777-653a28c4ace6"},{"name":"Retrieve a Step in a Service Request","id":"6b518d7e-2056-4763-b046-af2b6a8efa7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Steps(10970303991L)?$expand=Attachments","description":"<p>Get a particular Step in a Service Request checklist.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps(10970303991L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Attachments"}],"variable":[]}},"response":[{"id":"dd985219-5751-4f88-af20-2e2a7365789b","name":"Retrieve a Step in a Service Request 200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Steps(10970303991L)?$expand=Attachments","host":["https://portal.mobilefieldreport.com/odata"],"path":["Steps(10970303991L)"],"query":[{"key":"$expand","value":"Attachments"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 12 Dec 2019 14:54:22 GMT"},{"key":"Content-Length","value":"518"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Steps/@Element\",\n    \"Attachments\": [],\n    \"Id\": \"10970303991\",\n    \"MobileId\": \"10970303991\",\n    \"Version\": 1,\n    \"Name\": \"Informationen\",\n    \"IsDone\": false,\n    \"HasError\": false,\n    \"TrackingId\": \"22\",\n    \"Type\": \"Group\",\n    \"SortOrder\": 1,\n    \"Data\": \"{\\\"GroupType\\\":0,\\\"IsCloneable\\\":0}\",\n    \"DateModifiedOffline\": \"1980-01-01T00:00:00\",\n    \"ServiceRequestId\": \"10978983957\",\n    \"Description\": \"\",\n    \"Comment\": null,\n    \"InternalComment\": null,\n    \"ServiceObjectId\": \"0\",\n    \"StepListTemplateId\": \"0\",\n    \"ParentId\": \"0\"\n}"}],"_postman_id":"6b518d7e-2056-4763-b046-af2b6a8efa7f"},{"name":"Create a Step in a Step List Template","id":"de14c98f-1ea9-421c-8d9b-0ccfe7c18465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Werteingabeschritt\",\n    \"Type\": \"EnterValue\",\n    \"Description\": \"Test group step\",\n    \"StepListTemplateId\": \"753664\",\n    \"Data\": \"{\\r\\n    \\\"fields\\\": [{\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field with errorlist\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"enumeration\\\": \\\"Opt 1;Opt 2;Opt 3\\\",\\r\\n        \\\"errorlist\\\": \\\"true;false;true\\\"\\r\\n    }, {\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without errorlist\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"enumeration\\\": \\\"Opt 1;Opt 2;Opt 3\\\",\\r\\n    }, {\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without enumeration\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"errorlist\\\": \\\"true;false;true\\\"\\r\\n    },{\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without any\\\",\\r\\n        \\\"type\\\": \\\"choice\\\"\\r\\n    }],\\r\\n    \\\"custom\\\": null\\r\\n}\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps","description":"<p>Attach a Checklist to a Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Step's name.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Required. Step's type. List of types can be found in the description of this entity.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Id of the Service Request to attach the step.</td>\n</tr>\n<tr>\n<td>Data</td>\n<td>string</td>\n<td>Optional. JSON object parsed to string including data regarding the step and its type.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description for the Step.</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>string</td>\n<td>Optional. Comments on the Step. These are visible from the Checklist view.</td>\n</tr>\n<tr>\n<td>ParentId</td>\n<td>int</td>\n<td>Optional. Id of a parent step (if applies).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"quick-choice-types-in-enter-value-steps\">Quick choice types in Enter Value Steps</h3>\n<p>Quick choice types can be created in enter value steps. Following format (escaped) is required in order to do so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"fields\":[{\n        \"isRequired\": true,\n        \"name\": \"First field\",\n        \"type\": \"choice\",\n        \"enumeration\": \"Opt 1;Opt 2;Opt 3\", // This sets the matching option's name.\n        \"errorlist\": \"true;false;true\"      // This sets wheter the matching option sets an error in the step.\n    }],\n    \"custom\": null\n}\n</code></pre>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"81dc468a-3cb8-4154-8f8a-6a559abd42ea","name":"Link a Checklist Step to a Service Request (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Step\",\n    \"Type\": \"Group\",\n    \"Description\": \"Test group step\",\n    \"ServiceRequestId\": \"9993846794\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Steps(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 10:48:41 GMT"},{"key":"Content-Length","value":"474"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Steps/@Element\",\n    \"Id\": \"9992897584\",\n    \"MobileId\": \"9992897584\",\n    \"Version\": 1,\n    \"Name\": \"New Step\",\n    \"IsDone\": false,\n    \"HasError\": false,\n    \"TrackingId\": null,\n    \"Type\": \"Group\",\n    \"SortOrder\": 0,\n    \"Data\": null,\n    \"DateModifiedOffline\": \"2019-09-10T10:48:41.8108198Z\",\n    \"ServiceRequestId\": \"9993846794\",\n    \"Description\": \"Test group step\",\n    \"Comment\": null,\n    \"InternalComment\": null,\n    \"ServiceObjectId\": \"0\",\n    \"StepListTemplateId\": \"0\",\n    \"ParentId\": \"0\"\n}"}],"_postman_id":"de14c98f-1ea9-421c-8d9b-0ccfe7c18465"},{"name":"Create a Step in a Service Request Checklist","id":"1bb31f6b-ea2e-4d20-ab1b-bd6e0054e9f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\n{\n    \"Name\": \"Werteingabeschritt\",\n    \"Type\": \"EnterValue\",\n    \"Description\": \"Test group step\",\n    \"ServiceRequestId\": \"983040\",\n    \"Data\": \"{\\r\\n    \\\"fields\\\": [{\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field with errorlist\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"enumeration\\\": \\\"Opt 1;Opt 2;Opt 3\\\",\\r\\n        \\\"errorlist\\\": \\\"true;false;true\\\"\\r\\n    }, {\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without errorlist\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"enumeration\\\": \\\"Opt 1;Opt 2;Opt 3\\\",\\r\\n    }, {\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without enumeration\\\",\\r\\n        \\\"type\\\": \\\"choice\\\",\\r\\n        \\\"errorlist\\\": \\\"true;false;true\\\"\\r\\n    },{\\r\\n        \\\"isRequired\\\": true,\\r\\n        \\\"name\\\": \\\"Test field without any\\\",\\r\\n        \\\"type\\\": \\\"choice\\\"\\r\\n    }],\\r\\n    \\\"custom\\\": null\\r\\n}\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps","description":"<p>Attach a Checklist to a Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Step's name.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Required. Step's type. List of types can be found in the description of this entity.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Id of the Service Request to attach the step.</td>\n</tr>\n<tr>\n<td>Data</td>\n<td>string</td>\n<td>Optional. JSON object parsed to string including data regarding the step and its type.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Description for the Step.</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>string</td>\n<td>Optional. Comments on the Step. These are visible from the Checklist view.</td>\n</tr>\n<tr>\n<td>ParentId</td>\n<td>int</td>\n<td>Optional. Id of a parent step (if applies).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"quick-choice-types-in-enter-value-steps\">Quick choice types in Enter Value Steps</h3>\n<p>Quick choice types can be created in enter value steps. Following format (escaped) is required in order to do so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"fields\":[{\n        \"isRequired\": true,\n        \"name\": \"First field\",\n        \"type\": \"choice\",\n        \"enumeration\": \"Opt 1;Opt 2;Opt 3\", // This sets the matching option's name.\n        \"errorlist\": \"true;false;true\"      // This sets wheter the matching option sets an error in the step.\n    }],\n    \"custom\": null\n}\n</code></pre>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"2ab6015f-e02c-4fc4-869a-2539a58ca669","name":"Link a Checklist Step to a Service Request (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Step\",\n    \"Type\": \"Group\",\n    \"Description\": \"Test group step\",\n    \"ServiceRequestId\": \"9993846794\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Steps(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 10:48:41 GMT"},{"key":"Content-Length","value":"474"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Steps/@Element\",\n    \"Id\": \"9992897584\",\n    \"MobileId\": \"9992897584\",\n    \"Version\": 1,\n    \"Name\": \"New Step\",\n    \"IsDone\": false,\n    \"HasError\": false,\n    \"TrackingId\": null,\n    \"Type\": \"Group\",\n    \"SortOrder\": 0,\n    \"Data\": null,\n    \"DateModifiedOffline\": \"2019-09-10T10:48:41.8108198Z\",\n    \"ServiceRequestId\": \"9993846794\",\n    \"Description\": \"Test group step\",\n    \"Comment\": null,\n    \"InternalComment\": null,\n    \"ServiceObjectId\": \"0\",\n    \"StepListTemplateId\": \"0\",\n    \"ParentId\": \"0\"\n}"}],"_postman_id":"1bb31f6b-ea2e-4d20-ab1b-bd6e0054e9f6"},{"name":"Create a Step within a group Step in a Service Request Checklist","id":"02792337-a403-4251-8d3c-6e5798c662f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Step\",\n    \"Type\": \"EnterValue\",\n    \"Description\": \"Test group step\",\n    \"Comment\": \"Comments in this step\",\n    \"ServiceRequestId\": \"9993846794\",\n    \"ParentId\": \"9992897584\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps","description":"<p>Attach a Checklist Step to a Service Request as a child of an existing <strong>group</strong> Step. </p>\n<p>Body parameters are the same as the previous request, as this only adds a <code>ParentId</code> value.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"6c9b234e-256d-49ae-8022-7494c941846d","name":"Link a Checklist Step to a Service Request within a Group Step (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Step\",\n    \"Type\": \"Material\",\n    \"Description\": \"Test group step\",\n    \"Comment\": \"Comments in this step\",\n    \"ServiceRequestId\": \"9993846794\",\n    \"ParentId\": \"9992897584\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/Steps(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 10:51:06 GMT"},{"key":"Content-Length","value":"507"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Steps/@Element\",\n    \"Id\": \"9994045418\",\n    \"MobileId\": \"9994045418\",\n    \"Version\": 1,\n    \"Name\": \"New Step\",\n    \"IsDone\": false,\n    \"HasError\": false,\n    \"TrackingId\": null,\n    \"Type\": \"EnterValue\",\n    \"SortOrder\": 0,\n    \"Data\": null,\n    \"DateModifiedOffline\": \"2019-09-10T10:51:06.8800106Z\",\n    \"ServiceRequestId\": \"9993846794\",\n    \"Description\": \"Test group step\",\n    \"Comment\": \"Comments in this step\",\n    \"InternalComment\": null,\n    \"ServiceObjectId\": \"0\",\n    \"StepListTemplateId\": \"0\",\n    \"ParentId\": \"9992897584\"\n}"}],"_postman_id":"02792337-a403-4251-8d3c-6e5798c662f3"},{"name":"Batch create steps","id":"602edd4a-c552-4daa-af80-a1e7774b1d92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/mixed; boundary=batch_2675C494-D326-42B2-B734-3D0877E630C8","type":"text"},{"key":"Accept","value":"multipart/mixed","type":"text"}],"body":{"mode":"raw","raw":"--batch_2675C494-D326-42B2-B734-3D0877E630C8\r\nContent-Type:multipart/mixed; boundary=changeset_2FA6C14A-E796-43D0-A2BE-07F9035C91BC\r\n\r\n--changeset_2FA6C14A-E796-43D0-A2BE-07F9035C91BC\r\nContent-Type: application/http\r\nContent-Transfer-Encoding:binary\r\nContent-ID: 1\r\n\r\nPOST https://portal.mobilefieldreport.com/odata/Steps HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\r\n  \"Type\": \"Group\",\r\n  \"Name\": \"Group 1\",\r\n  \"Description\": \"Gruppe 1\",\r\n  \"TrackingId\": \"1\",\r\n  \"ServiceRequestId\": \"983041\"\r\n\r\n}\r\n\r\n--changeset_2FA6C14A-E796-43D0-A2BE-07F9035C91BC\r\nContent-Type: application/http\r\nContent-Transfer-Encoding:binary\r\nContent-ID: 2\r\n\r\nPOST https://portal.mobilefieldreport.com/odata/Steps HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\r\n  \"Type\": \"Group\",\r\n  \"Name\": \"Group 2\",\r\n  \"TrackingId\": \"2\",\r\n  \"ServiceRequestId\": \"983041\",\r\n  \"Parent@odata.id\": \"$1\"\r\n}\r\n\r\n--changeset_2FA6C14A-E796-43D0-A2BE-07F9035C91BC--\r\n--batch_2675C494-D326-42B2-B734-3D0877E630C8--"},"url":"https://portal.mobilefieldreport.com/odata/$batch","description":"<p>An OData Batch Request is represented as a Multipart MIME v1.0 message [RFC2046], a standard format allowing the representation of multiple parts, each of which may have a different content type, within a single request.</p>\n<p>Batch requests allow grouping multiple operations, as described in [OData-Operations] (POST, PUT and DELETE) , into a single HTTP request payload.</p>\n<p>Batch Requests are submitted as a single HTTP POST request to the $batch endpoint of a service as described in [OData-URI]. The batch request must contain a Content-Type header specifying a content type of \"multipart/mixed\" and a boundary specification. The example below shows a GUID as a boundary and \"OData/OData.svc\" for the URI of the service.  is defined in the Batch Request Body section below.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["$batch"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"602edd4a-c552-4daa-af80-a1e7774b1d92"},{"name":"Update a Step in a Service Request","id":"9cc3c0f9-124a-4058-8e0c-777b28f2414e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Id\": \"10970304008\",\n    \"MobileId\": \"10970304008\",\n    \"Name\": \"Unterschrift des Kunden\",\n    \"IsDone\": true,\n    \"HasError\": false,\n    \"Type\": \"SignDocument\",\n    \"Data\": \"{\\\"isRequired\\\":1}\",\n    \"ServiceRequestId\": \"10978983957\",\n    \"Description\": \"<p>Ich habe alle Daten zu meinem Tagesbericht ausgefüllt und alle Mängel und besonderen Vorkommnisse eingetragen.</p>\",\n    \"Comment\": \"Tengo algunas modificaciones para ti\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Steps(10970304008L)","description":"<p>Updates a Step in a Service Request with the given information.</p>\n<h3 id=\"important\">IMPORTANT</h3>\n<p>Before adding the due date update, it is <strong>necessary</strong> to fetch first the Step (with all its expands) and copy the whole response as a part of the body of the request. If this is not done, the update may erase previous data.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps(10970304008L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cc3c0f9-124a-4058-8e0c-777b28f2414e"},{"name":"Delete a Step in a Service Request","id":"8ade22d3-a902-4a5d-8263-b50d9fe0180e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Steps(11164614657L)","description":"<p>Deletes a Step in a specific Service Request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id from the Step to be deleted.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Steps(11164614657L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"3401d66f-bec6-4a6a-adcf-70f59ce56dde","name":"Delete a Step in a Service Request (204 No Content)","originalRequest":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Steps(11164614657L)"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 07 Jan 2020 11:18:44 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8ade22d3-a902-4a5d-8263-b50d9fe0180e"}],"id":"a88e774c-538b-448b-861b-5254aaed4b77","description":"<p>Steps represent items of a Checklist. They can be defined within a Service Request Checklist, a Checklist Template or as a part of a Product Checklist.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Step's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Step's name.</td>\n</tr>\n<tr>\n<td>IsDone</td>\n<td>bool</td>\n<td>Wheter the step is checked.</td>\n</tr>\n<tr>\n<td>HasError</td>\n<td>bool</td>\n<td>Wheter the step is displaying an error.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Step's type. Described below.</td>\n</tr>\n<tr>\n<td>Data</td>\n<td>string</td>\n<td>Step's data. Is a JSON parsed string containing information regarding the step type.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Step's related Service Request id.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Description about the Step.</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>string</td>\n<td>Comments over the step. Visible in the checklist view.</td>\n</tr>\n<tr>\n<td>InternalComment</td>\n<td>string</td>\n<td>Internal comment over the Step.</td>\n</tr>\n<tr>\n<td>StepListTemplateId</td>\n<td>int</td>\n<td>Id of a Checklist template if the Step is part of one.</td>\n</tr>\n<tr>\n<td>ParentId</td>\n<td>int</td>\n<td>Id of the parent Step if it's under a group.</td>\n</tr>\n<tr>\n<td>ServiceRequest</td>\n<td>object</td>\n<td>Step's related Service Request.</td>\n</tr>\n<tr>\n<td>StepListTemplate</td>\n<td>object</td>\n<td>Step's related Checklist Template.</td>\n</tr>\n<tr>\n<td>Parent</td>\n<td>object</td>\n<td>Step's parent Step.</td>\n</tr>\n<tr>\n<td>Attachments</td>\n<td>array</td>\n<td>Step's attachments or images list.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Steps be defined in different types, which are described the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Step Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Choice</td>\n<td>Allows choosing between several options.</td>\n</tr>\n<tr>\n<td>Picture</td>\n<td>Allows adding pictures.</td>\n</tr>\n<tr>\n<td>EnterValue</td>\n<td>Allows entering values.</td>\n</tr>\n<tr>\n<td>SignDocument</td>\n<td>Allows signing documents.</td>\n</tr>\n<tr>\n<td>Material</td>\n<td>Includes a material.</td>\n</tr>\n<tr>\n<td>EnterText</td>\n<td>Allows the input of text.</td>\n</tr>\n<tr>\n<td>Group</td>\n<td>Allows to wrap Steps within it.</td>\n</tr>\n<tr>\n<td>CustomStep</td>\n<td>Is created by technicians on their side.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"d5dac8b3-e6c0-4be9-82fb-1028b1ef915c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"7bc8191c-0af5-420f-be44-4dfba3ed4f72"}}],"_postman_id":"a88e774c-538b-448b-861b-5254aaed4b77","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Item Type","item":[{"name":"Get Item Types","id":"4fa6e7ad-989f-42a3-baab-1ff67cab9490","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ItemTypes?$expand=Unit","description":"<p>Get all item types.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemTypes"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Unit"}],"variable":[]}},"response":[],"_postman_id":"4fa6e7ad-989f-42a3-baab-1ff67cab9490"},{"name":"Retrieve an Item Type","id":"a3e0690f-39cf-422c-b0bd-937f1dca8da0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ItemTypes(411074560L)?$expand=Unit","description":"<p>Get an Item Type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the item type.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemTypes(411074560L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Unit"}],"variable":[]}},"response":[],"_postman_id":"a3e0690f-39cf-422c-b0bd-937f1dca8da0"},{"name":"Create an Item Type","id":"135f9fac-1cd6-4e32-a5bb-f6816968b164","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"NameOrNumber\": \"Test Article\",\n    \"ExternalId\": \"IT-0001\",\n    \"Type\": \"Material\",\n    \"Costs\": \"3\",\n    \"Price\": \"5.99\",\n    \"UnitId\": \"0\",\n    \"Manufacture\": \"S-230\",\n    \"VAT\": \"19\",\n    \"Description\": \"Item type created by API test.\",\n    \"GlobalTradeItemNr\": \"GT-0001\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ItemTypes","description":"<p>Create an Item Type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NameOrNumber</td>\n<td>string</td>\n<td>Required. Name or serie number for the item.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External id for the item. Can be used for searching or adding items to a Service Request.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Optional. Type of the item. Must be an existing type.</td>\n</tr>\n<tr>\n<td>Costs</td>\n<td>float</td>\n<td>Optional. Purchase cost of the item. Default is 0.0.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>float</td>\n<td>Optional. Selling price of the item. Default is 0.0.</td>\n</tr>\n<tr>\n<td>UnitId</td>\n<td>int</td>\n<td>Optional. Id of the unit of the item. Must be an existing unit.</td>\n</tr>\n<tr>\n<td>Manufacture</td>\n<td>string</td>\n<td>Optional. Id or number of the Manufacturer.</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>float</td>\n<td>Optional. Tax value for the item. Default is 0.0.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Item or service description.</td>\n</tr>\n<tr>\n<td>GlobalTradeItemNr</td>\n<td>string</td>\n<td>Optional. EAN number.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ItemTypes"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"135f9fac-1cd6-4e32-a5bb-f6816968b164"},{"name":"Update an Item Type","id":"87152a44-68b0-42ec-a0b2-442db4ed6292","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Id\": \"11367743488\",\r\n  \"Description\": \"Description has been modified!\",\r\n  \"Manufacture\": \"S-230-U\",\r\n  \"ExternalId\": \"IT-U-0002\",\r\n  \"NameOrNumber\": \"Updated Test Article!\",\r\n  \"GlobalTradeItemNr\": \"GT-0001\",\r\n  \"Type\": \"Material\",\r\n  \"Price\": \"7.99\",\r\n  \"VAT\": \"19\",\r\n  \"UnitId\": \"1666351106\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ItemTypes(11367743488L)","description":"<p>Update a particular Item Type. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Required. Id of the item type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"important\">Important</h3>\n<p>By <strong>making a PUT request with this parameters <em>will erase all other properties values</em> that are not included in this request's body</strong>. In order to keep all information it is strongly recommended to make a GET request over the Item to update, and copy the whole response in the body of this request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the item type.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Optional. External id for the item. Can be used for searching or adding items to a Service Request.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Optional. Type of the item. Must be an existing type.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>float</td>\n<td>Optional. Selling price of the item. Default is 0.0.</td>\n</tr>\n<tr>\n<td>UnitId</td>\n<td>int</td>\n<td>Optional. Id of the unit of the item. Must be an existing unit.</td>\n</tr>\n<tr>\n<td>Manufacture</td>\n<td>string</td>\n<td>Optional. Id or number of the Manufacturer.</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>float</td>\n<td>Optional. Tax value for the item. Default is 0.0.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Optional. Item or service description.</td>\n</tr>\n<tr>\n<td>GlobalTradeItemNr</td>\n<td>string</td>\n<td>Optional. EAN number.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemTypes(11367743488L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"f641eadf-4163-427c-93ce-c585b62139cf","name":"Update an Item Type 204","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Id\": \"11367743488\",\r\n  \"Description\": \"Description has been modified!\",\r\n  \"Manufacture\": \"S-230-U\",\r\n  \"ExternalId\": \"IT-U-0002\",\r\n  \"NameOrNumber\": \"Updated Test Article!\",\r\n  \"GlobalTradeItemNr\": \"GT-0001\",\r\n  \"Type\": \"Material\",\r\n  \"Price\": \"7.99\",\r\n  \"VAT\": \"19\",\r\n  \"UnitId\": \"1666351106\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ItemTypes(11367743488L)"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 20 Jan 2020 15:30:35 GMT"}],"cookie":[],"responseTime":null,"body":""},{"id":"a17c02c7-e6c7-422a-a104-ebe058524ce0","name":"Update an Item Type","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Id\": \"11367743488\",\r\n  \"Description\": \"Description has been modified!\",\r\n  \"Manufacture\": \"S-230-U\",\r\n  \"ExternalId\": \"IT-U-0002\",\r\n  \"NameOrNumber\": \"Updated Test Article!\",\r\n  \"GlobalTradeItemNr\": \"GT-0001\",\r\n  \"Type\": \"Material\",\r\n  \"Price\": \"7.99\",\r\n  \"VAT\": \"19\",\r\n  \"UnitId\": \"1666351106\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/ItemTypes(11367743488L)"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 20 Jan 2020 15:30:35 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"87152a44-68b0-42ec-a0b2-442db4ed6292"},{"name":"Delete Item Type","id":"bce89889-f889-4426-96ae-df5513a5d437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/ItemTypes/(23423423L)","description":"<p>Delete an item type</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemTypes","(23423423L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"bce89889-f889-4426-96ae-df5513a5d437"}],"id":"3b9c7da1-efdb-45dd-9ca3-6208ba6a6542","description":"<p>The Item Types are all items in <strong>MFR</strong> that are added under the Items view. These are available for including with Service Requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Item's Id.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>List of custom values for the item.</td>\n</tr>\n<tr>\n<td>Costs</td>\n<td>double</td>\n<td>Item's purchase price.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Description or note for the item.</td>\n</tr>\n<tr>\n<td>Manufacture</td>\n<td>string</td>\n<td>Identifier for the item's manufacturer.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Item's external or ERP id.</td>\n</tr>\n<tr>\n<td>ItemNumber</td>\n<td>string</td>\n<td>Same as external id.</td>\n</tr>\n<tr>\n<td>NameOrNumber</td>\n<td>string</td>\n<td>Item's name or serial number.</td>\n</tr>\n<tr>\n<td>GlobalTradeItemNr</td>\n<td>string</td>\n<td>EAN number.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Item's type.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>float</td>\n<td>Item's unit price without taxes.</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>float</td>\n<td>Taxes price for the item.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>float</td>\n<td>Amount of discount for this item.</td>\n</tr>\n<tr>\n<td>DateModified</td>\n<td>datetime</td>\n<td>Last date of modification.</td>\n</tr>\n<tr>\n<td>IsDiscontinued</td>\n<td>bool</td>\n<td>Wheter the item is discontinued (to be shown).</td>\n</tr>\n<tr>\n<td>UnitId</td>\n<td>int</td>\n<td>Id of the selected unit for the item.</td>\n</tr>\n<tr>\n<td>UnitString</td>\n<td>string</td>\n<td>String representation for the item's unit.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"58ae27ac-c5fd-4ae0-b9a0-e60849e9f36b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"75296c42-b058-445a-b052-89be40550f87"}}],"_postman_id":"3b9c7da1-efdb-45dd-9ca3-6208ba6a6542","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Item","item":[{"name":"Get items","id":"5b87c790-bbfd-4985-8065-c7ab8623df9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests?$expand=Items&$select=Items","description":"<p>Get all the items in all service requests.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Items"},{"key":"$select","value":"Items"}],"variable":[]}},"response":[],"_postman_id":"5b87c790-bbfd-4985-8065-c7ab8623df9d"},{"name":"Get items in a Service Request","id":"d9fb33c4-619d-4ec1-931a-3a612a971aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(1212416L)?$expand=Items&$select=Items","description":"<p>Get all items in a particular service request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Id of the service request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(1212416L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Items"},{"key":"$select","value":"Items"}],"variable":[]}},"response":[],"_postman_id":"d9fb33c4-619d-4ec1-931a-3a612a971aec"},{"name":"Get item","id":"254dc924-6447-4c5f-a4f3-11866654e414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Items(1277952L)","description":"<p>Retrieve an item by id, without using the Service Request URL.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Id of the item.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Items(1277952L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"254dc924-6447-4c5f-a4f3-11866654e414"},{"name":"Create an Item in a Service Request","id":"550e1f2b-7c49-4499-acf0-13401e522635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"QuantityHours\": \"1.00\",\n    \"PlannedQuantityHours\": \"0.00\",\n    \"ItemTypeId\": \"1179648\",\n    \"Manufacture\": \"V123456\",\n    \"Price\": \"12.23\",\n    \"Costs\": \"10.09\",\n    \"NameOrNumber\": \"Bohrmaschine\",\n    \"Note\": \"asdasd\",\n    \"ExternalId\": \"123456\",\n    \"Discount\": \"0.00\",\n    \"VAT\": \"0.00\",\n    \"Type\": \"Equipment\",\n    \"ServiceRequestId\": \"1212416\",\n    \"ServiceObjectId\": \"0\",\n    \"CreatorId\": \"393218\",\n    \"UnitId\": \"622600\",\n    \"UnitString\": \"m\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Items","description":"<p>Retrieve an item by id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Id of the service request to which the item is linked.</td>\n</tr>\n<tr>\n<td>QuantityHours</td>\n<td>float</td>\n<td>Optional. Consumed amount of the item. Default is zero.</td>\n</tr>\n<tr>\n<td>UnitId</td>\n<td>int</td>\n<td>Optional. Id of the Item Unit type which is used by the item.</td>\n</tr>\n<tr>\n<td>ItemTypeId</td>\n<td>int</td>\n<td>Optional. Id of the item type to which the item is related.</td>\n</tr>\n<tr>\n<td>PlannedQuantityHours</td>\n<td>float</td>\n<td>Optional. Planned amount of the item to be consumed. Default is zero.</td>\n</tr>\n<tr>\n<td>ItemNumber</td>\n<td>stirng</td>\n<td>Optional. Similar to External Id.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>float</td>\n<td>Selling price of the item. Default is zero.</td>\n</tr>\n<tr>\n<td>Costs</td>\n<td>float</td>\n<td>Cost price of the item. Default is zero.</td>\n</tr>\n<tr>\n<td>NameOrNumber</td>\n<td>string</td>\n<td>Name of the item.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>External Id for the item.</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>float</td>\n<td>Tax percentage.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>float</td>\n<td>Optional. Discount percentage to the price.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of the item.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Items"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"550e1f2b-7c49-4499-acf0-13401e522635"},{"name":"Update an Item in a Service Request","id":"b87a04a3-f720-45d6-ae38-c6add4cf408f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"Id\": \"1277954\",\n    \"QuantityHours\": \"5.00\",\n    \"PlannedQuantityHours\": \"3.00\",\n    \"ItemTypeId\": \"1179648\",\n    \"Manufacture\": \"V123456\",\n    \"Price\": \"16.23\",\n    \"Costs\": \"10.09\",\n    \"NameOrNumber\": \"Bohrmaschine 3\",\n    \"Note\": \"asdasd\",\n    \"ExternalId\": \"1234563\",\n    \"Discount\": \"1.00\",\n    \"VAT\": \"0.19\",\n    \"Type\": \"Equipment\",\n    \"ServiceRequestId\": \"1212416\",\n    \"ServiceObjectId\": \"0\",\n    \"CreatorId\": \"393218\",\n    \"UnitId\": \"622600\",\n    \"UnitString\": \"m\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Items(1277954L)","description":"<p>Update an item in a service request. The parameters for the update can be the same for the creation of the item, however, the item id and the service request id must be present in the body of the request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the item.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Required. Id of the service request to which the item is linked.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Items(1277954L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"b87a04a3-f720-45d6-ae38-c6add4cf408f"},{"name":"Delete Item","id":"c030bb3f-f1b1-475f-aee6-3c12dde32517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Items(1277954L)","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Id of the item.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Items(1277954L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"c030bb3f-f1b1-475f-aee6-3c12dde32517"}],"id":"fcfdba0a-e216-4c64-a9e8-2f87c2bb345d","description":"<p>The <strong>Item</strong> entity represents the Item Type instances within a Service Request. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Item's Id.</td>\n</tr>\n<tr>\n<td>QuantityHours</td>\n<td>float</td>\n<td>The amount of item consumed.</td>\n</tr>\n<tr>\n<td>PlannedQuantityHours</td>\n<td>float</td>\n<td>The plannified amount of item to consume.</td>\n</tr>\n<tr>\n<td>ItemTypeId</td>\n<td>int</td>\n<td>The id of the item type to which the item refers.</td>\n</tr>\n<tr>\n<td>ItemNumber</td>\n<td>string</td>\n<td>Same as external id.</td>\n</tr>\n<tr>\n<td>TrackingId</td>\n<td>int</td>\n<td>Tracking number.</td>\n</tr>\n<tr>\n<td>Manufacture</td>\n<td>string</td>\n<td>Identifier for the item's manufacturer.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>float</td>\n<td>Item's unit price without taxes.</td>\n</tr>\n<tr>\n<td>Costs</td>\n<td>double</td>\n<td>Item's purchase price.</td>\n</tr>\n<tr>\n<td>NameOrNumber</td>\n<td>string</td>\n<td>Item's name or serial number.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>List of custom values for the item.</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>string</td>\n<td>Description or note for the item.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>Item's external or ERP id.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>float</td>\n<td>Amount of discount for this item.</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>float</td>\n<td>Taxes price for the item.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Item's type.</td>\n</tr>\n<tr>\n<td>ServiceRequestId</td>\n<td>int</td>\n<td>Id of the service request in which the item is.</td>\n</tr>\n<tr>\n<td>ServiceObjectId</td>\n<td>int</td>\n<td>Id of the service object in which the service request exists. Should be set automatically.</td>\n</tr>\n<tr>\n<td>CreatorId</td>\n<td>int</td>\n<td>Id of the creator user.</td>\n</tr>\n<tr>\n<td>UnitId</td>\n<td>int</td>\n<td>Id of the selected unit for the item.</td>\n</tr>\n<tr>\n<td>UnitString</td>\n<td>string</td>\n<td>String representation for the item's unit.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Expandable entities:</p>\n<ul>\n<li>ItemType</li>\n<li>ServiceRequest</li>\n<li>ServiceObject</li>\n<li>Creator</li>\n<li>Unit</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a1447a48-7924-40a6-9dfd-01ec193721ca"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"32cf2426-0a90-470a-9aec-6bb6ed8a4c65"}}],"_postman_id":"fcfdba0a-e216-4c64-a9e8-2f87c2bb345d","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Item Unit","item":[{"name":"Get item units","id":"236828d3-7837-4969-81df-94b871a8f841","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ItemUnits","description":"<p>Get all Item Units.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemUnits"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"160d2dbb-0a6c-4b70-af17-2be6e64b42ed","name":"Get item units","originalRequest":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ItemUnits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 09 Sep 2019 07:16:51 GMT"},{"key":"Content-Length","value":"947"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ItemUnits\",\n    \"value\": [\n        {\n            \"Id\": \"499551999\",\n            \"Version\": 1,\n            \"Name\": \"Stunde\"\n        },\n        {\n            \"Id\": \"499552000\",\n            \"Version\": 2,\n            \"Name\": \"Stück\"\n        },\n        {\n            \"Id\": \"499552001\",\n            \"Version\": 2,\n            \"Name\": \"m\"\n        },\n        {\n            \"Id\": \"499552002\",\n            \"Version\": 2,\n            \"Name\": \"km\"\n        },\n        {\n            \"Id\": \"499552003\",\n            \"Version\": 2,\n            \"Name\": \"mm\"\n        },\n        {\n            \"Id\": \"499552004\",\n            \"Version\": 2,\n            \"Name\": \"cm\"\n        },\n        {\n            \"Id\": \"499552005\",\n            \"Version\": 2,\n            \"Name\": \"m^2\"\n        },\n        {\n            \"Id\": \"499552006\",\n            \"Version\": 2,\n            \"Name\": \"km^2\"\n        },\n        {\n            \"Id\": \"499552007\",\n            \"Version\": 2,\n            \"Name\": \"m^3\"\n        },\n        {\n            \"Id\": \"499552008\",\n            \"Version\": 2,\n            \"Name\": \"kg\"\n        },\n        {\n            \"Id\": \"499552009\",\n            \"Version\": 2,\n            \"Name\": \"l\"\n        },\n        {\n            \"Id\": \"507871232\",\n            \"Version\": 1,\n            \"Name\": \"pauschal\"\n        },\n        {\n            \"Id\": \"6000082944\",\n            \"Version\": 1,\n            \"Name\": \"jährlich\"\n        },\n        {\n            \"Id\": \"6000082945\",\n            \"Version\": 1,\n            \"Name\": \"monatlich\"\n        }\n    ]\n}"}],"_postman_id":"236828d3-7837-4969-81df-94b871a8f841"},{"name":"Create an item Unit","id":"ef480943-322b-439a-b011-54f08655fc72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"täglich\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ItemUnits","description":"<p>Create a new item Unit.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Request</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the Unit.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ItemUnits"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"5157800e-df84-4fba-a18f-c0f061ce7f55","name":"Create an item Unit (201 Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"täglich\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ItemUnits"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Location","value":"https://portal.mobilefieldreport.com/odata/ItemUnits(null)"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 12:23:30 GMT"},{"key":"Content-Length","value":"151"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#ItemUnits/@Element\",\n    \"Id\": \"10004430848\",\n    \"Version\": 1,\n    \"Name\": \"täglich\"\n}"}],"_postman_id":"ef480943-322b-439a-b011-54f08655fc72"}],"id":"c41d68c7-2b57-4ac8-82a3-653e6816f1b6","description":"<p>Units define how to measure <strong>Items</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Item Unit's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Item Unit's name.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"3c6c0e3e-a782-491b-b05a-4147290bfb6a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"84601140-f521-4380-9506-d920f17b38e9"}}],"_postman_id":"c41d68c7-2b57-4ac8-82a3-653e6816f1b6","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"User","item":[{"name":"Get Users","id":"7b209210-6682-4e66-ac2a-32cef9120ae9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Users?$expand=Contact","description":"<p>Get all Users.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Users"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Contact"}],"variable":[]}},"response":[{"id":"29b1133b-1a7f-4fba-a773-dbf72936a494","name":"Get Users (200 OK)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.mobilefieldreport.com/odata/Users?$expand=Contact","protocol":"https","host":["portal","mobilefieldreport","com"],"path":["odata","Users"],"query":[{"key":"$expand","value":"Contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 07:18:37 GMT"},{"key":"Content-Length","value":"12753"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Users\",\n    \"value\": [\n        {\n            \"Contact\": {\n                \"Id\": \"410583043\",\n                \"CustomValues\": [],\n                \"FirstName\": \"Frank2\",\n                \"LastName\": \"Graf2\",\n                \"Email\": \"info@simplias.com\",\n                \"JobTitle\": \"Geschäftsführer\",\n                \"MobilePhone\": \"03823123422\",\n                \"Telephone\": \"0176873234234\",\n                \"Fax\": \"2432341234\",\n                \"Note\": \"<p>DAS IST EINE BEMERKUNGasdf asdfasd</p><p>f</p><p>asdf</p><p>&nbsp;asd</p><p>fas&nbsp;</p><p>df</p><p>sadf</p><p>asdf</p><p>asdfasdfasdfsdfasdf</p>\",\n                \"DateModified\": \"2019-09-09T13:43:32\",\n                \"Version\": 1252,\n                \"CompanyId\": \"8017281039\",\n                \"IsUser\": true,\n                \"ExternalId\": \"frank2graf2ext\",\n                \"Gender\": \"Male\",\n                \"UserId\": \"0\"\n            },\n            \"Id\": \"410943488\",\n            \"Version\": 0,\n            \"UserName\": \"info@simplias.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2013-10-07T10:11:01\",\n            \"IsApproved\": true,\n            \"ContactId\": \"410583043\",\n            \"PreferedLanguage\": \"en-US\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": true,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-09-10T07:08:58\",\n            \"UserGuideProgress\": \"[\\\"serviceRequest-wizard-created\\\",\\\"serviceRequest-wizard-scheduling\\\",\\\"planning\\\",\\\"serviceRequest-wizard-released\\\",\\\"serviceRequest-wizard-closed\\\",\\\"serviceRequest-wizard-createdAdditional\\\",\\\"serviceRequest-items\\\",\\\"serviceRequest-reports\\\",\\\"Collaboration\\\"]\",\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"dashboard-fixedJobCounter-window\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":2,\\\"height\\\":3},{\\\"id\\\":\\\"dashboard-fixedCustomerCounter-window\\\",\\\"x\\\":2,\\\"y\\\":0,\\\"width\\\":2,\\\"height\\\":3},{\\\"id\\\":\\\"dashboard-jobStats-window\\\",\\\"x\\\":0,\\\"y\\\":8,\\\"width\\\":4,\\\"height\\\":6},{\\\"id\\\":\\\"dashboard-projectStats-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":4},{\\\"id\\\":\\\"dashboard-topItems-window\\\",\\\"x\\\":4,\\\"y\\\":4,\\\"width\\\":4,\\\"height\\\":9},{\\\"id\\\":\\\"dashboard-technicianWorkingStats-window\\\",\\\"x\\\":0,\\\"y\\\":3,\\\"width\\\":4,\\\"height\\\":5},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":4},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":4,\\\"width\\\":4,\\\"height\\\":6}]\"\n        },\n        {\n            \"Id\": \"443023360\",\n            \"Version\": 0,\n            \"UserName\": \"frank.steiner@testering.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2013-11-04T11:46:26\",\n            \"IsApproved\": true,\n            \"ContactId\": \"442728449\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-03-21T08:09:17\",\n            \"UserGuideProgress\": \"[\\\"serviceRequest-wizard-created\\\",\\\"serviceRequest-wizard-scheduling\\\",\\\"planning\\\",\\\"serviceRequest-wizard-released\\\",\\\"serviceRequest-wizard-closed\\\",\\\"serviceRequest-wizard-createdAdditional\\\",\\\"serviceRequest-items\\\",\\\"serviceRequest-reports\\\"]\",\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"443023361\",\n            \"Version\": 0,\n            \"UserName\": \"pascal.friedrich@tester.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2013-11-04T12:03:41\",\n            \"IsApproved\": true,\n            \"ContactId\": \"442728450\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2018-08-10T13:16:05\",\n            \"UserGuideProgress\": \"[\\\"serviceRequest-wizard-created\\\",\\\"serviceRequest-wizard-scheduling\\\",\\\"planning\\\",\\\"serviceRequest-wizard-released\\\",\\\"serviceRequest-wizard-closed\\\",\\\"serviceRequest-wizard-createdAdditional\\\",\\\"serviceRequest-items\\\",\\\"serviceRequest-reports\\\"]\",\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"443023362\",\n            \"Version\": 0,\n            \"UserName\": \"stefan.markwart@tester.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2013-11-04T12:04:42\",\n            \"IsApproved\": true,\n            \"ContactId\": \"442728451\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2016-07-22T13:59:37\",\n            \"UserGuideProgress\": \"[\\\"serviceRequest-wizard-created\\\",\\\"serviceRequest-wizard-scheduling\\\",\\\"planning\\\",\\\"serviceRequest-wizard-released\\\",\\\"serviceRequest-wizard-closed\\\",\\\"serviceRequest-wizard-createdAdditional\\\",\\\"serviceRequest-items\\\",\\\"serviceRequest-reports\\\"]\",\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"443023363\",\n            \"Version\": 0,\n            \"UserName\": \"frank.steuer@test.derr\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2013-11-04T12:05:22\",\n            \"IsApproved\": true,\n            \"ContactId\": \"442728452\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-01-31T13:05:11\",\n            \"UserGuideProgress\": \"[\\\"serviceRequest-wizard-created\\\",\\\"serviceRequest-wizard-scheduling\\\",\\\"planning\\\",\\\"serviceRequest-wizard-released\\\",\\\"serviceRequest-wizard-closed\\\",\\\"serviceRequest-wizard-createdAdditional\\\",\\\"serviceRequest-items\\\",\\\"serviceRequest-reports\\\"]\",\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"645758980\",\n            \"Version\": 0,\n            \"UserName\": \"system@simplias-info.com\",\n            \"IsSystem\": true,\n            \"CreationDate\": \"2014-04-09T17:20:44\",\n            \"IsApproved\": true,\n            \"ContactId\": \"645791748\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": false,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-09-04T13:33:27\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"1049788418\",\n            \"Version\": 0,\n            \"UserName\": \"planninghelper_0@simplias-info.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2014-12-04T08:48:16\",\n            \"IsApproved\": false,\n            \"ContactId\": \"1049624579\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": false,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2018-05-14T06:53:08\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"1275953152\",\n            \"Version\": 0,\n            \"UserName\": \"werk@simplias.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2015-04-15T08:25:44\",\n            \"IsApproved\": true,\n            \"ContactId\": \"1275691013\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2018-07-04T13:42:19\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"1275985920\",\n            \"Version\": 0,\n            \"UserName\": \"schnell@simplias.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2015-04-15T08:33:55\",\n            \"IsApproved\": true,\n            \"ContactId\": \"1275789316\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2015-04-15T11:25:31\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": \"[{\\\"id\\\":\\\"open-jobs\\\",\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-timeRecording-window\\\",\\\"x\\\":0,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"video-tutorial\\\",\\\"x\\\":8,\\\"y\\\":7,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-todoList-window\\\",\\\"x\\\":8,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7},{\\\"id\\\":\\\"dashboard-overview-window\\\",\\\"x\\\":4,\\\"y\\\":0,\\\"width\\\":4,\\\"height\\\":7}]\"\n        },\n        {\n            \"Id\": \"1275985921\",\n            \"Version\": 0,\n            \"UserName\": \"meister@simplias.com\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2015-04-15T08:35:19\",\n            \"IsApproved\": false,\n            \"ContactId\": \"1275789317\",\n            \"PreferedLanguage\": null,\n            \"EmailChannelEnabled\": false,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 0,\n            \"PreferedCulture\": null,\n            \"IsActive\": false,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2018-06-22T11:25:33\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"3693576192\",\n            \"Version\": 0,\n            \"UserName\": \"makita@ma.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2017-04-07T09:56:45\",\n            \"IsApproved\": false,\n            \"ContactId\": \"3688923159\",\n            \"PreferedLanguage\": \"en-US\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-04-09T11:15:23\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"6426165248\",\n            \"Version\": 0,\n            \"UserName\": \"f.mueller@mdt.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2018-08-16T06:05:10\",\n            \"IsApproved\": false,\n            \"ContactId\": \"6421905415\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": null,\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"7327219712\",\n            \"Version\": 0,\n            \"UserName\": \"test@tester.32.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2018-12-13T20:21:56\",\n            \"IsApproved\": false,\n            \"ContactId\": \"7327055872\",\n            \"PreferedLanguage\": \"en-US\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": \"2019-07-23T07:09:02\",\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"9458089984\",\n            \"Version\": 0,\n            \"UserName\": \"simplias1user@simplias.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2019-07-13T09:22:59\",\n            \"IsApproved\": false,\n            \"ContactId\": \"9457369089\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": null,\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"9458286592\",\n            \"Version\": 0,\n            \"UserName\": \"simplias1@test.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2019-07-13T09:40:15\",\n            \"IsApproved\": false,\n            \"ContactId\": \"9458155520\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": null,\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"9458286593\",\n            \"Version\": 0,\n            \"UserName\": \"user2simplias@teat.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2019-07-13T09:43:03\",\n            \"IsApproved\": false,\n            \"ContactId\": \"9458155521\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": null,\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        },\n        {\n            \"Id\": \"9458286594\",\n            \"Version\": 0,\n            \"UserName\": \"user3simplias@test.de\",\n            \"IsSystem\": false,\n            \"CreationDate\": \"2019-07-13T09:45:11\",\n            \"IsApproved\": false,\n            \"ContactId\": \"9458155522\",\n            \"PreferedLanguage\": \"de-DE\",\n            \"EmailChannelEnabled\": true,\n            \"HasFullScreenPreference\": false,\n            \"TimeZone\": 38,\n            \"PreferedCulture\": \"de-DE\",\n            \"IsActive\": true,\n            \"IsMobile\": false,\n            \"LastLoginDate\": null,\n            \"UserGuideProgress\": null,\n            \"DashboardSettings\": null\n        }\n    ]\n}"}],"_postman_id":"7b209210-6682-4e66-ac2a-32cef9120ae9"},{"name":"Activate/Deactivate an User","id":"b75a0722-8338-44f3-ac2a-d82960bcaa4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Id\": \"1275985921\",\n    \"ContactId\": \"1275789317\",\n    \"IsActive\": true\n}"},"url":"https://portal.mobilefieldreport.com/odata/Users(1275985921L)","description":"<p>Toggle activation of an User.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Product's Id.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>int</td>\n<td>Required. Linked contact's Id.</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>bool</td>\n<td>Required. Property to toggle. If true, user is activated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["Users(1275985921L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"b75a0722-8338-44f3-ac2a-d82960bcaa4b"}],"id":"ca344daa-2e8c-40b4-b828-6e7f5b8769bc","description":"<p>Users represents the technicians and system administrators. They can be assigned for <strong>Appointments</strong> in Service Requests, system users can own jobs and they can also be contacts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attributes</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>User's id.</td>\n</tr>\n<tr>\n<td>UserName</td>\n<td>string</td>\n<td>User's username.</td>\n</tr>\n<tr>\n<td>CreationDate</td>\n<td>datetime</td>\n<td>Date of the creation of the user.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>int</td>\n<td>Id of the related contact.</td>\n</tr>\n<tr>\n<td>PreferedLanguage</td>\n<td>string</td>\n<td>Prefered language of the user. Given in locale string.</td>\n</tr>\n<tr>\n<td>EmailChannelEnabled</td>\n<td>bool</td>\n<td>Email notifications enabled.</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>bool</td>\n<td>Wheter the user is active in the system.</td>\n</tr>\n<tr>\n<td>IsMobile</td>\n<td>bool</td>\n<td>Wheter the user is active on mobile devices.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"eec6c096-4cb1-4b73-811f-4cc098c34b10"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"60f0aaca-8451-4345-8ee4-85cae2b996da"}}],"_postman_id":"ca344daa-2e8c-40b4-b828-6e7f5b8769bc","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Report","item":[{"name":"Generate Report from Report Definition","id":"efc348ac-6db3-487f-af98-565780a27fd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reportDefinitionId\": \"4491804672\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)/GenerateReportHash","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(9993846794L)","GenerateReportHash"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"996ee5d5-04ee-4393-afc4-9e7dab9c7b37","name":"Generate Report from Report Definition (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reportDefinitionId\": \"4491804672\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(9993846794L)/GenerateReportHash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 10 Sep 2019 14:58:20 GMT"},{"key":"Content-Length","value":"156"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Edm.String\",\n    \"value\": \"MTYxNjQxNzkxNDg4XzM5MzI1Nzg3MTM0MzlfMTc2NzUyNTEzODQzMg2\"\n}"}],"_postman_id":"efc348ac-6db3-487f-af98-565780a27fd9"},{"name":"Download generated Report","id":"e252b824-6b06-4065-9737-34ca491a8c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/System/CustomerReport/MTYxNjQxNzkxNDg4XzM5MzI1Nzg3MTM0MzlfMTc2NzUyNTEzODQzMg2","description":"<p>Given the hash returned by the <code>value</code> field in the response from the <em>Generate Report from Report Definition</em> request described above, it must be appended at the end of the URL to download the file.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reportHash</td>\n<td>string</td>\n<td>Required. Hash generated to download the report.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"protocol":"https","path":["System","CustomerReport","MTYxNjQxNzkxNDg4XzM5MzI1Nzg3MTM0MzlfMTc2NzUyNTEzODQzMg2"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[{"id":"27200853-91e0-4e61-9803-ef5a08da5bb1","name":"Download generated Report (with code from the previous request)","originalRequest":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/System/CustomerReport/MTYxNjQxNzkxNDg4XzM5MzI1Nzg3MTM0MzlfMTc2NzUyNTEzODQzMg2"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e252b824-6b06-4065-9737-34ca491a8c67"}],"id":"7af4b14d-f807-4ee0-8682-f5ea5593b0da","description":"<p>Reports are generated from within the Service Requests and with them is possible to summarize actions done in a job as well as show invoices for all items and services included on it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Report's id.</td>\n</tr>\n<tr>\n<td>DateOfCreation</td>\n<td>datetime</td>\n<td>Report's date of creation.</td>\n</tr>\n<tr>\n<td>URI</td>\n<td>string</td>\n<td>URI for downloading the Report.</td>\n</tr>\n<tr>\n<td>DocumentName</td>\n<td>string</td>\n<td>Report's file name.</td>\n</tr>\n<tr>\n<td>FileTypeString</td>\n<td>string</td>\n<td>Report's file type name.</td>\n</tr>\n<tr>\n<td>ReportDefinitionCode</td>\n<td>string</td>\n<td>Report Definition's id if the Report is based in one.</td>\n</tr>\n<tr>\n<td>ServiceObjectId</td>\n<td>int</td>\n<td>Report's related Service Object.</td>\n</tr>\n<tr>\n<td>CanBeDeleted</td>\n<td>bool</td>\n<td>Wheter the Report can be deleted.</td>\n</tr>\n<tr>\n<td>InvoiceBalance</td>\n<td>float</td>\n<td>Total price to pay displayed in the Report.</td>\n</tr>\n<tr>\n<td>InvoiceId</td>\n<td>int</td>\n<td>Invoice's id if the Report is an invoice.</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>datetime</td>\n<td>Latest date for paying the invoice.</td>\n</tr>\n<tr>\n<td>IsPayed</td>\n<td>bool</td>\n<td>Wheter the invoice is payed.</td>\n</tr>\n<tr>\n<td>IsInvoice</td>\n<td>bool</td>\n<td>Wheter the Report is an invoice.</td>\n</tr>\n<tr>\n<td>IsCanceled</td>\n<td>bool</td>\n<td>Wheter the Report has been canceled.</td>\n</tr>\n<tr>\n<td>CustomValues</td>\n<td>array</td>\n<td>Report's custom values list.</td>\n</tr>\n<tr>\n<td>ServiceRequest</td>\n<td>object</td>\n<td>Report's related Service Request.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"3558272e-90fd-4d5e-8af1-baa56ffd1ce2"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"1ab6af77-cc4f-46a8-8180-e45864671ff5"}}],"_postman_id":"7af4b14d-f807-4ee0-8682-f5ea5593b0da","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Invoice","item":[{"name":"Get Invoices","id":"f824a617-20e7-4f43-a570-8d36523ba9f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Invoices","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Invoices"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[{"id":"f9345d83-ddea-441a-9c89-f85555d6111a","name":"Get Invoices","originalRequest":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"DataServiceVersion","value":"3.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Request-Context","value":"appId=cid-v1:78a64ede-c3d5-44b6-82b2-7aaa588c11f1"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 28 Jun 2021 09:50:19 GMT"},{"key":"Content-Length","value":"17197"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://portal.mobilefieldreport.com/odata/$metadata#Invoices\",\n    \"value\": [\n        {\n            \"Id\": \"19807371264\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-03-09T17:36:42\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371264/Content/\",\n            \"DocumentName\": \"Rechnung 0151.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"100.00000\",\n            \"InvoiceBalanceNetto\": \"100.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0151\",\n            \"DueDate\": \"2020-03-23T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371265\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-03-18T19:04:35\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371265/Content/\",\n            \"DocumentName\": \"Rechnung 0152.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"29.11000\",\n            \"InvoiceBalanceNetto\": \"24.46000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0152\",\n            \"DueDate\": \"2020-04-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371266\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-03-18T19:05:43\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371266/Content/\",\n            \"DocumentName\": \"Stornorechnung 0153 => 0152.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfCancelInvoice\",\n            \"InvoiceBalance\": \"-29.11000\",\n            \"InvoiceBalanceNetto\": \"-24.46000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0153 => 0152\",\n            \"DueDate\": \"2012-01-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371267\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-03-18T19:07:21\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371267/Content/\",\n            \"DocumentName\": \"Stornorechnung 0154 => 0150.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfCancelInvoice\",\n            \"InvoiceBalance\": \"-24924.55000\",\n            \"InvoiceBalanceNetto\": \"-20945.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0154 => 0150\",\n            \"DueDate\": \"2012-01-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371268\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-03-19T07:46:53\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371268/Content/\",\n            \"DocumentName\": \"Rechnung 0155.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"24924.55000\",\n            \"InvoiceBalanceNetto\": \"20945.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0155\",\n            \"DueDate\": \"2020-04-02T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371269\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-09T13:24:55\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371269/Content/\",\n            \"DocumentName\": \"Invoice 0156.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"288.34000\",\n            \"InvoiceBalanceNetto\": \"242.30000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0156\",\n            \"DueDate\": \"2020-04-23T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371270\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-09T13:25:11\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371270/Content/\",\n            \"DocumentName\": \"Cancelation invoice 0157 => 0156.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfCancelInvoice\",\n            \"InvoiceBalance\": \"-288.34000\",\n            \"InvoiceBalanceNetto\": \"-242.30000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0157 => 0156\",\n            \"DueDate\": \"2012-01-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371271\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-21T15:20:01\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371271/Content/\",\n            \"DocumentName\": \"Invoice 0160.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"29.90000\",\n            \"InvoiceBalanceNetto\": \"29.90000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0160\",\n            \"DueDate\": \"2020-05-05T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371272\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-21T15:20:20\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371272/Content/\",\n            \"DocumentName\": \"Invoice 0161.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"35.58000\",\n            \"InvoiceBalanceNetto\": \"29.90000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0161\",\n            \"DueDate\": \"2020-05-05T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371273\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-21T15:14:36\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371273/Content/\",\n            \"DocumentName\": \"Invoice 0158.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"29.90000\",\n            \"InvoiceBalanceNetto\": \"29.90000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0158\",\n            \"DueDate\": \"2020-05-05T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371274\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-04-21T15:14:57\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371274/Content/\",\n            \"DocumentName\": \"Invoice 0159.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"35.58000\",\n            \"InvoiceBalanceNetto\": \"29.90000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0159\",\n            \"DueDate\": \"2020-05-05T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371275\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-05-01T13:17:10\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371275/Content/\",\n            \"DocumentName\": \"Invoice 0162.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"3229.35000\",\n            \"InvoiceBalanceNetto\": \"2713.74000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0162\",\n            \"DueDate\": \"2020-05-15T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371276\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-06-05T10:12:46\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371276/Content/\",\n            \"DocumentName\": \"Rechnung 0163.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"1322.01000\",\n            \"InvoiceBalanceNetto\": \"1110.93000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0163\",\n            \"DueDate\": \"2020-06-19T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371277\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-06-07T17:00:03\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371277/Content/\",\n            \"DocumentName\": \"Rechnung 0164.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"1322.01000\",\n            \"InvoiceBalanceNetto\": \"1110.93000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0164\",\n            \"DueDate\": \"2020-06-21T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsDunned\",\n            \"Note\": \"1. Mahnung:03.02.2021\\n\"\n        },\n        {\n            \"Id\": \"19807371278\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-06-07T18:10:47\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371278/Content/\",\n            \"DocumentName\": \"Rechnung 0165.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"1325.21000\",\n            \"InvoiceBalanceNetto\": \"1113.62000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0165\",\n            \"DueDate\": \"2020-07-02T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsDunned\",\n            \"Note\": \"1. Mahnung:03.02.2021\\n\"\n        },\n        {\n            \"Id\": \"19807371279\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-07-08T09:37:30\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371279/Content/\",\n            \"DocumentName\": \"Rechnung 0166.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"198.36000\",\n            \"InvoiceBalanceNetto\": \"171.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0166\",\n            \"DueDate\": \"2020-08-02T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsDunned\",\n            \"Note\": \"1. Mahnung:16.10.2020\\n2. Mahnung:03.02.2021\\n\"\n        },\n        {\n            \"Id\": \"19807371280\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-09-11T08:16:03\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371280/Content/\",\n            \"DocumentName\": \"Rechnung 0167.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"682.64000\",\n            \"InvoiceBalanceNetto\": \"588.48000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0167\",\n            \"DueDate\": \"2020-10-06T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371281\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-09-11T08:16:16\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371281/Content/\",\n            \"DocumentName\": \"Stornorechnung 0168 => 0167.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfCancelInvoice\",\n            \"InvoiceBalance\": \"-682.64000\",\n            \"InvoiceBalanceNetto\": \"-588.48000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0168 => 0167\",\n            \"DueDate\": \"2012-01-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371282\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-09-11T08:17:27\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371282/Content/\",\n            \"DocumentName\": \"Rechnung 0169.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"-10917.36000\",\n            \"InvoiceBalanceNetto\": \"-9411.52000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0169\",\n            \"DueDate\": \"2020-10-06T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": \"1. Mahnung:16.10.2020\\n\"\n        },\n        {\n            \"Id\": \"19807371283\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2020-10-16T17:45:03\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371283/Content/\",\n            \"DocumentName\": \"Rechnung 0170.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"5295.40000\",\n            \"InvoiceBalanceNetto\": \"4565.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0170\",\n            \"DueDate\": \"2020-11-10T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371284\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-07T19:33:01\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371284/Content/\",\n            \"DocumentName\": \"Rechnung 0171.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"51.00000\",\n            \"InvoiceBalanceNetto\": \"51.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0171\",\n            \"DueDate\": \"2021-02-06T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsSent\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371285\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-18T10:55:56\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371285/Content/\",\n            \"DocumentName\": \"Rechnung 0172.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"104.00000\",\n            \"InvoiceBalanceNetto\": \"104.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0172\",\n            \"DueDate\": \"2021-02-17T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371286\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-19T08:48:17\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371286/Content/\",\n            \"DocumentName\": \"Rechnung 0174.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"5.80000\",\n            \"InvoiceBalanceNetto\": \"5.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0174\",\n            \"DueDate\": \"2021-02-13T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsDunned\",\n            \"Note\": \"1. Mahnung:23.04.2021\\n2. Mahnung:23.04.2021\\n\"\n        },\n        {\n            \"Id\": \"19807371287\",\n            \"Version\": 2,\n            \"DateOfCreation\": \"2021-01-19T12:27:50\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371287/Content/\",\n            \"DocumentName\": \"Rechnung 0175.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"301.60000\",\n            \"InvoiceBalanceNetto\": \"260.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0175\",\n            \"DueDate\": \"2021-02-13T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": \"\\r\\n28 -01-21:jan.hoeppner@gmail.com\"\n        },\n        {\n            \"Id\": \"19807371288\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-19T08:28:41\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371288/Content/\",\n            \"DocumentName\": \"Rechnung 0173.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"104.00000\",\n            \"InvoiceBalanceNetto\": \"104.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0173\",\n            \"DueDate\": \"2021-02-18T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371289\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-26T15:09:13\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371289/Content/\",\n            \"DocumentName\": \"Abschlagsrechnung 0176.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfPartialInvoice\",\n            \"InvoiceBalance\": \"20.00000\",\n            \"InvoiceBalanceNetto\": \"20.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0176\",\n            \"DueDate\": \"2021-02-25T00:00:00Z\",\n            \"WithoutVAT\": true,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsSent\",\n            \"Note\": \"\\r\\n26 -01-21:jan.hoeppner@gmail.com\"\n        },\n        {\n            \"Id\": \"19807371290\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-26T15:19:48\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371290/Content/\",\n            \"DocumentName\": \"Abschlagsrechnung 0177.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfPartialInvoice\",\n            \"InvoiceBalance\": \"58.00000\",\n            \"InvoiceBalanceNetto\": \"50.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0177\",\n            \"DueDate\": \"2021-02-20T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsSent\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371291\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-01-28T14:03:44\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371291/Content/\",\n            \"DocumentName\": \"Rechnung 0178.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"0.00000\",\n            \"InvoiceBalanceNetto\": \"0.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0178\",\n            \"DueDate\": \"2021-02-22T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371292\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-02-22T13:18:55\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371292/Content/\",\n            \"DocumentName\": \"Rechnung 0179.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"763.62000\",\n            \"InvoiceBalanceNetto\": \"658.29000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0179\",\n            \"DueDate\": \"2021-03-19T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsOpen\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371293\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-02-24T22:05:46\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371293/Content/\",\n            \"DocumentName\": \"Rechnung 0180.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"227.36000\",\n            \"InvoiceBalanceNetto\": \"196.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0180\",\n            \"DueDate\": \"2021-03-21T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371294\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-02-24T22:06:05\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371294/Content/\",\n            \"DocumentName\": \"Stornorechnung 0181 => 0180.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfCancelInvoice\",\n            \"InvoiceBalance\": \"-227.36000\",\n            \"InvoiceBalanceNetto\": \"-196.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0181 => 0180\",\n            \"DueDate\": \"2012-01-01T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsPaid\",\n            \"Note\": null\n        },\n        {\n            \"Id\": \"19807371295\",\n            \"Version\": 1,\n            \"DateOfCreation\": \"2021-02-24T22:23:31\",\n            \"URI\": \"https://portal.mobilefieldreport.com/mfr/Invoice/19807371295/Content/\",\n            \"DocumentName\": \"Rechnung 0182.pdf\",\n            \"ReportDefinitionCode\": null,\n            \"FileType\": \"PdfInvoice\",\n            \"InvoiceBalance\": \"227.36000\",\n            \"InvoiceBalanceNetto\": \"196.00000\",\n            \"WageBalanceNet\": \"0\",\n            \"DatePayed\": \"2012-01-01T00:00:00Z\",\n            \"InvoiceId\": \"0182\",\n            \"DueDate\": \"2021-03-21T00:00:00Z\",\n            \"WithoutVAT\": false,\n            \"Skonto\": \"0\",\n            \"PartialPayment\": \"0.00000\",\n            \"InvoiceState\": \"eIsCancelled\",\n            \"Note\": null\n        }\n    ],\n    \"odata.nextLink\": \"https://portal.mobilefieldreport.com/odata/Invoices?$skip=32\"\n}"}],"_postman_id":"f824a617-20e7-4f43-a570-8d36523ba9f3"}],"id":"235aaa37-adf8-40b6-8e86-f5417d970a75","description":"<p>Invoices are bills generated for the customer. They are associated to a company (customer) and can be associated to ServiceRequest. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Invoice's id.</td>\n</tr>\n<tr>\n<td>DateOfCreation</td>\n<td>datetime</td>\n<td>Invoice's date of creation.</td>\n</tr>\n<tr>\n<td>URI</td>\n<td>string</td>\n<td>URI for downloading the Invoice.</td>\n</tr>\n<tr>\n<td>DocumentName</td>\n<td>string</td>\n<td>Invoice's file name.</td>\n</tr>\n<tr>\n<td>FileTypeString</td>\n<td>string</td>\n<td>Invoice's file type name.</td>\n</tr>\n<tr>\n<td>ReportDefinitionCode</td>\n<td>string</td>\n<td>Invoice Definition's id if the Invoice is based in one.</td>\n</tr>\n<tr>\n<td>InvoiceBalance</td>\n<td>float</td>\n<td>Total price to pay displayed in the Invoice.</td>\n</tr>\n<tr>\n<td>InvoiceId</td>\n<td>int</td>\n<td>Invoice's id if the Report is an invoice.</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>datetime</td>\n<td>Latest date for paying the invoice.</td>\n</tr>\n<tr>\n<td>DatePayed</td>\n<td>datetime</td>\n<td>Date when the invoice was payed.</td>\n</tr>\n<tr>\n<td>InvoiceState</td>\n<td>enum</td>\n<td>eIsOpen, eIsPayed, eIsCanceled, eIsSent</td>\n</tr>\n<tr>\n<td>ServiceRequest</td>\n<td>object</td>\n<td>Report's related Service Request.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"62b58765-fc07-4ab8-b13f-e5e1ea049a8c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"b282af6e-9a81-4dd0-b1d0-650679fa96aa"}}],"_postman_id":"235aaa37-adf8-40b6-8e86-f5417d970a75","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Cost Center","item":[{"name":"Get Cost Centers","id":"cf07638b-54fd-42c7-867f-c638e58b7f64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/CostCenters","description":"<p>Get all cost centers / projects.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["CostCenters"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf07638b-54fd-42c7-867f-c638e58b7f64"},{"name":"Create Cost Center","id":"45392c8b-3844-45c5-b7f6-4de99fdb9bc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"New\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/CostCenters","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Required. Name of the cost center.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["CostCenters"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"45392c8b-3844-45c5-b7f6-4de99fdb9bc5"}],"id":"115dc36b-515c-4d35-b1c0-6fc56ed1102f","description":"<p>Cost Center's or Projects serve to summarize Service Requests into one single purpose, a combination of different actions/jobs to carry a particular task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Cost Center's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Cost Center's name.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"14d4256d-d324-4af1-8869-335c901dd1f0"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"927486aa-1025-4636-a667-68c5a4b7407d"}}],"_postman_id":"115dc36b-515c-4d35-b1c0-6fc56ed1102f","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Tags","item":[{"name":"Get Tags","id":"f726f3b3-3357-4a52-9320-fca3b2f7d7f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Tags","description":"<p>Get all Tags.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"f726f3b3-3357-4a52-9320-fca3b2f7d7f3"},{"name":"Get Tags in a Service Request","id":"58673405-cce4-40fb-ac84-dc7f6e120075","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/ServiceRequests(2392066L)?$expand=Tags&$select=Tags","description":"<p>Get tags in a service request.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["ServiceRequests(2392066L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Tags"},{"key":"$select","value":"Tags"}],"variable":[]}},"response":[],"_postman_id":"58673405-cce4-40fb-ac84-dc7f6e120075"},{"name":"Add Tag","id":"a99d03db-818d-40bd-b6c9-2404332b77a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Reparatur\",\r\n    \"ColorDefinition\": \"#1491ad\",\r\n    \"Type\": \"ServiceRequest\",\r\n    \"GrpName\": \"GroupName\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Tags","description":"<p>Add a Tag for a particular entity.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the tag.</td>\n</tr>\n<tr>\n<td>ColorDefinition</td>\n<td>string</td>\n<td>Hexcode of the desired color for the tag. The character '#' shall be included.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Required. Type of the tag to add.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available tag types:</p>\n<ul>\n<li>ServiceRequest</li>\n<li>Company</li>\n<li>Document</li>\n<li>ServiceObject</li>\n<li>Report</li>\n</ul>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"a99d03db-818d-40bd-b6c9-2404332b77a7"},{"name":"Delete Tag","id":"59554d6c-42ef-4b0d-9003-ffe0cbc67b2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Tags(1277954L)","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>Id of the tag.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Tags(1277954L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"59554d6c-42ef-4b0d-9003-ffe0cbc67b2f"}],"id":"6f4458e2-3dff-482e-928b-c6f51be91fb2","description":"<p>Tags are used to categorize <strong>Service Requests</strong>, <strong>Service Objects</strong>, <strong>Companies</strong>, <strong>Documents</strong> and <strong>Reports</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attributes</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Tag's id.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Tag's name.</td>\n</tr>\n<tr>\n<td>ColorDefinition</td>\n<td>string</td>\n<td>Tag's color. Defined in <strong>Hex</strong> code.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>For which entity is this tag available. Values are: <code>ServiceRequest</code>, <code>ServiceObject</code>, <code>Tenant</code>, <code>Report</code>, <code>Document</code> and <code>Company</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"928d9bac-6153-47db-830a-10c07fa4b736"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"36209ac7-46ba-46bf-b2dc-f652b8b9328b"}}],"_postman_id":"6f4458e2-3dff-482e-928b-c6f51be91fb2","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Qualifications","item":[{"name":"Get qualifications","id":"47537713-322e-4dfe-bd71-f9a26bb9932e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Qualifications","description":"<p>Fetches all qualifications.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Qualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"47537713-322e-4dfe-bd71-f9a26bb9932e"},{"name":"Fetch a qualification","id":"3b57dfb0-5970-43e1-875f-6a967878d9c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Qualifications(3080193L)","description":"<p>Fetch a particular qualification.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Required. Id of the qualification.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Qualifications(3080193L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b57dfb0-5970-43e1-875f-6a967878d9c2"},{"name":"Create a qualification","id":"a0d3c8da-4c7c-45d7-9ae4-20cac5cdcbae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"Qualification 1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Qualifications","description":"<p>Creates a qualification.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name for the qualification.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Qualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0d3c8da-4c7c-45d7-9ae4-20cac5cdcbae"},{"name":"Update a qualification","id":"aba2c74c-27ac-4aea-9338-4e7c2ee90732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": \"3112960\",\r\n    \"Name\": \"Qualification Type 2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Qualifications(3080193L)","description":"<p>Update a qualification.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>string</td>\n<td>Required. Id of the qualification.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Body Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>string</td>\n<td>Required. Id of the qualification.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name for the qualification.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Qualifications(3080193L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"aba2c74c-27ac-4aea-9338-4e7c2ee90732"},{"name":"Delete a qualification","id":"60639df5-52a3-4dc4-bf65-3bd8d6388649","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Qualifications(3112960L)","description":"<p>Deletes a qualification.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>string</td>\n<td>Required. Id of the qualification.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Qualifications(3112960L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"60639df5-52a3-4dc4-bf65-3bd8d6388649"}],"id":"190c05ee-be30-4bbd-8b96-f8fd68e48bc5","description":"<p>Skills or certain abilities, as well as a type of grouping for <strong>Service Requests</strong> and <strong>Technicians</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity Attributes</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>int</td>\n<td>Id of the qualification.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the qualification.</td>\n</tr>\n<tr>\n<td>Version</td>\n<td>int</td>\n<td>Version of the qualification based on updates to the entity.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"91040a0b-78f1-4e3d-bf19-5af2dd9947da"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"883b89cb-8ef8-4068-a848-9b1c52dde063"}}],"_postman_id":"190c05ee-be30-4bbd-8b96-f8fd68e48bc5","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"WebHooks","item":[{"name":"Get all webhooks","id":"e4ed18d4-322d-4919-a2f5-146144b9cd54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/WebHooks","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["WebHooks"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4ed18d4-322d-4919-a2f5-146144b9cd54"},{"name":"Fetch a webook","id":"b71445a8-f733-4baa-8d51-0d097c284361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/WebHooks(2234234L)","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["WebHooks(2234234L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"b71445a8-f733-4baa-8d51-0d097c284361"},{"name":"Create a webhook","id":"f25068b5-0807-472d-8538-ce545a946897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \r\n    \"WebHookType\": \"ServiceRequestStateChanged\",\r\n    \"CallbackUrl\": \"https://localhost:44366/mfr/WebHook/Test\",\r\n    \"ExternalId\": \"Some external id\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/WebHooks","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["WebHooks"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"f25068b5-0807-472d-8538-ce545a946897"},{"name":"Delete a webhook","id":"4500c64c-7632-47a8-b8cd-b9045a7d9cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/WebHooks(234234234L)","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["WebHooks(234234234L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"4500c64c-7632-47a8-b8cd-b9045a7d9cc1"}],"id":"5879e8f3-2959-4d2b-96b2-b32bb3eb7e2b","description":"<p><strong>Webhooks</strong> allow you to register push notification from mobile field report. You have to specify a webhook type you want to register for and a webhook url. You can maximum create 3 webhooks for each webhook type. The following Webhook types are supported.</p>\n<p><strong>Webhook Types</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceRequestStateChanged</td>\n<td>The state for a service request has been changed.</td>\n</tr>\n<tr>\n<td>AppointmentChanged</td>\n<td>Appointment has been modified. Appoints are of type Others,Standard,Vacation or Illness</td>\n</tr>\n<tr>\n<td>NewCompany</td>\n<td>Version of the qualification based on updates to the entity.</td>\n</tr>\n<tr>\n<td>NewAppointment</td>\n<td>New appointment has been assigned to the technician</td>\n</tr>\n</tbody>\n</table>\n</div><p>Best practice is to take the returned ID of the entity and make another odata request (FETCH) on this specific entity and expand all required attributes.</p>\n<p><strong>Entity description</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Entity name</strong></th>\n<th><strong>type</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WebHookType</td>\n<td>string</td>\n<td>webhook type you can take from the webhooktypes table</td>\n</tr>\n<tr>\n<td>CallbackUrl</td>\n<td>string</td>\n<td>Valid url (without credentials) that shall be called. After a timeout of 2 seconds we interrupt the call.</td>\n</tr>\n<tr>\n<td>ExternalId</td>\n<td>string</td>\n<td>A description or external id you select to identify the webhook</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5879e8f3-2959-4d2b-96b2-b32bb3eb7e2b","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Project","item":[{"name":"Get Projects","id":"93b3f37e-28c5-4a93-94dd-e63c5ca70117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{  \n    \"Version\": 1,\n    \"Name\": \"P-195\",\n    \"ExternalId\": null,\n    \"BudgetTime\": \"0\",\n    \"BudgetMaterial\": \"0\",\n    \"CurrentAmountTime\": \"0\",\n    \"CurrentAmountMaterial\": \"0\",\n    \"CustomerId\": \"0\",\n    \"ClosedAt\": null,\n    \"IsClosed\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects","description":"<p>Update a project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"93b3f37e-28c5-4a93-94dd-e63c5ca70117"},{"name":"Create project","id":"f9d4886a-5d71-418a-93dd-4885a50ff511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"Name\": \"P-17\",\n\"ExternalId\": \"4545456\",\n\"CustomerId\": \"454566246\",\n\"BudgetTime\": \"65\"\n\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects","description":"<p>Create a project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9d4886a-5d71-418a-93dd-4885a50ff511"},{"name":"Update Project","id":"8c9139ba-5672-49da-8f54-c40d2c4b6c97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{  \n    \"Version\": 1,\n    \"Name\": \"P-195\",\n    \"ExternalId\": null,\n    \"BudgetTime\": \"0\",\n    \"BudgetMaterial\": \"0\",\n    \"CurrentAmountTime\": \"0\",\n    \"CurrentAmountMaterial\": \"0\",\n    \"CustomerId\": \"0\",\n    \"ClosedAt\": null,\n    \"IsClosed\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)","description":"<p>Update a project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c9139ba-5672-49da-8f54-c40d2c4b6c97"},{"name":"Delete project","id":"76526900-6196-4e88-b9ea-e189c4677029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)?Content-Type=application/xml","description":"<p>Delete a project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)"],"host":["portal","mobilefieldreport","com"],"query":[{"key":"Content-Type","value":"application/xml"}],"variable":[]}},"response":[],"_postman_id":"76526900-6196-4e88-b9ea-e189c4677029"},{"name":"Get Invoices of Project","id":"90d6921e-d9f1-41f4-b1ec-e9a58525423b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Gets Invoices of that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"90d6921e-d9f1-41f4-b1ec-e9a58525423b"},{"name":"Get Offers of Project","id":"9645a80b-7c81-4879-85aa-8d8169629850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Gets Offers of that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9645a80b-7c81-4879-85aa-8d8169629850"},{"name":"Get Orders of Project","id":"549f5665-efa4-44eb-b9b7-80b44c991a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Gets Orders of that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"549f5665-efa4-44eb-b9b7-80b44c991a1f"},{"name":"Get ServiceRequests of Project","id":"e6ac4db9-8ee5-4290-b32e-d2ac9de2e5f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Update a project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6ac4db9-8ee5-4290-b32e-d2ac9de2e5f8"},{"name":"Get Tasks of Project","id":"c0ec1e7a-7e84-40cc-bf69-fc88b16f32a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Tasks","description":"<p>Gets the Tasks of a Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Tasks"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0ec1e7a-7e84-40cc-bf69-fc88b16f32a2"},{"name":"Create a Task for a Project","id":"bb11ef34-b8c9-445a-8291-9a3b5f0ae3d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"AppointmentType\": \"Task\",\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\n    \"ContactId\": \"458755\",\n    \"Pipeline\" : {\n        \"Id\" : 12\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Tasks","description":"<p>Create a new Task for that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Tasks"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb11ef34-b8c9-445a-8291-9a3b5f0ae3d9"},{"name":"Update a Task of a Project","id":"0db631ec-b117-4927-9bc4-d101f5d09f62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"AppointmentType\": \"Task\",\n    \"StartDateTime\": \"2019-12-06T07:30:00Z\",\n    \"EndDateTime\": \"2019-12-06T09:30:00Z\",\n    \"ContactId\": \"458755\",\n    \"Pipeline\" : {\n        \"Id\" : 12\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Tasks/(917522L)","description":"<p>Updates the given Task</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Tasks","(917522L)"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0db631ec-b117-4927-9bc4-d101f5d09f62"},{"name":"Remove a Task from a Project","id":"cb398889-0ea7-45a1-880f-3d8339a5e408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Tasks/(917522L)","description":"<p>Removes the given Task from the Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Tasks","(917522L)"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb398889-0ea7-45a1-880f-3d8339a5e408"},{"name":"Get Tags of Project","id":"f99c2154-058f-42d3-92f2-4926d99948e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Gets Tags of that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f99c2154-058f-42d3-92f2-4926d99948e7"},{"name":"Add a Tag to a Project","id":"00364b58-b1c9-4f25-8bed-bdce6f2de3b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"url\":\"/Tags(1234L)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/$links/Tags","description":"<p>Assignes the given Tag to that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","$links","Tags"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"00364b58-b1c9-4f25-8bed-bdce6f2de3b7"},{"name":"Remove a Tag from a Project","id":"98aa5384-2cd6-43c1-a660-0eb8b9ca4f00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"url\":\"/Tags(1234L)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/$links/Tags","description":"<p>Unassignes the given Tag from the Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","$links","Tags"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"98aa5384-2cd6-43c1-a660-0eb8b9ca4f00"},{"name":"Get Pipelines of Project","id":"e25ae24b-8bf3-4daa-ba9e-5e05d8546684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/Invoices","description":"<p>Gets Pipelines of that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","Invoices"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e25ae24b-8bf3-4daa-ba9e-5e05d8546684"},{"name":"Add a Pipeline to a Project","id":"84e4382b-3dde-4334-96b4-9be52a8d18be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"url\":\"/Tags(1234L)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/$links/Pipelines","description":"<p>Assignes the given Pipeline to that Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","$links","Pipelines"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"84e4382b-3dde-4334-96b4-9be52a8d18be"},{"name":"Remove a Pipeline from a Project","id":"e07c49ba-b556-4d2b-97d8-806326a1db32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"username":"<username>","password":"<password>"},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"url\":\"/Tags(1234L)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.mobilefieldreport.com/odata/Projects(54627205121L)/$links/Pipeline","description":"<p>Unassignes the given Pipeline from the Project</p>\n","urlObject":{"protocol":"https","path":["odata","Projects(54627205121L)","$links","Pipeline"],"host":["portal","mobilefieldreport","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e07c49ba-b556-4d2b-97d8-806326a1db32"}],"id":"da17e459-0fc6-4157-80b8-bec1a972a7e6","_postman_id":"da17e459-0fc6-4157-80b8-bec1a972a7e6","description":"","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}},{"name":"Offers","item":[{"name":"Get Offers","id":"1080cf32-17da-4dd8-ad4b-60af7c983ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Offers","description":"<p>Get a list of all offers.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"1080cf32-17da-4dd8-ad4b-60af7c983ae0"},{"name":"Get Offers with Expands","id":"f216a52d-befd-4e04-9946-af54b45a96ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Offers?$expand=Tags,Contacts,Documents,Qualifications,Destination","description":"<p>Get a list of all offers with navigation properties expanded.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[{"key":"$expand","value":"Tags,Contacts,Documents,Qualifications,Destination"}],"variable":[]}},"response":[],"_postman_id":"f216a52d-befd-4e04-9946-af54b45a96ab"},{"name":"Retrieve an Offer","id":"c42c7a05-a4cd-4472-ab1b-e66bfc4d83be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)","description":"<p>Retrieve a single offer by ID. Returns 404 if not found.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"c42c7a05-a4cd-4472-ab1b-e66bfc4d83be"},{"name":"Create an Offer","id":"cc8883b6-e857-4195-9e20-1477fe1660f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Offer\",\n    \"ExternalId\": \"OFFER-001\",\n    \"Description\": \"Offer description\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers","description":"<p>Create a new offer. The Type is automatically set to IsOffer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc8883b6-e857-4195-9e20-1477fe1660f6"},{"name":"Update an Offer","id":"be50da97-a83c-4540-b5c3-5c8219c0f6b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Updated Offer Name\",\n    \"Description\": \"Updated description\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)","description":"<p>Update an existing offer. Returns 400 if the entity is not an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"be50da97-a83c-4540-b5c3-5c8219c0f6b6"},{"name":"Delete an Offer","id":"7b8ef948-3581-4225-8053-0d7f1e0e9720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)","description":"<p>Delete an offer. Returns 400 if the entity is not an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b8ef948-3581-4225-8053-0d7f1e0e9720"},{"name":"Link a Tag to Offer","id":"f36649be-6902-49a2-bbae-f98485007c43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Tags(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Tags","description":"<p>Link a tag to an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"f36649be-6902-49a2-bbae-f98485007c43"},{"name":"Unlink a Tag from Offer","id":"2a349025-b047-4ca7-9518-eae3c29438b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Tags(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Tags","description":"<p>Unlink a tag from an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Tags"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a349025-b047-4ca7-9518-eae3c29438b6"},{"name":"Link a Contact to Offer","id":"a10ae2b8-400a-438f-8984-9c778a8a7e15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Contacts(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Contacts","description":"<p>Link a contact to an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Contacts"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"a10ae2b8-400a-438f-8984-9c778a8a7e15"},{"name":"Unlink a Contact from Offer","id":"42da8220-0302-4ac4-abe0-763068f8af75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Contacts(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Contacts","description":"<p>Unlink a contact from an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Contacts"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"42da8220-0302-4ac4-abe0-763068f8af75"},{"name":"Link a Document to Offer","id":"1fc20d5b-ef92-40bd-bcf0-5b9f32dfc921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/Documents(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Documents","description":"<p>Link a document to an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Documents"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fc20d5b-ef92-40bd-bcf0-5b9f32dfc921"},{"name":"Link a Qualification to Offer","id":"db1fd9f1-cf37-4a1d-b816-899a3b6d61ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/UserQualifications(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Qualifications","description":"<p>Link a qualification to an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Qualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"db1fd9f1-cf37-4a1d-b816-899a3b6d61ac"},{"name":"Unlink a Qualification from Offer","id":"bd43cacf-fba0-4d86-8005-fff2b6aa2b88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/UserQualifications(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Qualifications","description":"<p>Unlink a qualification from an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Qualifications"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd43cacf-fba0-4d86-8005-fff2b6aa2b88"},{"name":"Link a Destination to Offer","id":"f26e3fc6-4f03-4a50-ab8f-e238c2ceba27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/ServiceObjects(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Destination","description":"<p>Link a service object as the destination of an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Destination"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"f26e3fc6-4f03-4a50-ab8f-e238c2ceba27"},{"name":"Unlink a Destination from Offer","id":"30bd773f-7a5d-444e-be92-c22f96fa4f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://portal.mobilefieldreport.com/odata/ServiceObjects(456L)\"\n}"},"url":"https://portal.mobilefieldreport.com/odata/Offers(123L)/$links/Destination","description":"<p>Unlink a destination (service object) from an offer.</p>\n","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}},"urlObject":{"path":["Offers(123L)","$links","Destination"],"host":["https://portal.mobilefieldreport.com/odata"],"query":[],"variable":[]}},"response":[],"_postman_id":"30bd773f-7a5d-444e-be92-c22f96fa4f6f"}],"id":"dbf0d517-cf73-4cdb-8b93-a7b0e90f8d8c","_postman_id":"dbf0d517-cf73-4cdb-8b93-a7b0e90f8d8c","description":"","auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":true,"source":{"_postman_id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","id":"8b74bb3d-72d2-4ec5-b013-7e5a588f0e05","name":"MFR OData","type":"collection"}}}],"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"b18cf4e1-1c9e-4a7e-8a26-94f8a3a3e2db"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"afe5045a-4c0d-4921-939f-1cf210915c57"}}],"variable":[{"key":"serverURL","value":"https://portal.mobilefieldreport.com/odata"}]}