{"info":{"_postman_id":"4bc9116e-46f7-4db3-bc63-73415a94392e","name":"tmgroup Technology Core APIs","description":"<html><head></head><body><blockquote>\n<p><strong>UPDATED</strong>: This is our new version of our documentation if you are looking for MIO or tmConnect these are now hosted on a new seperate dedicated documentation site as listed below in the \"Other Useful API Documentation\" section. </p>\n</blockquote>\n<p>tmGroup Technology's REST API Collection provides you with a powerful, convenient, and simple suite of APIs. This documentation covers the the following functionality provided by the APIs:</p>\n<ul>\n<li><p>Address Lookup</p>\n<ul>\n<li>Lists of matching addresses</li>\n</ul>\n</li>\n<li><p>Address Lookup</p>\n<ul>\n<li><p>Single match by address string</p>\n</li>\n<li><p>Single match by address lines</p>\n</li>\n</ul>\n</li>\n<li><p>Property Location Information</p>\n</li>\n<li><p>Property Risks (Coming Soon)</p>\n</li>\n<li><p>Land Registry Searches</p>\n<ul>\n<li><p>Title Number Lookup</p>\n</li>\n<li><p>Official Copy OC1</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"other-useful-api-documentation\">Other Useful API Documentation</h3>\n<p>Additional API Documentation for other areas can be found with the links below:</p>\n<ul>\n<li><p><a href=\"https://docs.tmconvey.technology/\">tmConvey &amp; Quick Order</a></p>\n</li>\n<li><p><a href=\"https://docs.tmconnect.technology/\">tmConnect</a></p>\n</li>\n</ul>\n<h1 id=\"registration\">Registration</h1>\n<p>To register your interest in using our APIs please email <a href=\"https://\">technology@tmgroup.co.uk</a></p>\n<h1 id=\"getting-started-with-postman-collection\">Getting Started with Postman Collection</h1>\n<p>By using the \"Run in Postman\" button located at the top right of this page it provides you with a quick and easy way to start using our APIs and testing your credentials.</p>\n<p>Once our collection is loaded into your local version simply update the body on the Authentication \"Generate Access Token\" with your details as found in the API Portal (to register for the portal please email us as above).<br>Our Postman collection is currently configured to point at our \"Demo\" environment. If you need to change this please edit the local collection variables and ammend the variable \"BaseEnvironmentURL\" to the domain prefix provided.</p>\n<p>Once this is done you will be ready to start using the APIs.</p>\n<h1 id=\"api-versioning\">API Versioning</h1>\n<p>We will always maintain the latest TWO versions of each endpoint. The version forms part of the URL.</p>\n<p>An example of how this works can be seen within our \"HelloWorld\" service.</p>\n<h1 id=\"open-api-swagger\">Open API (Swagger)</h1>\n<p>OpenAPI Specification (formerly Swagger Specification) is an API description format for REST APIs and all out APIs are documented using this approach.</p>\n<p><strong>Swagger URLs:</strong></p>\n<ul>\n<li><p><a href=\"https://www.tmgroup.technology/helloworld/swagger/index.html\">HelloWorld</a></p>\n</li>\n<li><p><a href=\"https://www.tmgroup.technology/locationservices/swagger/index.html\">Location Services</a></p>\n</li>\n</ul>\n<h1 id=\"error-handling\">Error Handling</h1>\n<p>We use conventional HTTP response codes to indicate the success or failure of an API request.</p>\n<ul>\n<li><p>Codes in the 2xx range indicate success.</p>\n</li>\n<li><p>Codes in the 4xx range indicate an error due to the information provided</p>\n</li>\n<li><p>Codes in the 5xx range indicate an error with our service</p>\n</li>\n</ul>\n<h2 id=\"http-status-code-summary\">HTTP Status Code Summary</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 - OK</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td>The request was unacceptable, often due to missing a required parameter.</td>\n</tr>\n<tr>\n<td>401 - Unauthorized</td>\n<td>Invalid API key provided.</td>\n</tr>\n<tr>\n<td>402 - Request Failed</td>\n<td>The parameters were valid but the request failed.</td>\n</tr>\n<tr>\n<td>403 - Forbidden</td>\n<td>The API key doesn't have permissions to perform the request.</td>\n</tr>\n<tr>\n<td>404 - Not Found</td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td>422 - Unprocessable Entity</td>\n<td>The request content is invalid, the response will provide details of the issue</td>\n</tr>\n<tr>\n<td>503 - Service Unavailable</td>\n<td></td>\n</tr>\n<tr>\n<td>500, 502, 503, 504 - Server Errors</td>\n<td>Something went wrong on our side</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"technology-rest-apis\">Technology REST APIs</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Registration","slug":"registration"},{"content":"Getting Started with Postman Collection","slug":"getting-started-with-postman-collection"},{"content":"API Versioning","slug":"api-versioning"},{"content":"Open API (Swagger)","slug":"open-api-swagger"},{"content":"Error Handling","slug":"error-handling"},{"content":"Technology REST APIs","slug":"technology-rest-apis"}],"owner":"3773172","collectionId":"4bc9116e-46f7-4db3-bc63-73415a94392e","publishedId":"2s8Z6vXYrb","public":true,"customColor":{"top-bar":"0E273B","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-12-23T09:46:24.000Z"},"item":[{"name":"Authentication","item":[{"name":"Generate Access Token","event":[{"listen":"test","script":{"id":"63d5b070-c6c9-4505-a704-c4881102849c","exec":["// Schema expected for response","var responseSchema = {","    \"$schema\": \"http://json-schema.org/draft-07/schema#\",","    \"type\": \"object\",","    \"properties\": {","        \"access_token\": {","            \"type\": \"string\"","        },","        \"token_type\": {","            \"type\": \"string\",","        },","        \"expires_in\": {","            \"type\": \"number\",","        },","        \"scope\": {","            \"type\": \"string\"","        }","    },","    \"required\": [\"access_token\", \"token_type\", \"expires_in\"]","};","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(pm.response.json(), responseSchema, true, true)).to.be.true;","});","","// Store bearer token","pm.collectionVariables.set(\"bearerToken\", pm.response.json().access_token);"],"type":"text/javascript"}}],"id":"f3198c63-f344-41ad-9935-5beab9bf1900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"client_id","type":"text"},{"key":"client_secret","value":"client_secret","type":"text"}]},"url":"https://demo20identity.tmgroup.technology/connect/token","description":"<p>Our Live Environment URLs is <a href=\"https://identity.tmgroup.technology/connect/token\">https://identity.tmgroup.technology/connect/token</a></p>\n","urlObject":{"protocol":"https","path":["connect","token"],"host":["demo20identity","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"e0db6587-0d15-423b-afc1-1bb2570a4d12","name":"Generate Access Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"clientId","type":"text"},{"key":"client_secret","value":"secret","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"https://demo20identity.tmgroup.technology/connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, max-age=0"},{"key":"Pragma","value":"no-cache"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 22 Jan 2020 15:54:50 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjZCN0FDQzUyMDMwNUJGREI0RjcyNTJEQUVCMjE3N0NDMDkxRkFBRTEiLCJ0eXAiOiJhdCtqd3QiLCJ4NXQiOiJhM3JNVWdNRnY5dFBjbExhNnlGM3pBa2ZxdUUifQ.eyJuYmYiOjE1Nzk3MDg0OTAsImV4cCI6MTU3OTcxMjA5MCwiaXNzIjoiaHR0cHM6Ly9kZXYyMC50bWdyb3VwLnRlY2hub2xvZ3kvaWRlbnRpdHkiLCJhdWQiOiJIZWxsb1dvcmxkQXBpIiwiY2xpZW50X2lkIjoiVGVjaFRyYWNrMSIsInNjb3BlIjpbIkhlbGxvV29ybGRBcGkiXX0.Bi0Nz7ySBnT1DW8zlv9vuikKDkhQzzcw03JSXa2H4iXkB1ATaRaI3Eaevp8N6oUJPqzkg5p4yowdiVHcGlPuZGBrNb_GFpK4VYSnLDvC7oSRrhGUFOrwdH7yxkJeRZYM1s7fMLoerh2c9WpPKdwsSBYoAm_7WBV2tDlHf_Rg_lQDwg27kL7cNUqlzotU8PnhnVb_F2DuFET69m1-WcXXvW7KWeIdgxI5URYVIYoDZYHzxImpMotjLKewvubUkeF7rlYJAsaA_-jL7NCwGiuLAJB5ipJoQJAt2GG-lYCmW1UDgu4VednGpbh3u0p2mAzxgIakol4YixvLFcJxCe-llA\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\",\n    \"scope\": \"HelloWorldApi\"\n}"}],"_postman_id":"f3198c63-f344-41ad-9935-5beab9bf1900"}],"id":"8b906c95-0fde-4895-8f40-9505c060a951","description":"<h1 id=\"openid-authentication\">OpenID Authentication</h1>\n<p>All our secure APIs are secured using OpenID Connect which is a simple identity layer on top of the OAuth 2.0 protocol.</p>\n<p>To use our secure APIs you will need to obtain a token from our identity server using the your company client ID and client secret. Your client secret will be supplier at the point of registration and will have an expiry date of 1 year.</p>\n<blockquote>\n<p>Ensure that you make a note of your secret as we are not able to provide this to you again after generation. If you lose it you will need to generate a new secret.\nWe provide the ability to run with two overlapping secrets at any one time.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"bca5738e-fb22-459e-8ee3-f17036b00624","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1f42e754-9365-409e-b2ba-60e7051a93c2","type":"text/javascript","exec":[""]}}],"_postman_id":"8b906c95-0fde-4895-8f40-9505c060a951"},{"name":"HelloWorld","item":[{"name":"HelloWorld v1","event":[{"listen":"test","script":{"id":"a5bf5e0a-2fe0-4d78-a55d-6dd71cf4fa22","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"91abfded-e064-4e8b-a48d-29cbfd05d0c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo20.tmgroup.technology/HelloWorld/v1/HelloWorld","urlObject":{"protocol":"https","path":["HelloWorld","v1","HelloWorld"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"ab7b0008-eaa1-4793-9ea0-baca99b4441e","name":"HelloWorld","originalRequest":{"method":"GET","header":[],"url":"https://{{environmentURL}}.tmgroup.technology/HelloWorld/v2/HelloWorld"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"2.0"},{"key":"api-deprecated-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 22 Jan 2020 15:55:20 GMT"}],"cookie":[],"responseTime":null,"body":"Hello World 'v1'!"}],"_postman_id":"91abfded-e064-4e8b-a48d-29cbfd05d0c8"},{"name":"HelloWorld v2","event":[{"listen":"test","script":{"id":"a5bf5e0a-2fe0-4d78-a55d-6dd71cf4fa22","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"07f05c46-bb37-4f8c-afee-abfd5b6141f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo20.tmgroup.technology/HelloWorld/v2/HelloWorld","urlObject":{"protocol":"https","path":["HelloWorld","v2","HelloWorld"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"9d8cdb02-0b61-4bb8-9d66-efd71835100c","name":"HelloWorld","originalRequest":{"method":"GET","header":[],"url":"https://{{environmentURL}}.tmgroup.technology/HelloWorld/v2/HelloWorld"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"2.0"},{"key":"api-deprecated-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 22 Jan 2020 15:55:20 GMT"}],"cookie":[],"responseTime":null,"body":"Hello World 'v2'!"}],"_postman_id":"07f05c46-bb37-4f8c-afee-abfd5b6141f8"},{"name":"HelloWorld - Authenticated","event":[{"listen":"test","script":{"id":"276122a5-d972-4c8c-b4e1-3881292a754a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"c2366ec4-c093-44da-a86d-4e6080087788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Generated_Token","type":"text"}],"url":"https://demo20.tmgroup.technology/HelloWorld/v2/HelloWorldAuthenticated","description":"<p>HelloWorld example to test your authentication token is working.</p>\n","urlObject":{"protocol":"https","path":["HelloWorld","v2","HelloWorldAuthenticated"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"45dd0b16-65d0-4413-8ceb-9d5374d4311b","name":"HelloWorld - Authenticated","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Generated_Token","type":"text"}],"url":"https://{{environmentURL}}.tmgroup.technology/HelloWorld/v1/HelloWorldAuthenticated"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"2.0"},{"key":"api-deprecated-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 22 Jan 2020 15:55:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Hello World 'v1'!\",\n    \"logId\": 64,\n    \"customerId\": 261291,\n    \"randomTaskDurationMs\": 907\n}"}],"_postman_id":"c2366ec4-c093-44da-a86d-4e6080087788"}],"id":"6a902de5-8a75-4a5f-a27e-f0d66063b455","description":"<p><strong>Swagger URL</strong></p>\n<ul>\n<li><a href=\"https://www.tmgroup.technology/helloworld/swagger/\">HelloWorld</a></li>\n</ul>\n<p>Example API to test your connection and authentication.</p>\n","event":[{"listen":"prerequest","script":{"id":"c452cfa1-8525-4bc4-a4a0-a5a3d151d08e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"606194bb-0993-4b13-b2a5-9722af14fa94","type":"text/javascript","exec":[""]}}],"_postman_id":"6a902de5-8a75-4a5f-a27e-f0d66063b455"},{"name":"Location Services","item":[{"name":"Address Find","event":[{"listen":"test","script":{"id":"7be23edd-cc60-4d5e-8f3a-b8c2c62eecb4","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store uprn","pm.collectionVariables.set(\"TMPRN\", pm.response.json().addressList[0].tMprn);"],"type":"text/javascript"}}],"id":"5b701c53-7ea8-45c3-a7b3-ed07b3a33c1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"addressString\": \"T M Group (UK) Limited 1 SN57XZ\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/address/find","description":"<h1 id=\"address-lookup\">Address Lookup</h1>\n<p>Our address lookup returns a matched list based on the input of an address string. Our advanced address algorithms means that you do not need to provide delimiters just an address string with as much data as you have or simply provide a post code.</p>\n<p>The API will return a list of matched addresses for you to choose from. Once your happy that you have found the correct address use out \"Select Address\" API to retrieve additional details of the property including the UPRN which you can then use with our other APIs.</p>\n","urlObject":{"protocol":"https","path":["locationservices","v1","address","find"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"eaddb689-e0a7-4918-9f92-7cd5c77a2512","name":"Address Find","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"addressString\": \"sn57xz\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/address/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 22 Oct 2021 09:27:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"addressList\": [\n        {\n            \"tMprn\": \"LasG5Bw5Q7HLXG5zwpRFug==\",\n            \"displayString\": \"Apple UK Ltd Unit 1100 Delta Office Park Welton Road Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"kMRjdd8TT2rVJGNp7QEn4A==\",\n            \"displayString\": \"Sodexo Ltd Unit 1100 Delta Office Park Welton Road Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"vxmXGK04Q9ajP8PeoNznhA==\",\n            \"displayString\": \"C M S Supatrak Unit 1200 Delta Office Park Welton Road Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"vAblrN63uddKj59fIy7nsA==\",\n            \"displayString\": \"Cherwell Software Ltd Unit 1200 Delta Office Park Welton Road Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"h4M4hCw3mm1RSiYJupsP4g==\",\n            \"displayString\": \"T M Property Searches Ltd Unit 1200 Delta Office Park Welton Road Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"YZtQgKgOH7U/2lYyb9EMHQ==\",\n            \"displayString\": \"T M Group (UK) Limited 1 Unit 1200 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"7RtRuRxKrroKw/GBMqm1wQ==\",\n            \"displayString\": \"Cms Supatrak Limited 2 Unit 1200 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"i915bzn1PE1UVczvuTYYsQ==\",\n            \"displayString\": \"Cherwell Software Limited 3 Unit 1200 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"5Qt3A5RTuVKieceXeTEKEA==\",\n            \"displayString\": \"Ground Floor East Qa House Unit 1100 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"pjpFfQcuMDQy+qFkyrZ5JQ==\",\n            \"displayString\": \"First Floor Qa House Unit 1100 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        },\n        {\n            \"tMprn\": \"F2QkvA3Rbqu2Hi9cXQImuQ==\",\n            \"displayString\": \"Ground Floor West Qa House Unit 1100 Welton Road Westlea Swindon Wiltshire SN5 7XZ\"\n        }\n    ]\n}"}],"_postman_id":"5b701c53-7ea8-45c3-a7b3-ed07b3a33c1c"},{"name":"Select Address","event":[{"listen":"test","script":{"id":"2e87f3e0-8f48-4a21-b12b-05a57f2517c5","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store uprn","pm.collectionVariables.set(\"UPRN\", pm.response.json().uprn);"],"type":"text/javascript"}}],"id":"1630fff1-e0b3-4551-ab05-74acdcd56ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tmprn\": \"{{TMPRN}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/address/select/","description":"<h1 id=\"select-address\">Select Address</h1>\n<p>Our address lookup API provides back a match list of properties, this API is used to select the address using out tmprn and return more property details such as UPRN and PAF address. </p>\n<p>You now have the UPRN in which to use when placing orders or using our other APIs.</p>\n","urlObject":{"protocol":"https","path":["locationservices","v1","address","select",""],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"705c45bd-0196-4b77-8970-3df37726141f","name":"Select Address","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"tmprn\": \"{{TMPRN}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/address/select/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 05 Nov 2021 13:53:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"pafAddress\": {\n        \"organisationName\": \"T M GROUP (UK) LIMITED\",\n        \"departmentName\": \"\",\n        \"poBox\": null,\n        \"buildingName\": \"UNIT 1200\",\n        \"subBuildingName\": \"1\",\n        \"subBuilding\": \"1\",\n        \"buildingNumber\": \"\",\n        \"thoroughfareName\": \"WELTON\",\n        \"dependentThoroughfareName\": \"\",\n        \"dependentLocality\": \"WESTLEA\",\n        \"doubleDependentLocality\": \"\",\n        \"postTown\": \"SWINDON\",\n        \"postcode\": \"SN5 7XZ\",\n        \"county\": \"WILTSHIRE\",\n        \"onsCountryCode\": \"E\"\n    },\n    \"uprn\": 10093395927\n}"}],"_postman_id":"1630fff1-e0b3-4551-ab05-74acdcd56ac9"},{"name":"Select Address (TitleCase)","event":[{"listen":"test","script":{"id":"1c4994eb-dfd8-4a54-856d-ab7860c0f813","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store uprn","pm.collectionVariables.set(\"UPRN\", pm.response.json().uprn);"],"type":"text/javascript"}}],"id":"a85d2eca-e836-479f-b5f1-b6434a3ebff2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tmprn\": \"{{TMPRN}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/address/select?addressDisplayFormat=titleCase","description":"<h1 id=\"select-address-title-case\">Select Address Title Case</h1>\n<p>This API provides a more UI friendly version of the API response if you choose to display this in your UI.</p>\n","urlObject":{"protocol":"https","path":["locationservices","v1","address","select"],"host":["demo20","tmgroup","technology"],"query":[{"key":"addressDisplayFormat","value":"titleCase"}],"variable":[]}},"response":[{"id":"d424ad66-78d7-4393-b6f3-c75d4a32894c","name":"Select Address (TitleCase)","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"tmprn\": \"{{TMPRN}}\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://demo20.tmgroup.technology/locationservices/v1/address/select?addressDisplayFormat=titleCase","protocol":"https","host":["demo20","tmgroup","technology"],"path":["locationservices","v1","address","select"],"query":[{"key":"addressDisplayFormat","value":"titleCase"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 04 Dec 2023 10:19:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"pafAddress\": {\n        \"organisationName\": \"T M PROPERTY SEARCHES LTD\",\n        \"departmentName\": \"\",\n        \"poBox\": null,\n        \"buildingName\": \"Unit 1200\",\n        \"subBuildingName\": \"\",\n        \"subBuilding\": \"\",\n        \"buildingNumber\": \"\",\n        \"thoroughfareName\": \"Welton\",\n        \"thoroughfareDescriptor\": \"Road\",\n        \"dependentThoroughfareName\": \"Delta Office\",\n        \"dependentLocality\": \"\",\n        \"doubleDependentLocality\": \"\",\n        \"postTown\": \"Swindon\",\n        \"postcode\": \"SN5 7XZ\",\n        \"county\": \"Wiltshire\",\n        \"onsCountryCode\": \"E\"\n    },\n    \"uprn\": 10004841678\n}"}],"_postman_id":"a85d2eca-e836-479f-b5f1-b6434a3ebff2"},{"name":"UPRN Find - Address String","event":[{"listen":"test","script":{"id":"2352c5b8-8def-4227-bbcd-3963cba8fa36","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store uprn","pm.collectionVariables.set(\"UPRN\", pm.response.json().addressInformation.uprn);"],"type":"text/javascript"}}],"id":"f50cebf6-83d2-49f1-a4b4-d2d191113c4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"addressString\": \"5A, Market Square, MK18 3AB\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/uprn/find","description":"<p><strong>What is a UPRN?</strong></p>\n<p>UPRN stands for Unique Property Reference Number and was created by the Ordnance Survey (OS). It consists of numbers of up to 12 digits in length.</p>\n<p><strong>UPRN Lookup</strong></p>\n<p>We provide 2 mechanisms to lookup UPRNS. You can either provide an \"address string\" or an address line formatted address. The lookup will only return an exact singluar match and if multiple properties are found we will be required to provide additional information to unique identify the property.</p>\n<p>Our return message includeds the property UPRN and the PAF formatted address for the property.</p>\n","urlObject":{"protocol":"https","path":["locationservices","v1","uprn","find"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"5315c780-0243-4dcf-9c7c-6de9aad7e34e","name":"URPN Find - Address String","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"addressString\": \"5A, Market Square, MK18 3AB\"\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/uprn/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 09 Jul 2020 12:12:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"addressInformation\": {\n        \"uprn\": \"000766247285\",\n        \"address\": {\n            \"organisationName\": \"\",\n            \"departmentName\": \"\",\n            \"poBox\": \"\",\n            \"buildingName\": \"5A\",\n            \"subBuildingName\": \"\",\n            \"subBuilding\": \"\",\n            \"buildingNumber\": \"\",\n            \"thoroughfareName\": \"Market Square\",\n            \"dependentThoroughfareName\": \"\",\n            \"dependentLocality\": \"Winslow\",\n            \"doubleDependentLocality\": \"\",\n            \"postTown\": \"Buckingham\",\n            \"postcode\": \"MK18 3AB\",\n            \"county\": \"Buckinghamshire\",\n            \"onsCountryCode\": \"E\"\n        }\n    }\n}"}],"_postman_id":"f50cebf6-83d2-49f1-a4b4-d2d191113c4e"},{"name":"UPRN Find - Formatted Address","event":[{"listen":"test","script":{"id":"8cce3e3f-34c9-476d-9325-c623c22f8520","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store uprn","pm.collectionVariables.set(\"UPRN\", pm.response.json().addressInformation.uprn);"],"type":"text/javascript"}}],"id":"0cd5fdac-0b35-4b98-9f19-2ab99bd15c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"formattedAddress\": {\r\n        \"addressLine1\": \"5a\",\r\n        \"addressLine2\": \"Market Square\",\r\n        \"addressLine3\": \"\",\r\n        \"addressLine4\": \"\",\r\n        \"postcode\": \"mk183ab\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/uprn/find","urlObject":{"protocol":"https","path":["locationservices","v1","uprn","find"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"42660795-61b5-4e06-8bde-5f152bfa75a7","name":"URPN Find - Formatted Address","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"formattedAddress\": {\r\n        \"addressLine1\": \"5a\",\r\n        \"addressLine2\": \"Market Square\",\r\n        \"addressLine3\": \"\",\r\n        \"addressLine4\": \"\",\r\n        \"postcode\": \"mk183ab\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/locationservices/v1/uprn/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 09 Jul 2020 12:12:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"addressInformation\": {\n        \"uprn\": \"000766247285\",\n        \"address\": {\n            \"organisationName\": \"\",\n            \"departmentName\": \"\",\n            \"poBox\": \"\",\n            \"buildingName\": \"5A\",\n            \"subBuildingName\": \"\",\n            \"subBuilding\": \"\",\n            \"buildingNumber\": \"\",\n            \"thoroughfareName\": \"Market Square\",\n            \"dependentThoroughfareName\": \"\",\n            \"dependentLocality\": \"Winslow\",\n            \"doubleDependentLocality\": \"\",\n            \"postTown\": \"Buckingham\",\n            \"postcode\": \"MK18 3AB\",\n            \"county\": \"Buckinghamshire\",\n            \"onsCountryCode\": \"E\"\n        }\n    }\n}"}],"_postman_id":"0cd5fdac-0b35-4b98-9f19-2ab99bd15c3e"},{"name":"Location Information by UPRN","event":[{"listen":"test","script":{"id":"fc86f188-30da-403b-9ed0-cc005a6dd5a4","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","",""],"type":"text/javascript"}}],"id":"9617efd9-bce2-4883-981a-d25f7d0d9534","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://demo20.tmgroup.technology/locationservices/v1/uprn/:100031060071","description":"<p>Location Information provides details of a property based on the UPRN. This includes data such as:</p>\n<ul>\n<li>Formatted address</li>\n<li>Display address string</li>\n<li>List of title numbers associated with property </li>\n<li>Local Authority</li>\n<li>Water Authority</li>\n<li>National Grid Coordinates (Eastings/Northings)</li>\n<li>Gas Distribution </li>\n<li>Electricity Distribution</li>\n</ul>\n<h1 id=\"example-uprns\">Example UPRNS</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>UPRN</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>010004841678</td>\n<td>Commercial Property with No Title Numbers associated</td>\n</tr>\n<tr>\n<td>100061912559</td>\n<td>Residential Property with leasehold and freehold titles</td>\n</tr>\n<tr>\n<td>000766247285</td>\n<td>Residential Property with freehold title</td>\n</tr>\n</tbody>\n</table>\n</div><p>The above example responses are included as part of the Postman collection and can be seen on the right.</p>\n","urlObject":{"protocol":"https","path":["locationservices","v1","uprn",":100031060071"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[{"id":"4855ef68-6dc2-4886-b790-2f9e5de7213d","type":"string","value":"010004841678","key":"100031060071"}]}},"response":[{"id":"5075cdad-4e9d-44f1-9aef-abc33a400b1f","name":"UPRN - 000766247285","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://demo20.tmgroup.technology/locationservices/v1/uprn/:100031060071","protocol":"https","host":["demo20","tmgroup","technology"],"path":["locationservices","v1","uprn",":100031060071"],"variable":[{"key":"100031060071","value":"000766247285"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 03 Apr 2020 10:45:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"locationInformation\": {\n        \"address\": {\n            \"organisationName\": \"\",\n            \"departmentName\": \"\",\n            \"poBox\": \"\",\n            \"buildingName\": \"5A\",\n            \"subBuildingName\": \"\",\n            \"subBuilding\": \"\",\n            \"buildingNumber\": \"\",\n            \"thoroughfareName\": \"MARKET SQUARE\",\n            \"dependentThoroughfareName\": \"\",\n            \"dependentLocality\": \"WINSLOW\",\n            \"doubleDependentLocality\": \"\",\n            \"postTown\": \"BUCKINGHAM\",\n            \"postcode\": \"MK18 3AB\",\n            \"county\": \"BUCKINGHAMSHIRE\",\n            \"onsCountryCode\": \"E\"\n        },\n        \"displayAddress\": \"5A,Market Square,Winslow,Buckingham,Buckinghamshire,MK18 3AB\",\n        \"titles\": [\n            {\n                \"class\": \"Absolute freehold title \",\n                \"tenure\": \"Freehold\",\n                \"titleNumber\": \"BM228060\"\n            }\n        ],\n        \"pqi\": {\n            \"number\": 1,\n            \"description\": \"Based on Property\"\n        },\n        \"waterAuthorityList\": [\n            {\n                \"name\": \"Anglian Water\",\n                \"code\": \"AnglianWater\"\n            }\n        ],\n        \"localAuthority\": {\n            \"onsGeographyCode\": \"E07000004\",\n            \"onsGeographyName\": \"Aylesbury Vale\"\n        },\n        \"easting\": 476951,\n        \"northing\": 227538,\n        \"gasDistributionList\": [\n            {\n                \"name\": \"Southern Gas Networks - South\",\n                \"code\": \"SouthernGasNetworksSouth\"\n            }\n        ],\n        \"electricDistributionList\": [\n            {\n                \"name\": \"Western Power Distribution (East Midlands)\",\n                \"code\": \"WesternPowerDistributionEastMidlands\"\n            }\n        ]\n    }\n}"},{"id":"865af8e4-bd52-419e-8ed4-683f743494ac","name":"UPRN - 010004841678","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://demo20.tmgroup.technology/locationservices/v1/uprn/:100031060071","protocol":"https","host":["demo20","tmgroup","technology"],"path":["locationservices","v1","uprn",":100031060071"],"variable":[{"key":"100031060071","value":"010004841678"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 24 Mar 2020 09:17:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"locationInformation\": {\n        \"address\": {\n            \"organisationName\": \"T M PROPERTY SEARCHES LTD\",\n            \"departmentName\": \"\",\n            \"poBox\": \"\",\n            \"buildingName\": \"UNIT 1200\",\n            \"subBuildingName\": \"\",\n            \"subBuilding\": \"\",\n            \"buildingNumber\": \"\",\n            \"thoroughfareName\": \"WELTON ROAD\",\n            \"dependentThoroughfareName\": \"DELTA OFFICE PARK\",\n            \"dependentLocality\": \"\",\n            \"doubleDependentLocality\": \"\",\n            \"postTown\": \"SWINDON\",\n            \"postcode\": \"SN5 7XZ\",\n            \"county\": \"WILTSHIRE\",\n            \"onsCountryCode\": \"E\"\n        },\n        \"displayAddress\": \"T M Property Searches Ltd,Unit 1200,Delta Office Park,Welton Road,Swindon,Wiltshire,SN5 7XZ\",\n        \"titles\": [],\n        \"pqi\": {\n            \"number\": 1,\n            \"description\": \"Based on Property\"\n        },\n        \"waterAuthorityList\": [\n            {\n                \"name\": \"Thames Water\",\n                \"code\": \"ThamesWater\"\n            }\n        ],\n        \"localAuthority\": {\n            \"onsGeographyCode\": \"E06000030\",\n            \"onsGeographyName\": \"Swindon\"\n        },\n        \"easting\": 412887,\n        \"northing\": 184624,\n        \"gasDistributionList\": [\n            {\n                \"name\": \"Wales and West Utilities Ltd - South West\",\n                \"code\": \"WalesAndWestUtilitiesSouthWest\"\n            }\n        ],\n        \"electricDistributionList\": [\n            {\n                \"name\": \"SSE Power Distribution\",\n                \"code\": \"SSEPowerDistribution\"\n            }\n        ]\n    }\n}"},{"id":"94373e11-4a3b-4fd8-ba3b-876ed488b870","name":"UPRN - 100061912559","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://demo20.tmgroup.technology/locationservices/v1/uprn/:100031060071","protocol":"https","host":["demo20","tmgroup","technology"],"path":["locationservices","v1","uprn",":100031060071"],"variable":[{"key":"100031060071","value":"100061912559"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 03 Apr 2020 10:44:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"locationInformation\": {\n        \"address\": {\n            \"organisationName\": \"\",\n            \"departmentName\": \"\",\n            \"poBox\": \"\",\n            \"buildingName\": \"ALASTAIR COURT\",\n            \"subBuildingName\": \"FLAT 1\",\n            \"subBuilding\": \"FLAT 1\",\n            \"buildingNumber\": \"30\",\n            \"thoroughfareName\": \"COMPTON STREET\",\n            \"dependentThoroughfareName\": \"\",\n            \"dependentLocality\": \"\",\n            \"doubleDependentLocality\": \"\",\n            \"postTown\": \"EASTBOURNE\",\n            \"postcode\": \"BN21 4EL\",\n            \"county\": \"EAST SUSSEX\",\n            \"onsCountryCode\": \"E\"\n        },\n        \"displayAddress\": \"Flat 1,Alastair Court,30,Compton Street,Eastbourne,East Sussex,BN21 4EL\",\n        \"titles\": [\n            {\n                \"class\": \"Absolute freehold title \",\n                \"tenure\": \"Freehold\",\n                \"titleNumber\": \"EB1021\"\n            },\n            {\n                \"class\": \"Absolute leasehold title\",\n                \"tenure\": \"Leasehold\",\n                \"titleNumber\": \"ESX394705\"\n            }\n        ],\n        \"pqi\": {\n            \"number\": 1,\n            \"description\": \"Based on Property\"\n        },\n        \"waterAuthorityList\": [\n            {\n                \"name\": \"Southern Water\",\n                \"code\": \"SouthernWater\"\n            }\n        ],\n        \"localAuthority\": {\n            \"onsGeographyCode\": \"E07000061\",\n            \"onsGeographyName\": \"Eastbourne\"\n        },\n        \"easting\": 561030,\n        \"northing\": 98135,\n        \"gasDistributionList\": [\n            {\n                \"name\": \"Southern Gas Networks - South East\",\n                \"code\": \"SouthernGasNetworksSouthEast\"\n            }\n        ],\n        \"electricDistributionList\": [\n            {\n                \"name\": \"EDF Energy Networks\",\n                \"code\": \"EDFEnergyNetworks\"\n            }\n        ]\n    }\n}"}],"_postman_id":"9617efd9-bce2-4883-981a-d25f7d0d9534"}],"id":"e774cca4-1a87-4cb5-887f-8999a4f04030","description":"<p><strong>Swagger URL</strong></p>\n<ul>\n<li><a href=\"https://www.tmgroup.technology/locationservices/swagger/\">Location Services</a></li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"c370e141-e834-48bf-abee-3cf259ba6f6d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aa5fed60-a22f-4830-842e-1a64828a152a","type":"text/javascript","exec":[""]}}],"_postman_id":"e774cca4-1a87-4cb5-887f-8999a4f04030"},{"name":"Land Registry Searches","item":[{"name":"Title Number Lookup","event":[{"listen":"test","script":{"id":"25891956-23cf-4106-b3bd-f8bd3c8126a2","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","if (responseCode.code !== 200) return;","// continue with other tests","","// Store project Id","pm.collectionVariables.set(\"projectId\", pm.response.json().projectId);","","// Store project Id","pm.collectionVariables.set(\"orderItemId\", pm.response.json().orderItemId);",""],"type":"text/javascript"}}],"id":"97d3a713-636a-4a6c-8606-09f81fd97104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"propertyDetails\": {\n           \"address\": {\n                \"organisationName\": \"\",\n                \"departmentName\": \"\",\n                \"poBox\": \"\",\n                \"buildingName\": \"\",\n                \"subBuilding\": \"\",\n                \"buildingNumber\": \"1\",\n                \"thoroughfareName\": \"Pickett Avenue\",\n                \"doubleDependentLocality\": \"\",\n                \"dependentLocality\": \"\",\n                \"postTown\": \"Oxford\",\n                \"postcode\": \"OX3 8RS\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/TitleNumberLookup","description":"<h1 id=\"synchronous-land-registry-title-number-lookup\">Synchronous Land Registry Title Number lookup</h1>\n<p>We have created the ability to query the Land Registry to get the Tile Number information for a given property in a synchronous method – which under normal system load will take less than 20 seconds.</p>\n<p>On our test/demo systems the following postcodes will return different types of responses.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Postcode</th>\n<th>Response</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Default</td>\n<td>WK240950</td>\n</tr>\n<tr>\n<td>PE2 8NZ</td>\n<td>No title number has been identified from the data supplied. This does not necessarily mean that a register of a title does not exist but only that insufficient data has matched.</td>\n</tr>\n<tr>\n<td>E13 9NG</td>\n<td>Freehold</td>\n</tr>\n<tr>\n<td>SK5 7QP</td>\n<td>Rent Charge and Freehold</td>\n</tr>\n<tr>\n<td>BB12 7JX</td>\n<td>Single Leasehold</td>\n</tr>\n<tr>\n<td>OX3 8RS</td>\n<td>4 Titles Leasehold and Freehold</td>\n</tr>\n<tr>\n<td>M14 6AQ</td>\n<td>2 Titles Rent Charge and Freehold</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"tenure-types-estate\">Tenure Types (Estate)</h1>\n<p>In the returned response the TenureType (shown as \"Estate\" in the response object) can have the following types:</p>\n<ul>\n<li>FREEHOLD</li>\n<li>LEASEHOLD</li>\n<li>COMMONHOLD</li>\n<li>FEUHOLD</li>\n<li>MIXED</li>\n<li>UNKNOWN</li>\n<li>UNAVAILABLE</li>\n<li>CAUTION AGAINST FIRST REGISTRATION</li>\n<li>RENT CHARGE</li>\n<li>FRANCHISE</li>\n<li>PROFIT A PRENDRE IN GROSS</li>\n<li>MANOR</li>\n</ul>\n","urlObject":{"protocol":"https","path":["propertysearches","v1","TitleNumberLookup"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"732bb4dc-efa4-4f37-b11f-0d37ea468d55","name":"Single Leasehold","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"propertyDetails\": {\n           \"address\": {\n                \"organisationName\": \"\",\n                \"departmentName\": \"\",\n                \"poBox\": \"\",\n                \"buildingName\": \"\",\n                \"subBuilding\": \"\",\n                \"buildingNumber\": \"1\",\n                \"thoroughfareName\": \"Pickett Avenue\",\n                \"doubleDependentLocality\": \"\",\n                \"dependentLocality\": \"\",\n                \"postTown\": \"Oxford\",\n                \"postcode\": \"BB12 7JX\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/TitleNumberLookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 29 Jun 2020 08:56:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderItemId\": 20576874,\n    \"projectId\": 19450153,\n    \"customerReference\": \"202006290956321960\",\n    \"files\": [\n        {\n            \"fileFullName\": \"HMLR Property Enquiry 1CDSRCH20576874.PDF\",\n            \"fileName\": \"HMLR Property Enquiry 1CDSRCH20576874\",\n            \"fileExtension\": \".PDF\",\n            \"fileIndex\": 0,\n            \"links\": [\n                {\n                    \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576874/Results/0\",\n                    \"name\": \"FileLink\",\n                    \"type\": \"GET\"\n                }\n            ]\n        }\n    ],\n    \"data\": {\n        \"status\": \"Available\",\n        \"responseObject\": {\n            \"USAGE_DESCRIPTION\": \"\",\n            \"NUMBER_OF_PROPERTIES\": \"1\",\n            \"PROPERTY_LIST\": {\n                \"PROPERTY_ENTRY\": {\n                    \"PROPERTY_UPRN\": \"\",\n                    \"PROPERTY_ADDRESS_1\": \"\",\n                    \"PROPERTY_ADDRESS_2\": \"36\",\n                    \"PROPERTY_USRN\": \"\",\n                    \"PROPERTY_STREET\": \"WORDSWORTH STREET\",\n                    \"PROPERTY_LOCALITY\": \"\",\n                    \"PROPERTY_TOWN\": \"BURNLEY\",\n                    \"PROPERTY_ADMINISTRATIVE_AREA\": \"\",\n                    \"PROPERTY_POST_TOWN\": \"\",\n                    \"PROPERTY_POST_CODE\": \"BB12 7JX\",\n                    \"PROPERTY_EASTING\": \"\",\n                    \"PROPERTY_NORTHING\": \"\",\n                    \"NUMBER_OF_TITLE_NUMBERS\": \"1\",\n                    \"TITLE_NUMBER_LIST\": {\n                        \"TITLE_NUMBER_ENTRY\": {\n                            \"TITLE_NUMBER\": \"LA637467\",\n                            \"ESTATE\": \"LEASEHOLD\",\n                            \"COMMON\": \"\"\n                        }\n                    }\n                }\n            }\n        }\n    },\n    \"links\": [\n        {\n            \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576874/Results/Zip\",\n            \"name\": \"ZippedResults\",\n            \"type\": \"GET\"\n        },\n        {\n            \"href\": \"https://dev20.tmgroup.technology/projectservices/projects/19450153\",\n            \"name\": \"ProjectDetails\",\n            \"type\": \"GET\"\n        }\n    ]\n}"},{"id":"4a00bcc3-3333-4b0d-b055-e821102a43d9","name":"No Property Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"propertyDetails\": {\n           \"address\": {\n                \"organisationName\": \"\",\n                \"departmentName\": \"\",\n                \"poBox\": \"\",\n                \"buildingName\": \"\",\n                \"subBuilding\": \"\",\n                \"buildingNumber\": \"1\",\n                \"thoroughfareName\": \"Pickett Avenue\",\n                \"doubleDependentLocality\": \"\",\n                \"dependentLocality\": \"\",\n                \"postTown\": \"Oxford\",\n                \"postcode\": \"PE2 8NZ\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/TitleNumberLookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 29 Jun 2020 07:37:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderItemId\": 20576869,\n    \"projectId\": 19450148,\n    \"customerReference\": \"202006290836564460\",\n    \"files\": [\n        {\n            \"fileFullName\": \"HMLR Property Enquiry 1CD_SRCH_20576869.PDF\",\n            \"fileName\": \"HMLR Property Enquiry 1CD_SRCH_20576869\",\n            \"fileExtension\": \".PDF\",\n            \"fileIndex\": 0,\n            \"links\": [\n                {\n                    \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576869/Results/0\",\n                    \"name\": \"FileLink\",\n                    \"type\": \"GET\"\n                }\n            ]\n        }\n    ],\n    \"data\": {\n        \"status\": \"Available\",\n        \"responseObject\": {\n            \"USAGE_DESCRIPTION\": \"No entry in the property database matched your search. Please try again using a different input, or submit a Search of the Index Map to the appropriate District Land Registry office (see Practice Guide No. 10). The information supplied does not constitute an Official Certificate of Search of Index Map under rule 145 Land Registration Rules 2003\",\n            \"NUMBER_OF_PROPERTIES\": \"0\",\n            \"PROPERTY_LIST\": \"\"\n        }\n    },\n    \"links\": [\n        {\n            \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576869/Results/Zip\",\n            \"name\": \"ZippedResults\",\n            \"type\": \"GET\"\n        },\n        {\n            \"href\": \"https://dev20.tmgroup.technology/projectservices/projects/19450148\",\n            \"name\": \"ProjectDetails\",\n            \"type\": \"GET\"\n        }\n    ]\n}"},{"id":"cbf7304e-5f0d-4942-b84d-39f437a89964","name":"Title Number Lookup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"propertyDetails\": {\n           \"address\": {\n                \"organisationName\": \"\",\n                \"departmentName\": \"\",\n                \"poBox\": \"\",\n                \"buildingName\": \"\",\n                \"subBuilding\": \"\",\n                \"buildingNumber\": \"1\",\n                \"thoroughfareName\": \"Pickett Avenue\",\n                \"doubleDependentLocality\": \"\",\n                \"dependentLocality\": \"\",\n                \"postTown\": \"Oxford\",\n                \"postcode\": \"OX3 8RS\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/TitleNumberLookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 29 Jun 2020 07:34:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderItemId\": 20576867,\n    \"projectId\": 19450146,\n    \"customerReference\": \"202006290833312692\",\n    \"files\": [\n        {\n            \"fileFullName\": \"HMLR Property Enquiry 1CDSRCH20576867.PDF\",\n            \"fileName\": \"HMLR Property Enquiry 1CDSRCH20576867\",\n            \"fileExtension\": \".PDF\",\n            \"fileIndex\": 0,\n            \"links\": [\n                {\n                    \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576867/Results/0\",\n                    \"name\": \"FileLink\",\n                    \"type\": \"GET\"\n                }\n            ]\n        }\n    ],\n    \"data\": {\n        \"status\": \"Available\",\n        \"responseObject\": {\n            \"USAGE_DESCRIPTION\": \"\",\n            \"NUMBER_OF_PROPERTIES\": \"4\",\n            \"PROPERTY_LIST\": {\n                \"PROPERTY_ENTRY\": [\n                    {\n                        \"PROPERTY_UPRN\": \"\",\n                        \"PROPERTY_ADDRESS_1\": \"\",\n                        \"PROPERTY_ADDRESS_2\": \"1\",\n                        \"PROPERTY_USRN\": \"\",\n                        \"PROPERTY_STREET\": \"PICKETT AVENUE\",\n                        \"PROPERTY_LOCALITY\": \"\",\n                        \"PROPERTY_TOWN\": \"OXFORD\",\n                        \"PROPERTY_ADMINISTRATIVE_AREA\": \"\",\n                        \"PROPERTY_POST_TOWN\": \"\",\n                        \"PROPERTY_POST_CODE\": \"OX3 8RS\",\n                        \"PROPERTY_EASTING\": \"\",\n                        \"PROPERTY_NORTHING\": \"\",\n                        \"NUMBER_OF_TITLE_NUMBERS\": \"1\",\n                        \"TITLE_NUMBER_LIST\": {\n                            \"TITLE_NUMBER_ENTRY\": {\n                                \"TITLE_NUMBER\": \"ON8255\",\n                                \"ESTATE\": \"FREEHOLD\",\n                                \"COMMON\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"PROPERTY_UPRN\": \"\",\n                        \"PROPERTY_ADDRESS_1\": \"\",\n                        \"PROPERTY_ADDRESS_2\": \"1\",\n                        \"PROPERTY_USRN\": \"\",\n                        \"PROPERTY_STREET\": \"PICKETT AVENUE\",\n                        \"PROPERTY_LOCALITY\": \"\",\n                        \"PROPERTY_TOWN\": \"OXFORD\",\n                        \"PROPERTY_ADMINISTRATIVE_AREA\": \"\",\n                        \"PROPERTY_POST_TOWN\": \"\",\n                        \"PROPERTY_POST_CODE\": \"OX3 8RS\",\n                        \"PROPERTY_EASTING\": \"\",\n                        \"PROPERTY_NORTHING\": \"\",\n                        \"NUMBER_OF_TITLE_NUMBERS\": \"1\",\n                        \"TITLE_NUMBER_LIST\": {\n                            \"TITLE_NUMBER_ENTRY\": {\n                                \"TITLE_NUMBER\": \"ON250274\",\n                                \"ESTATE\": \"LEASEHOLD\",\n                                \"COMMON\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"PROPERTY_UPRN\": \"\",\n                        \"PROPERTY_ADDRESS_1\": \"LOCK UP STORE ASSOCIATED WITH\",\n                        \"PROPERTY_ADDRESS_2\": \"1\",\n                        \"PROPERTY_USRN\": \"\",\n                        \"PROPERTY_STREET\": \"PICKETT AVENUE\",\n                        \"PROPERTY_LOCALITY\": \"\",\n                        \"PROPERTY_TOWN\": \"OXFORD\",\n                        \"PROPERTY_ADMINISTRATIVE_AREA\": \"\",\n                        \"PROPERTY_POST_TOWN\": \"\",\n                        \"PROPERTY_POST_CODE\": \"OX3 8RS\",\n                        \"PROPERTY_EASTING\": \"\",\n                        \"PROPERTY_NORTHING\": \"\",\n                        \"NUMBER_OF_TITLE_NUMBERS\": \"1\",\n                        \"TITLE_NUMBER_LIST\": {\n                            \"TITLE_NUMBER_ENTRY\": {\n                                \"TITLE_NUMBER\": \"ON250274\",\n                                \"ESTATE\": \"LEASEHOLD\",\n                                \"COMMON\": \"\"\n                            }\n                        }\n                    },\n                    {\n                        \"PROPERTY_UPRN\": \"\",\n                        \"PROPERTY_ADDRESS_1\": \"LOCK UP STORE ASSOCIATED WITH\",\n                        \"PROPERTY_ADDRESS_2\": \"1\",\n                        \"PROPERTY_USRN\": \"\",\n                        \"PROPERTY_STREET\": \"PICKETT AVENUE\",\n                        \"PROPERTY_LOCALITY\": \"\",\n                        \"PROPERTY_TOWN\": \"OXFORD\",\n                        \"PROPERTY_ADMINISTRATIVE_AREA\": \"\",\n                        \"PROPERTY_POST_TOWN\": \"\",\n                        \"PROPERTY_POST_CODE\": \"OX3 8RS\",\n                        \"PROPERTY_EASTING\": \"\",\n                        \"PROPERTY_NORTHING\": \"\",\n                        \"NUMBER_OF_TITLE_NUMBERS\": \"1\",\n                        \"TITLE_NUMBER_LIST\": {\n                            \"TITLE_NUMBER_ENTRY\": {\n                                \"TITLE_NUMBER\": \"ON8255\",\n                                \"ESTATE\": \"FREEHOLD\",\n                                \"COMMON\": \"\"\n                            }\n                        }\n                    }\n                ]\n            }\n        }\n    },\n    \"links\": [\n        {\n            \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20576867/Results/Zip\",\n            \"name\": \"ZippedResults\",\n            \"type\": \"GET\"\n        },\n        {\n            \"href\": \"https://dev20.tmgroup.technology/projectservices/projects/19450146\",\n            \"name\": \"ProjectDetails\",\n            \"type\": \"GET\"\n        }\n    ]\n}"}],"_postman_id":"97d3a713-636a-4a6c-8606-09f81fd97104"},{"name":"Official Copy  Lookup","event":[{"listen":"test","script":{"id":"cd64ad06-a8ab-496a-b263-e9f7c7ca8048","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;\r","if (responseCode.code !== 200) return;\r","// continue with other tests\r",""],"type":"text/javascript"}}],"id":"fd8b246c-c901-4b00-878d-42dd9cf36653","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Generated_Token"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"propertyDetails\": {\n            \"UPRN\": \"320020767\"\n        }\n    },\n    \"officialCopyData\": {\n        \"titleNumber\": \"ON8255\",\n        \"registerCopyRequired\": false,\n        \"planCopyRequired\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/OfficialCopyLookup","description":"<h1 id=\"synchronous-official-copy-oc1\">Synchronous Official Copy (OC1)</h1>\n<p>Returns a synchronous response when ordering an OC1, containing both data and result files.</p>\n<p>Under normal system load will take less than 20 seconds.</p>\n<blockquote>\n<p>This only allows the ordering of backdated Register and/or Plan Copy.\n<strong>\"Certificate in form CI\"</strong> and requesting an <strong>\"On Completion\"</strong> of pending registrations are not able to be returned Synchronously, if you require either of these please order by our <a href=\"#4650c185-5123-4064-8f20-9e9be1c4056e\">asynchronous ordering API</a></p>\n</blockquote>\n<h1 id=\"product-details\">Product Details</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>titleNumber</td>\n<td>Yes</td>\n<td>Title Number of Property</td>\n</tr>\n<tr>\n<td>registerCopyRequired</td>\n<td>Yes</td>\n<td>Official copy of register required</td>\n</tr>\n<tr>\n<td>planCopyRequirted</td>\n<td>Yes</td>\n<td>Official copy of plan required</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["propertysearches","v1","OfficialCopyLookup"],"host":["demo20","tmgroup","technology"],"query":[],"variable":[]}},"response":[{"id":"9b997cb6-58e1-4f29-a959-ed80b39ce205","name":"Official Copy  Lookup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectDetails\": {\n        \"projectReference\": \"cde3ec43-4c33-43cd-8ade-a2781a82f8fc\",\n        \"sectorType\": \"residential\",\n        \"projectType\": \"purchase\",\n        \"propertyDetails\": {\n           \"address\": {\n                \"organisationName\": \"Welcome Break\",\n                \"departmentName\": \"\",\n                \"poBox\": \"\",\n                \"buildingName\": \"\",\n                \"subBuilding\": \"\",\n                \"buildingNumber\": \"1\",\n                \"thoroughfare\": \"Waterstock\",\n                \"doubleDependentLocality\": \"\",\n                \"dependentLocality\": \"\",\n                \"postTown\": \"Oxford\",\n                \"postcode\": \"OX33 1LJ\"\n            }\n        }\n    },\n    \"officialCopyData\": {\n        \"titleNumber\": \"ON8255\",\n        \"registerCopyRequired\": false,\n        \"planCopyRequired\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://demo20.tmgroup.technology/propertysearches/v1/OfficialCopyLookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 27 Mar 2020 08:57:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"orderItemId\": 20282818,\r\n    \"projectId\": 18843234,\r\n    \"customerReference\": \"887bfdd8-951d-4acd-b97a-5933305a1afd\",\r\n    \"files\": [\r\n        {\r\n            \"fileFullName\": \"1 Official Copy Title Plan - ON8255.pdf\",\r\n            \"fileName\": \"1 Official Copy Title Plan - ON8255\",\r\n            \"fileExtension\": \".pdf\",\r\n            \"fileIndex\": 0,\r\n            \"links\": [\r\n                {\r\n                    \"href\": \"https://test20.tmgroup.technology/propertysearches/orders/20282818/Results/0\",\r\n                    \"name\": \"FileLink\",\r\n                    \"type\": \"GET\"\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"data\": {\r\n        \"status\": \"Available\",\r\n        \"responseObject\": {\r\n            \"HMLR_REGISTER_EXTRACT\": {\r\n                \"MessageDetails\": \"\",\r\n                \"ExternalReference\": \"\",\r\n                \"OCSummaryData\": {\r\n                    \"OfficialCopyDateTime\": \"2020-02-06T17:48:47\",\r\n                    \"EditionDate\": \"2019-11-22\",\r\n                    \"PropertyAddress\": {\r\n                        \"PostcodeZone\": {\r\n                            \"Postcode\": \"OX33 1LJ\"\r\n                        },\r\n                        \"AddressLine\": {\r\n                            \"Line\": [\r\n                                \"Welcome Break\",\r\n                                \"Waterstock\",\r\n                                \"Oxford\"\r\n                            ]\r\n                        }\r\n                    },\r\n                    \"Title\": {\r\n                        \"TitleNumber\": \"ON240029\",\r\n                        \"ClassOfTitleCode\": \"60\",\r\n                        \"CommonholdIndicator\": \"false\",\r\n                        \"TitleRegistrationDetails\": {\r\n                            \"DistrictName\": \"SOUTH OXFORDSHIRE\",\r\n                            \"AdministrativeArea\": \"OXFORDSHIRE\",\r\n                            \"LandRegistryOfficeName\": \"Gloucester Office\",\r\n                            \"LatestEditionDate\": \"2019-11-22\",\r\n                            \"PostcodeZone\": {\r\n                                \"Postcode\": \"OX33 1LJ\"\r\n                            },\r\n                            \"RegistrationDate\": \"2003-04-01\"\r\n                        }\r\n                    },\r\n                    \"RegisterEntryIndicators\": {\r\n                        \"AgreedNoticeIndicator\": \"true\",\r\n                        \"BankruptcyIndicator\": \"false\",\r\n                        \"CautionIndicator\": \"false\",\r\n                        \"CCBIIndicator\": \"false\",\r\n                        \"ChargeeIndicator\": \"true\",\r\n                        \"ChargeIndicator\": \"true\",\r\n                        \"ChargeRelatedRestrictionIndicator\": \"false\",\r\n                        \"ChargeRestrictionIndicator\": \"true\",\r\n                        \"CreditorsNoticeIndicator\": \"false\",\r\n                        \"DeathOfProprietorIndicator\": \"false\",\r\n                        \"DeedOfPostponementIndicator\": \"false\",\r\n                        \"DiscountChargeIndicator\": \"false\",\r\n                        \"EquitableChargeIndicator\": \"false\",\r\n                        \"GreenOutEntryIndicator\": \"false\",\r\n                        \"HomeRightsChangeOfAddressIndicator\": \"false\",\r\n                        \"HomeRightsIndicator\": \"false\",\r\n                        \"LeaseHoldTitleIndicator\": \"true\",\r\n                        \"MultipleChargeIndicator\": \"false\",\r\n                        \"NonChargeRestrictionIndicator\": \"false\",\r\n                        \"NotedChargeIndicator\": \"false\",\r\n                        \"PricePaidIndicator\": \"false\",\r\n                        \"PropertyDescriptionNotesIndicator\": \"false\",\r\n                        \"RentChargeIndicator\": \"true\",\r\n                        \"RightOfPreEmptionIndicator\": \"false\",\r\n                        \"ScheduleOfLeasesIndicator\": \"true\",\r\n                        \"SubChargeIndicator\": \"false\",\r\n                        \"UnidentifiedEntryIndicator\": \"true\",\r\n                        \"UnilateralNoticeBeneficiaryIndicator\": \"false\",\r\n                        \"UnilateralNoticeIndicator\": \"false\",\r\n                        \"VendorsLienIndicator\": \"false\"\r\n                    },\r\n                    \"Proprietorship\": {\r\n                        \"CurrentProprietorshipDate\": \"2003-04-01\",\r\n                        \"RegisteredProprietorParty\": {\r\n                            \"Organization\": {\r\n                                \"Name\": \"WELCOME BREAK GROUP LIMITED\",\r\n                                \"CompanyRegistrationNumber\": \"3147949\"\r\n                            },\r\n                            \"Address\": {\r\n                                \"PostcodeZone\": {\r\n                                    \"Postcode\": \"MK16 9EZ\"\r\n                                },\r\n                                \"AddressLine\": {\r\n                                    \"Line\": [\r\n                                        \"2 Vantage Court\",\r\n                                        \"Tickford Street\",\r\n                                        \"Newport Pagnell\"\r\n                                    ]\r\n                                }\r\n                            }\r\n                        }\r\n                    },\r\n                    \"Lease\": {\r\n                        \"LeaseEntry\": {\r\n                            \"LeaseTerm\": \"35 years from 20 March 2003\",\r\n                            \"LeaseDate\": \"2003-03-20\",\r\n                            \"Rent\": \"as therein mentioned\",\r\n                            \"LeaseParty\": {\r\n                                \"Organization\": {\r\n                                    \"Name\": \"Welcome Break Group Limited\"\r\n                                },\r\n                                \"PartyNumber\": \"3\"\r\n                            },\r\n                            \"EntryDetails\": {\r\n                                \"EntryNumber\": \"5\",\r\n                                \"EntryText\": \"Short particulars of the lease(s) (or under-lease(s)) under which the land is held:Date        : 20 March 2003                                              Term        : 35 years from 20 March 2003                                Rent        : as therein mentioned                                       Parties     : (1) Welcome Break Holdings                                               (2) Limited                                                              (3) Welcome Break Group Limited\",\r\n                                \"ScheduleCode\": \"20\"\r\n                            }\r\n                        }\r\n                    },\r\n                    \"RestrictionDetails\": {\r\n                        \"RestrictionEntry\": {\r\n                            \"ChargeRestriction\": {\r\n                                \"RestrictionTypeCode\": \"30\",\r\n                                \"ChargeID\": \"1\",\r\n                                \"EntryDetails\": {\r\n                                    \"EntryNumber\": \"2\",\r\n                                    \"EntryText\": \"RESTRICTION: No disposition of the registered estate by the proprietor of the registered estate or by the proprietor of any registered charge, not being a charge registered before the entry of this restriction, is to be registered without a written consent signed by the proprietor for the time being of the Charge dated 23 October 2019 in favour of Lloyds Bank Plc referred to in the Charges Register.\",\r\n                                    \"SubRegisterCode\": \"B\",\r\n                                    \"Infills\": {\r\n                                        \"ChargeDate\": \"2019-10-23\",\r\n                                        \"ChargeParty\": \"Lloyds Bank Plc\"\r\n                                    }\r\n                                }\r\n                            }\r\n                        }\r\n                    },\r\n                    \"Charge\": {\r\n                        \"ChargeEntry\": {\r\n                            \"ChargeID\": \"1\",\r\n                            \"ChargeDate\": \"2019-10-23\",\r\n                            \"RegisteredCharge\": {\r\n                                \"MultipleTitleIndicator\": \"MoreThan2\",\r\n                                \"EntryDetails\": {\r\n                                    \"EntryNumber\": \"19\",\r\n                                    \"EntryText\": \"REGISTERED CHARGE dated 23 October 2019 affecting also other titles.NOTE: Charge reference AV152082.\",\r\n                                    \"RegistrationDate\": \"2019-11-22\",\r\n                                    \"SubRegisterCode\": \"C\",\r\n                                    \"Infills\": {\r\n                                        \"ChargeDate\": \"2019-10-23\",\r\n                                        \"TitleNumber\": \"AV152082\"\r\n                                    }\r\n                                }\r\n                            },\r\n                            \"ChargeProprietor\": {\r\n                                \"ChargeeParty\": {\r\n                                    \"Organization\": {\r\n                                        \"Name\": \"Lloyds Bank Plc\"\r\n                                    },\r\n                                    \"Address\": {\r\n                                        \"PostcodeZone\": {\r\n                                            \"Postcode\": \"EC2V 7HN\"\r\n                                        },\r\n                                        \"AddressLine\": {\r\n                                            \"Line\": [\r\n                                                \"25 Gresham Street\",\r\n                                                \"London\"\r\n                                            ]\r\n                                        }\r\n                                    }\r\n                                },\r\n                                \"EntryDetails\": {\r\n                                    \"EntryNumber\": \"20\",\r\n                                    \"EntryText\": \"Proprietor: LLOYDS BANK PLC (Co. Regn. No. 00002065) of 25 Gresham Street, London EC2V 7HN.\",\r\n                                    \"RegistrationDate\": \"2019-11-22\",\r\n                                    \"SubRegisterCode\": \"C\"\r\n                                }\r\n                            }\r\n                        }\r\n                    },\r\n                    \"AgreedNotice\": {\r\n                        \"AgreedNoticeEntry\": [\r\n                            {\r\n                                \"EntryDetails\": {\r\n                                    \"EntryNumber\": \"10\",\r\n                                    \"EntryText\": \"Agreement for lease dated 5 August 1997 in favour of BP Oil UK Limited and Mobil Oil Company Limited. NOTE: Copy filed under ON195336.\",\r\n                                    \"SubRegisterCode\": \"C\"\r\n                                }\r\n                            },\r\n                            {\r\n                                \"EntryDetails\": {\r\n                                    \"EntryNumber\": \"14\",\r\n                                    \"EntryText\": \"An Agreement dated 28 September 2000 made between (1) Welcome Break Group Limited and (2) National Transcommunications Limited relates to the grant of leases of telecommunications sites. NOTE: Copy filed under GR114059.\",\r\n                                    \"SubRegisterCode\": \"C\"\r\n                                }\r\n                            }\r\n                        ]\r\n                    },\r\n                    \"RentCharge\": {\r\n                        \"EntryDetails\": [\r\n                            {\r\n                                \"EntryNumber\": \"2\",\r\n                                \"EntryText\": \"The land edged blue on the title plan is with other land subject to a perpetual yearly rentcharge of �800 created by a Deed dated 23 October 1858 made between (1) The Wycombe Railway Company and (2) William Terry the elder mentioned in the Conveyance dated 13 February 1970 referred to below, and to a perpetual yearly rentcharge of �340 created by a Deed dated 3 April 1862 made between (1) The Wycombe Railway Company (2) William Terry the elder and (3) William Terry the younger.The Conveyance dated 13 February 1970 referred to below contains a covenant of indemnity from the said rentcharge.NOTE 1: No other particulars of the rentcharge created by the Deed dated 23 October 1858 were supplied on first registration NOTE 2: Copy filed under ON122595.\",\r\n                                \"SubRegisterCode\": \"C\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"13\",\r\n                                \"EntryText\": \"The land is subject to a perpetual yearly rentcharge of �1 created by a Deed of Grant dated 8 January 1998 made between (1) The Secretary of State for Transport and (2) Welcome Break Group Limited.NOTE: Rentcharge registered under ON202780.\",\r\n                                \"SubRegisterCode\": \"C\"\r\n                            }\r\n                        ]\r\n                    },\r\n                    \"DocumentDetails\": {\r\n                        \"Document\": [\r\n                            {\r\n                                \"DocumentType\": \"20\",\r\n                                \"DocumentDate\": \"2000-09-28\",\r\n                                \"EntryNumber\": \"C14\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"GR114059\",\r\n                                \"RegisterDescription\": \"Agreement\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"20\",\r\n                                \"DocumentDate\": \"1997-08-05\",\r\n                                \"EntryNumber\": \"C10\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Agreement for lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"50\",\r\n                                \"DocumentDate\": \"2019-10-23\",\r\n                                \"EntryNumber\": \"C21\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"AV152082\",\r\n                                \"RegisterDescription\": \"Charge\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"60\",\r\n                                \"DocumentDate\": \"1970-02-13\",\r\n                                \"EntryNumber\": \"C2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Conveyance\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"60\",\r\n                                \"DocumentDate\": \"1970-02-13\",\r\n                                \"EntryNumber\": \"C2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Conveyance\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"60\",\r\n                                \"DocumentDate\": \"1970-02-13\",\r\n                                \"EntryNumber\": \"C6\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Conveyance\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1858-10-23\",\r\n                                \"EntryNumber\": \"C2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1858-10-23\",\r\n                                \"EntryNumber\": \"C2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1862-04-03\",\r\n                                \"EntryNumber\": \"C2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON122595\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"2004-06-08\",\r\n                                \"EntryNumber\": \"A9\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"2017-10-30\",\r\n                                \"EntryNumber\": \"A12\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"2016-01-26\",\r\n                                \"EntryNumber\": \"C17\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON323809\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1997-02-14\",\r\n                                \"EntryNumber\": \"C9\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1998-04-23\",\r\n                                \"EntryNumber\": \"C11\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"2017-10-31\",\r\n                                \"EntryNumber\": \"C18\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Deed\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"70\",\r\n                                \"DocumentDate\": \"1954-12-16\",\r\n                                \"EntryNumber\": \"C5\",\r\n                                \"PlanOnlyIndicator\": \"true\",\r\n                                \"FiledUnder\": \"ON102525\",\r\n                                \"RegisterDescription\": \"Deed of Grant\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"90\",\r\n                                \"DocumentDate\": \"2003-03-20\",\r\n                                \"EntryNumber\": \"A5\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"RegisterDescription\": \"Lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"90\",\r\n                                \"DocumentDate\": \"2003-07-30\",\r\n                                \"EntryNumber\": \"L1\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON243022\",\r\n                                \"RegisterDescription\": \"Lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"90\",\r\n                                \"DocumentDate\": \"2016-01-26\",\r\n                                \"EntryNumber\": \"L2\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON323809\",\r\n                                \"RegisterDescription\": \"Lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"90\",\r\n                                \"DocumentDate\": \"2003-07-30\",\r\n                                \"EntryNumber\": \"C17\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON323809\",\r\n                                \"RegisterDescription\": \"Lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"90\",\r\n                                \"DocumentDate\": \"2016-01-26\",\r\n                                \"EntryNumber\": \"C16\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"RegisterDescription\": \"Lease\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"130\",\r\n                                \"DocumentDate\": \"1991-11-19\",\r\n                                \"EntryNumber\": \"C7\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON146304\",\r\n                                \"RegisterDescription\": \"Transfer\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"130\",\r\n                                \"DocumentDate\": \"1997-02-14\",\r\n                                \"EntryNumber\": \"C8\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Transfer\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"130\",\r\n                                \"DocumentDate\": \"1998-12-07\",\r\n                                \"EntryNumber\": \"C12\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON210938\",\r\n                                \"RegisterDescription\": \"Transfer\"\r\n                            },\r\n                            {\r\n                                \"DocumentType\": \"130\",\r\n                                \"DocumentDate\": \"1997-02-14\",\r\n                                \"EntryNumber\": \"A4\",\r\n                                \"PlanOnlyIndicator\": \"false\",\r\n                                \"FiledUnder\": \"ON195336\",\r\n                                \"RegisterDescription\": \"Transfer\"\r\n                            }\r\n                        ]\r\n                    },\r\n                    \"UnidentifiedEntry\": {\r\n                        \"EntryDetails\": {\r\n                            \"EntryNumber\": \"1\",\r\n                            \"EntryText\": \"Part of the land is affected by the right to maintain and use in accordance with the provisions of Section 12 of the Registered Land and War Works Act 1948 a government oil pipeline and works accessway thereto, the approximate position of such line and works being shown by a mauve line on the title plan.\",\r\n                            \"SubRegisterCode\": \"C\"\r\n                        }\r\n                    }\r\n                },\r\n                \"OCRegisterData\": {\r\n                    \"PropertyRegister\": {\r\n                        \"DistrictDetails\": {\r\n                            \"EntryText\": \"OXFORDSHIRE : SOUTH OXFORDSHIRE\"\r\n                        },\r\n                        \"RegisterEntry\": {\r\n                            \"EntryNumber\": \"12\",\r\n                            \"EntryDate\": \"2017-11-27\",\r\n                            \"EntryType\": \"Entries Qualifying Lease - Deed\",\r\n                            \"EntryText\": \"NOTE: Copy Deed filed.\"\r\n                        }\r\n                    },\r\n                    \"ProprietorshipRegister\": {\r\n                        \"RegisterEntry\": [\r\n                            {\r\n                                \"EntryNumber\": \"1\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Proprietor\",\r\n                                \"EntryText\": \"PROPRIETOR: WELCOME BREAK GROUP LIMITED (Co. Regn. No. 3147949) of 2 Vantage Court, Tickford Street, Newport Pagnell MK16 9EZ.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"2\",\r\n                                \"EntryDate\": \"2019-11-22\",\r\n                                \"EntryType\": \"Charge Restriction - B Register\",\r\n                                \"EntryText\": \"RESTRICTION: No disposition of the registered estate by the proprietor of the registered estate or by the proprietor of any registered charge, not being a charge registered before the entry of this restriction, is to be registered without a written consent signed by the proprietor for the time being of the Charge dated 23 October 2019 in favour of Lloyds Bank Plc referred to in the Charges Register.\"\r\n                            }\r\n                        ]\r\n                    },\r\n                    \"ChargesRegister\": {\r\n                        \"RegisterEntry\": [\r\n                            {\r\n                                \"EntryNumber\": \"1\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryText\": \"Part of the land is affected by the right to maintain and use in accordance with the provisions of Section 12 of the Registered Land and War Works Act 1948 a government oil pipeline and works accessway thereto, the approximate position of such line and works being shown by a mauve line on the title plan.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"2\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Rentcharges - Deed\",\r\n                                \"EntryText\": \"NOTE 2: Copy filed under ON122595.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"3\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Restrictive Covenants/Stipulations - Deed\",\r\n                                \"EntryText\": \"(5)  To maintain repair and keep up the Sub-Purchaser's share of all party walls fences supports drains gutters and gullies enjoyed or used by the property or any part thereof in common with adjoining or adjacent properties to the satisfaction of the owner or owners of such adjoining properties for the time being when called upon to do so and to pay its fair contribution therefor.\\\"\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"4\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"Subject also to all rights of light air way water eavesdrop drainage and party walls (if any) affecting the same and Subject to the covenant hereinafter contained.\\\"\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"5\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Copy plan filed under ON102525.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"6\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Restrictive Covenants/Stipulations - Deed\",\r\n                                \"EntryText\": \"NOTE: Original filed under ON122595.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"7\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Original Transfer filed under ON146304.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"8\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Original filed under ON195336.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"9\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Original filed under ON195336.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"10\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Agreed Notice/Section 49 - Deed\",\r\n                                \"EntryText\": \"NOTE: Copy filed under ON195336.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"11\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Copy filed under ON195336.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"12\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Original filed under ON210938.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"13\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Rentcharges - Noted - Deed\",\r\n                                \"EntryText\": \"NOTE: Rentcharge registered under ON202780.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"14\",\r\n                                \"EntryDate\": \"2003-04-01\",\r\n                                \"EntryType\": \"Agreed Notice/Section 49 - Deed\",\r\n                                \"EntryText\": \"NOTE: Copy filed under GR114059.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"15\",\r\n                                \"EntryDate\": \"2003-09-24\",\r\n                                \"EntryType\": \"Lease Related - Register\",\r\n                                \"EntryText\": \"The leases grant and reserve easements as therein mentioned.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"16\",\r\n                                \"EntryDate\": \"2016-02-02\",\r\n                                \"EntryType\": \"Restrictive Covenants/Stipulations - Deed\",\r\n                                \"EntryText\": \"The lease of a telecommunication site dated 26 January 2016 made between (1) Welcome Break Group Limited  (Lessor) and (2) Arquiva Limited  (Lessee) referred to in the schedule of leases hereto contains restrictive covenants by the landlord.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"17\",\r\n                                \"EntryDate\": \"2016-05-26\",\r\n                                \"EntryType\": \"Lease Related - Deed\",\r\n                                \"EntryText\": \"NOTE: Copy Deed filed under ON323809.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"18\",\r\n                                \"EntryDate\": \"2017-11-27\",\r\n                                \"EntryType\": \"Subjective Easements - C Register\",\r\n                                \"EntryText\": \"NOTE: Copy filed under ON195336\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"19\",\r\n                                \"EntryDate\": \"2019-11-22\",\r\n                                \"EntryType\": \"Registered Charges\",\r\n                                \"EntryText\": \"NOTE: Charge reference AV152082.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"20\",\r\n                                \"EntryDate\": \"2019-11-22\",\r\n                                \"EntryType\": \"Chargee\",\r\n                                \"EntryText\": \"Proprietor: LLOYDS BANK PLC (Co. Regn. No. 00002065) of 25 Gresham Street, London EC2V 7HN.\"\r\n                            },\r\n                            {\r\n                                \"EntryNumber\": \"21\",\r\n                                \"EntryDate\": \"2019-11-22\",\r\n                                \"EntryType\": \"Obligation\",\r\n                                \"EntryText\": \"The proprietor of the Charge dated 23 October 2019 referred to above is under an obligation to make further advances. These advances will have priority to the extent afforded by section 49(3) Land Registration Act 2002.\"\r\n                            },\r\n                            {\r\n                                \"ScheduleType\": \"SCHEDULE OF NOTICES OF LEASE\",\r\n                                \"ScheduleEntry\": {\r\n                                    \"EntryNumber\": \"2\",\r\n                                    \"EntryType\": \"Schedule of Notices of Leases\",\r\n                                    \"EntryText\": \"NOTE: See entry in the Charges Register relating to landlords restrictive covenants\"\r\n                                }\r\n                            }\r\n                        ]\r\n                    }\r\n                }\r\n            }\r\n        }\r\n    },\r\n    \"links\": [\r\n        {\r\n            \"href\": \"https://dev20.tmgroup.technology/propertysearches/orders/20282818/Results/Zip\",\r\n            \"name\": \"ZippedResults\",\r\n            \"type\": \"GET\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"fd8b246c-c901-4b00-878d-42dd9cf36653"}],"id":"41776fe7-c270-41dc-a268-31d0e299d937","description":"<p>These APIs provide direct access to Land Registry searches to provide additional information about a property.</p>\n","_postman_id":"41776fe7-c270-41dc-a268-31d0e299d937"}],"event":[{"listen":"prerequest","script":{"id":"e7af3222-2e89-4c42-9fa9-a75f32afc49b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"efbc161f-6f82-4cf8-ae12-9e4d3cd7251a","type":"text/javascript","exec":[""]}}],"variable":[{"key":"BaseEnvironmentURL","value":"demo20"},{"key":"bearerToken","value":"Generated_Token"},{"key":"projectId","value":"1000001"},{"key":"orderItemId","value":"1234567"},{"key":"UPRN","value":"100031060071"}]}