{"info":{"_postman_id":"51624174-aff0-4f96-811b-5f335e921900","name":"Landlord Client API","description":"<html><head></head><body><p>Welcome to Kato API. Here are some pre-made requests for you to explore the API using <a href=\"https://getpostman.com\">Postman</a></p>\n<h1 id=\"api-keys\">API Keys</h1>\n<p>You'll need API keys to authenticate with the Kato API.<br>These are provided to you by us, please contact <a href=\"https://mailto:help@kato.app\">help@kato.app</a> if you have lost or require new keyss.</p>\n<p>We provide you with a specific <code>client id</code> and <code>client secret</code> for your organisation.<br>Think of these like a password:</p>\n<ul>\n<li><p>Store it securely.</p>\n</li>\n<li><p>Don't share it with anyone outside of your organisation.</p>\n</li>\n<li><p>Don't put it in any code on your website or in a URL that someone could find.</p>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p>We implement <code>OAuth 2.0</code> in order to provide a secure API. This means all our end points are secured and can only be accessed with calls that are authenticated with OAuth2 tokens.<br>In order to obtain OAuth2 tokens, you must first authenticate with our authentication endpoint.</p>\n<p>The following image shows the flow you need to implement in order to gain access to your data via the Kato API:</p>\n<img src=\"https://agents-society-assets.s3.eu-west-1.amazonaws.com/oauth-flow.png\">\n\n<h4 id=\"1-token-request\">1. Token Request</h4>\n<p>The <code>/oauth/token</code> end point will respond with an <code>access_token</code> that can be used to access the Kato API.</p>\n<ul>\n<li><p>The request is made <code>client_id</code> and <code>client_secret</code> in the body</p>\n</li>\n<li><p>An access_token is generated and returned.</p>\n</li>\n<li><p>The access_token can be used to make requests to the Kato API</p>\n</li>\n</ul>\n<h4 id=\"2-api-requests\">2. API requests</h4>\n<p>Once you have an <code>access_token</code> you can use this to make subsequent api requests.</p>\n<ul>\n<li><p>The 'Authorization' header should be used to send the Bearer token</p>\n</li>\n<li><p>An example header would like something like this: <code>Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGci...</code></p>\n</li>\n<li><p>Please <em>DO NOT</em> send through your client_secret or client_id in these requests.</p>\n</li>\n</ul>\n<h4 id=\"3-expired-access_token\">3. Expired access_token</h4>\n<p>Access tokens limit the risk of your <code>client_secret</code> becoming compromised.<br>However, if the access_tokens life span is too long it introduces risk that the access_token may be compromised.<br>As such the access tokens expire after 14 days.</p>\n<ul>\n<li><p>When you use a token that has expired the API will respond with a 401 unauthorised TBD...</p>\n</li>\n<li><p>When an access token expires please request a new token.</p>\n</li>\n</ul>\n<h1 id=\"environment\">Environment</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Client API Url</th>\n<th>Web App Url</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sandbox</td>\n<td><a href=\"https://landlord-api.kato-sandbox.app\">https://landlord-api.kato-sandbox.app</a></td>\n<td><a href=\"https://landlord.kato-sandbox.app\">https://landlord.kato-sandbox.app</a></td>\n</tr>\n<tr>\n<td>Production</td>\n<td><a href=\"https://landlord-api.kato.app\">https://landlord-api.kato.app</a></td>\n<td><a href=\"https://landlord.kato.app\">https://landlord.kato.app</a></td>\n</tr>\n</tbody>\n</table>\n</div><p>Notes:</p>\n<ul>\n<li><p>Your platform will have separate API keys for each environment.</p>\n</li>\n<li><p>Data created or modified in each environment will not affect the other.</p>\n</li>\n<li><p>Data cannot be transferred from one environment to the other.</p>\n</li>\n</ul>\n<h1 id=\"versions\">Versions</h1>\n<p>If any breaking changes are made on an endpoint, then those change will be rolled out in a new version of the API.<br>The version of an endpoint to use must be sent by adding a prefixed path to the api:</p>\n<ul>\n<li><p>{{base-api-url}}/v1/...</p>\n</li>\n<li><p>{{base-api-url}}/v2/...</p>\n</li>\n</ul>\n<h1 id=\"deprecation\">Deprecation</h1>\n<p>Deprecated endpoints are marked with \"- Deprecated\".<br>The documentation for these endpoints will indicate when the endpoint was deprecated, as well as the proper alternative endpoint to use.</p>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<ul>\n<li><p>Packages begin at 60 requests per minute. Please discuss this with your account manager if you need more.</p>\n</li>\n<li><p>If you have exceeded your quota, a \"429: Too Many Requests\" response will be received.</p>\n</li>\n</ul>\n<h1 id=\"api-pricing\">API Pricing</h1>\n<p>Please contact us here to discuss your needs further at <a href=\"https://mailto:help@kato.app\">help@kato.app</a></p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>When querying a 'List' endpoint, the response will be paginated for performance.<br>If for example there are 20,000 results, pagination allows the results to be returned a page at a time.</p>\n<p>You can use the <code>limit</code> parameter to change how many results are returned per page.<br>The default page size is specified varies depending on the end point requested.</p>\n<p>You can use the <code>page</code> parameter to select which page you want to see.<br>For example, if the limit is 50, page 1 would return results 1 to 50, page 2 would return results 51 to 52 etc.</p>\n<p>At the bottom of each response you will see a <code>pagination</code> block providing a summary of the data you have requested. This appears as follows:</p>\n<ul>\n<li><p><code>from</code>: First result this page</p>\n</li>\n<li><p><code>to</code>: Last result this page</p>\n</li>\n<li><p><code>total</code>: Count of results in total</p>\n</li>\n<li><p><code>count</code>: Count of results this page</p>\n</li>\n<li><p><code>per_page</code>: Number of results per page (see <code>limit</code> param)</p>\n</li>\n<li><p><code>current_page</code>: Current page number (see <code>page</code> param)</p>\n</li>\n<li><p><code>total_pages</code>: Total number of pages</p>\n</li>\n<li><p><code>links</code>:</p>\n<ul>\n<li><p><code>first</code>: Navigate to the first page</p>\n</li>\n<li><p><code>previous</code>: Navigate to the previous page</p>\n</li>\n<li><p><code>fastback</code>: Navigate 10 pages back</p>\n</li>\n<li><p><code>next</code>: Navigate to the next page</p>\n</li>\n<li><p><code>fastforward</code>: Navigate 10 pages forward</p>\n</li>\n<li><p><code>last</code>: Navigate to the last page</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Take careful note of the <code>total_pages</code> count. If there are more than one, simply update the request to fetch page 2 of the results.</p>\n<p>When using the links provided, don't forget to append any additional search params.</p>\n<h1 id=\"questionscommentssuggestions\">Questions/Comments/Suggestions</h1>\n<p>If you have any questions or comments, please let us know at <a href=\"https://mailto:help@kato.app\">help@kato.app</a></p>\n<h1 id=\"changelog\">Changelog</h1>\n<h5 id=\"15-aug-2025\">15-Aug-2025</h5>\n<ul>\n<li>Initial Landlord API Launch</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Keys","slug":"api-keys"},{"content":"Authentication","slug":"authentication"},{"content":"Environment","slug":"environment"},{"content":"Versions","slug":"versions"},{"content":"Deprecation","slug":"deprecation"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"API Pricing","slug":"api-pricing"},{"content":"Pagination","slug":"pagination"},{"content":"Questions/Comments/Suggestions","slug":"questionscommentssuggestions"},{"content":"Changelog","slug":"changelog"}],"owner":"2269173","collectionId":"51624174-aff0-4f96-811b-5f335e921900","publishedId":"2sB3BHk8k5","public":true,"customColor":{"top-bar":"ff4a6b","right-sidebar":"303030","highlight":"ff4a6b"},"publishDate":"2025-08-15T16:25:11.000Z"},"item":[{"name":"Authentication","item":[{"name":"Client Access Token Request","event":[{"listen":"test","script":{"id":"1a62ac92-b078-4514-8518-29beee5517b5","exec":["const jsonData = JSON.parse(responseBody);","","if (jsonData && jsonData.access_token) {","   pm.environment.set(\"client_access_token\", jsonData.access_token);","}"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"30420f42-3058-4b34-b645-4f4a39162dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text","description":"<p>This should always be client_credentials (other options are not available on the client api)</p>\n"},{"key":"client_id","value":"{{client_id}}","type":"text","description":"<p>Client ID - Provided by AgentsInsight</p>\n"},{"key":"client_secret","value":"{{client_secret}}","type":"text","description":"<p>Client Secret - Provided by AgentsInsight</p>\n"},{"key":"scope","value":"*","type":"text","description":"<p>This should always be set to *</p>\n"}]},"url":"{{landlord_base_url}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{landlord_base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5b636152-5659-49c4-aa29-254bb48f0c50","name":"Client Access Token Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"your-client-id-here","type":"text"},{"key":"client_secret","value":"your-client-secret-here","type":"text"},{"key":"scope","value":"*","type":"text"}]},"url":"https://client-api.agents-society-sandbox.com/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Date","value":"Tue, 08 Jun 2021 06:22:38 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 1296000,\n    \"access_token\": \"xxxx\"\n}"}],"_postman_id":"30420f42-3058-4b34-b645-4f4a39162dbb"}],"id":"b7dd8180-0140-428a-a25d-f083be7cd9f2","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4793e3b2-8106-4456-a06a-924be65b42a0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"95f0765f-bbde-492a-932e-45e926592b54","type":"text/javascript","exec":[""]}}],"_postman_id":"b7dd8180-0140-428a-a25d-f083be7cd9f2","description":""},{"name":"V1","item":[{"name":"Disposals","item":[{"name":"List Disposals","id":"4887f491-7592-4e23-bc70-f1e55bed0c19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/disposals?page=1&per_page=25&status=2&sort=updated_at&order=desc","description":"<p>Retrieve a paginated list of disposals for the authenticated landlord organisation</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","disposals"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page (max 100)</p>\n","type":"text/plain"},"key":"per_page","value":"25"},{"disabled":true,"description":{"content":"<p>Search term for disposal details</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Filter by disposal status</p>\n","type":"text/plain"},"key":"status","value":"2"},{"description":{"content":"<p>Sort field</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"order","value":"desc"}],"variable":[]}},"response":[{"id":"281877c6-7eeb-43b7-b1b0-163067da017a","name":"List Disposals - Example Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/disposals?page=1&per_page=25","path":["disposals"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n        \"id\": 12345,\n        \"address\": {\n            \"line_1\": \"123 Commercial Street\",\n            \"line_2\": \"Suite 4B\",\n            \"town\": \"London\",\n            \"county\": \"Greater London\",\n            \"postcode\": \"EC1A 1AA\",\n            \"country\": \"United Kingdom\"\n        },\n        \"agents\": [\n            {\n                \"name\": \"John Smith (Company name)\",\n            }\n        ],\n        \"assigned_users\":  [\n            {\n                \"name\": \"John Smith\",\n                \"email\": \"john.smith@example.com\",\n                \"phone\": \"+44 20 7123 4567\"\n            },\n            {\n                \"name\": \"John Doe\",\n                \"email\": \"doe.john@example.com\",\n                \"phone\": \"+44 20 7123 4567\"\n            }\n        ],\n        \"api_locked\": false,\n        \"building_types\": [\"office\"],\n        \"for_sale\": false,\n        \"image\": \"https://cdn.example.com/property-image.jpg\",\n        \"is_investment_sale\": false,\n        \"is_portfolio\": false,\n        \"lat\": 51.5074,\n        \"lng\": -0.1278,\n        \"lot_size\": \"£200 per sq ft\",\n        \"price_fields\": {\n            \"qualifier\": 4,\n            \"value\": 1200,\n            \"suffix\": \"\",\n            \"poa\": false,\n            \"currency\": \"gbp\"\n        },\n        \"price\": \"£500,000\",\n        \"rent_fields\": {\n            \"prefix\": \"\",\n            \"from\": null,\n            \"to\": null,\n            \"metric\": \"sqft\",\n            \"frequency\": \"per_annum\",\n            \"suffix\": \"\",\n            \"from_sqft\": null,\n            \"to_sqft\": null,\n            \"rates\": \"na\",\n            \"currency\": \"gbp\"\n        },\n        \"rent\": \"£25,000 per annum\",\n        \"size_fields\": {\n            \"from\": null,\n            \"to\": null,\n            \"value\": null,\n            \"metric\": \"sqft\",\n            \"measure\": \"\",\n            \"from_sqft\": null,\n            \"to_sqft\": null\n        },\n        \"size\": \"2,500 sq ft\",\n        \"status\": 2,\n        \"status_string\": \"Available\",\n        \"to_let\": true,\n        \"created_at\": \"2024-01-15 10:30:00\",\n        \"updated_at\": \"2024-01-20 14:45:00\"\n    }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"per_page\": 25,\n        \"total\": 150,\n        \"last_page\": 6\n    },\n    \"links\": {\n        \"first\": \"{{landlord_base_url}}/disposals?page=1\",\n        \"last\": \"{{landlord_base_url}}/disposals?page=6\",\n        \"prev\": null,\n        \"next\": \"{{landlord_base_url}}/disposals?page=2\"\n    }\n}"}],"_postman_id":"4887f491-7592-4e23-bc70-f1e55bed0c19"},{"name":"Show Disposal","id":"68e49019-1e46-4698-8a37-1ceb357fe958","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/disposals/:id","description":"<p>Retrieve detailed information for a specific disposal</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","disposals",":id"],"host":["{{landlord_base_url}}"],"query":[],"variable":[{"description":{"content":"<p>Disposal ID</p>\n","type":"text/plain"},"type":"any","value":"308254","key":"id"}]}},"response":[{"id":"72809280-b53d-4f3a-b423-764239514068","name":"Show Disposal - Example Response","originalRequest":{"method":"GET","header":[],"url":"/disposals/12345"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12345,\n    \"address\": {\n        \"line_1\": \"123 Commercial Street\",\n        \"line_2\": \"Suite 4B\",\n        \"town\": \"London\",\n        \"county\": \"Greater London\",\n        \"postcode\": \"EC1A 1AA\",\n        \"country\": \"United Kingdom\"\n    },\n    \"agents\": [\n        {\n            \"name\": \"John Smith (Company name)\",\n        }\n    ],\n    \"assigned_users\":  [\n        {\n            \"name\": \"John Smith\",\n            \"email\": \"john.smith@example.com\",\n            \"phone\": \"+44 20 7123 4567\"\n        },\n        {\n            \"name\": \"John Doe\",\n            \"email\": \"doe.john@example.com\",\n            \"phone\": \"+44 20 7123 4567\"\n        }\n    ],\n    \"api_locked\": false,\n    \"building_types\": [\"office\"],\n    \"for_sale\": false,\n    \"image\": \"https://cdn.example.com/property-image.jpg\",\n    \"is_investment_sale\": false,\n    \"is_portfolio\": false,\n    \"lat\": 51.5074,\n    \"lng\": -0.1278,\n    \"lot_size\": \"£200 per sq ft\",\n    \"price_fields\": {\n        \"qualifier\": 4,\n        \"value\": 1200,\n        \"suffix\": \"\",\n        \"poa\": false,\n        \"currency\": \"gbp\"\n    },\n    \"price\": \"£500,000\",\n    \"rent_fields\": {\n        \"prefix\": \"\",\n        \"from\": null,\n        \"to\": null,\n        \"metric\": \"sqft\",\n        \"frequency\": \"per_annum\",\n        \"suffix\": \"\",\n        \"from_sqft\": null,\n        \"to_sqft\": null,\n        \"rates\": \"na\",\n        \"currency\": \"gbp\"\n    },\n    \"rent\": \"£25,000 per annum\",\n    \"size_fields\": {\n        \"from\": null,\n        \"to\": null,\n        \"value\": null,\n        \"metric\": \"sqft\",\n        \"measure\": \"\",\n        \"from_sqft\": null,\n        \"to_sqft\": null\n    },\n    \"size\": \"2,500 sq ft\",\n    \"status\": 2,\n    \"status_string\": \"Available\",\n    \"to_let\": true,\n    \"created_at\": \"2024-01-15 10:30:00\",\n    \"updated_at\": \"2024-01-20 14:45:00\"\n}"}],"_postman_id":"68e49019-1e46-4698-8a37-1ceb357fe958"},{"name":"Disposal - Interest Schedule","id":"f2379ed9-2df1-47e4-b47b-d3b55f5c0b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/disposals/:id/interest?page=1&per_page=10&include_hidden=false&include_discounted=true&sort=updated_at","description":"<p>Retrieve the interest schedule (interested parties) for a specific disposal</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","disposals",":id","interest"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"per_page","value":"10"},{"disabled":true,"description":{"content":"<p>Comma-separated list of specific interest IDs</p>\n","type":"text/plain"},"key":"ids","value":"5121296"},{"description":{"content":"<p>Include interests marked as hidden</p>\n","type":"text/plain"},"key":"include_hidden","value":"false"},{"description":{"content":"<p>Include interests marked as discounted</p>\n","type":"text/plain"},"key":"include_discounted","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by interest status</p>\n","type":"text/plain"},"key":"status","value":"6"},{"description":{"content":"<p>Sort field</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[{"description":{"content":"<p>Disposal ID</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"f2379ed9-2df1-47e4-b47b-d3b55f5c0b16"},{"name":"Disposal - Activity Log","id":"ac18da2c-c16c-4ecc-848f-cffa8c1dd2d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/disposals/:id/activity?page=1&per_page=6&type=comment&sort=desc","description":"<p>Retrieve activity log entries for a specific disposal with pagination</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","disposals",":id","activity"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"per_page","value":"6"},{"description":{"content":"<p>Filter by activity type</p>\n","type":"text/plain"},"key":"type","value":"comment"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sort","value":"desc"}],"variable":[{"description":{"content":"<p>Disposal ID</p>\n","type":"text/plain"},"type":"any","value":"308254","key":"id"}]}},"response":[{"id":"b72bc0ea-c711-4fa4-b651-d3fc1ba89dcc","name":"Disposal - Activity Log - Example Response","originalRequest":{"method":"GET","header":[],"url":"/disposals/12345/activity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 98765,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"comment\",\n      \"description\": \"Added comment to interest record\",\n      \"created_at\": \"2024-01-20T14:45:00Z\"\n    },\n    {\n      \"id\": 98766,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"viewing\",\n      \"description\": \"Viewing scheduled\",\n      \"created_at\": \"2024-01-22T09:15:00Z\"\n    },\n    {\n      \"id\": 98767,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"status_update\",\n      \"description\": \"Interest status updated\",\n      \"created_at\": \"2024-01-23T11:30:00Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 45,\n    \"last_page\": 2\n  },\n  \"links\": {\n    \"first\": \"{{landlord_base_url}}/disposals/12345/activity?page=1\",\n    \"last\": \"{{landlord_base_url}}/disposals/12345/activity?page=2\",\n    \"prev\": null,\n    \"next\": \"{{landlord_base_url}}/disposals/12345/activity?page=2\"\n  }\n}"}],"_postman_id":"ac18da2c-c16c-4ecc-848f-cffa8c1dd2d2"}],"id":"7c461d58-6c8c-4ebf-8422-7e489ed7191e","description":"<p>Operations related to property disposals</p>\n","_postman_id":"7c461d58-6c8c-4ebf-8422-7e489ed7191e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}}},{"name":"Interest","item":[{"name":"List Interest","id":"5b59437d-bf21-482d-bac8-21870abc1ffe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/interest?page=1&per_page=10&disposal_id=308465&sort=updated_at&order=desc&ids=5121296","description":"<p>Retrieve a paginated list of interest records (schedule matches)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","interest"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"per_page","value":"10"},{"description":{"content":"<p>Filter by disposal ID</p>\n","type":"text/plain"},"key":"disposal_id","value":"308465"},{"disabled":true,"description":{"content":"<p>Filter by interest status</p>\n","type":"text/plain"},"key":"status","value":"6"},{"description":{"content":"<p>Sort field</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"order","value":"desc"},{"key":"ids","value":"5121296"}],"variable":[]}},"response":[{"id":"e827e1a4-d1b5-4a74-ad9b-055fb859934e","name":"List Interest - Example Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{landlord_base_url}}/interest?disposal_id=12345","host":["{{landlord_base_url}}"],"path":["interest"],"query":[{"key":"disposal_id","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 67890,\n      \"disposal_id\": 12345,\n      \"organisation_id\": 789,\n      \"status\": 3,\n      \"status_string\": \"Viewing Booked\",\n      \"fav\": false,\n      \"interest_owner_organisation_id\": 789,\n      \"interest_owner_user_id\": 456,\n      \"discounted_reason\": null,\n      \"discounted_reason_string\": null,\n      \"record_owner\": \"Jane Doe\",\n      \"hidden\": false,\n      \"sort_order\": 1,\n      \"interest_values\": {\n        \"agent_company\": \"Knight Frank\",\n        \"agent_contact\": \"Sarah Johnson\",\n        \"agent_contact_email\": \"sarah.johnson@knightfrank.com\",\n        \"agent_contact_mobile\": \"+44 7700 123456\",\n        \"agent_contact_telephone\": \"+44 20 7629 8171\",\n        \"assignee\": \"Jane Doe\",\n        \"comments\": [\n          {\n            \"id\": 1001,\n            \"text\": \"15 Jan - Client very interested, booking viewing for next week\",\n            \"user_id\": 456,\n            \"user_name\": \"Jane Doe\",\n            \"created_at\": \"2024-01-15T14:30:00Z\"\n          }\n        ],\n        \"completed_date\": null,\n        \"current_tenancy\": \"Available immediately\",\n        \"date_of_requirement\": \"10 Jan\",\n        \"investment_lot_size\": null,\n        \"investment_lot_size_from\": null,\n        \"investment_lot_size_to\": null,\n        \"investment_minimum_net_yield\": null,\n        \"investment_profile\": null,\n        \"investor\": \"Acme Corporation Ltd\",\n        \"lease_expiry\": null,\n        \"match_created\": \"15 Jan\",\n        \"match_demise\": \"All Availability\",\n        \"matched_by\": \"Jane Doe\",\n        \"next_lease_break\": null,\n        \"price_from\": null,\n        \"price_to\": null,\n        \"property_type\": \"Office\",\n        \"rent_from\": \"£25.00 psf\",\n        \"rent_metric\": \"per sq ft per annum\",\n        \"rent_to\": \"£35.00 psf\",\n        \"requirement_created\": \"10 Jan\",\n        \"requirement_status\": \"Active\",\n        \"requirement_title\": \"Central London Office Space Requirement\",\n        \"requirement_updated\": \"15 Jan\",\n        \"sectors\": \"Professional Services, Technology\",\n        \"size_from_sqft\": \"2,000 sq ft\",\n        \"size_to_sqft\": \"3,000 sq ft\",\n        \"size\": \"2,000 - 3,000 sq ft\",\n        \"source\": \"Website Enquiry\",\n        \"submarkets\": \"City of London, Canary Wharf\",\n        \"target_occupancy\": \"Q2 2024\",\n        \"tenant_company\": \"Acme Corporation Ltd\",\n        \"tenant_contact\": \"John Smith\",\n        \"tenant_contact_email\": \"john.smith@acme.com\",\n        \"tenant_contact_mobile\": \"+44 7700 987654\",\n        \"tenant_contact_telephone\": \"+44 20 1234 5678\",\n        \"tenant_name\": \"Acme Corporation Ltd\",\n        \"tenure\": [\"Freehold\", \"Leasehold\"],\n        \"tenure_string\": \"Freehold, Leasehold\",\n        \"viewing_date\": \"18 Jan\",\n        \"viewings_completed\": 1\n      },\n      \"created_at\": \"2024-01-15T10:30:00Z\",\n      \"updated_at\": \"2024-01-20T14:45:00Z\",\n      \"interest_schedule_updated_at\": \"20 Jan\",\n      \"interest_schedule_updated_by\": \"Jane Doe\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 8,\n    \"last_page\": 1\n  },\n  \"links\": {\n    \"first\": \"{{landlord_base_url}}/interest?page=1\",\n    \"last\": \"{{landlord_base_url}}/interest?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"}],"_postman_id":"5b59437d-bf21-482d-bac8-21870abc1ffe"},{"name":"Show Interest","id":"943f8e42-d1af-47cf-bc84-370084cd8ab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/interest/:id","description":"<p>Retrieve detailed information for a specific interest record</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","interest",":id"],"host":["{{landlord_base_url}}"],"query":[],"variable":[{"description":{"content":"<p>Interest Record ID (Schedule Match ID)</p>\n","type":"text/plain"},"type":"any","value":"5047772","key":"id"}]}},"response":[{"id":"18bdab36-f4e7-4f6b-b5ad-1429310779f3","name":"Show Interest - Example Response","originalRequest":{"method":"GET","header":[],"url":"{{landlord_base_url}}/interest/67890"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67890,\n  \"disposal_id\": 12345,\n  \"organisation_id\": 789,\n  \"status\": 3,\n  \"status_string\": \"Viewing Booked\",\n  \"fav\": false,\n  \"interest_owner_organisation_id\": 789,\n  \"interest_owner_user_id\": 456,\n  \"discounted_reason\": null,\n  \"discounted_reason_string\": null,\n  \"record_owner\": \"Jane Doe\",\n  \"hidden\": false,\n  \"sort_order\": 1,\n  \"interest_values\": {\n    \"agent_company\": \"Knight Frank\",\n    \"agent_contact\": \"Sarah Johnson\",\n    \"agent_contact_email\": \"sarah.johnson@knightfrank.com\",\n    \"agent_contact_mobile\": \"+44 7700 123456\",\n    \"agent_contact_telephone\": \"+44 20 7629 8171\",\n    \"assignee\": \"Jane Doe\",\n    \"comments\": [\n      {\n        \"id\": 1001,\n        \"text\": \"15 Jan - Client very interested, booking viewing for next week\",\n        \"user_id\": 456,\n        \"user_name\": \"Jane Doe\",\n        \"created_at\": \"2024-01-15T14:30:00Z\"\n      },\n      {\n        \"id\": 1002,\n        \"text\": \"18 Jan - Viewing completed, positive feedback received\",\n        \"user_id\": 456,\n        \"user_name\": \"Jane Doe\",\n        \"created_at\": \"2024-01-18T16:45:00Z\"\n      }\n    ],\n    \"completed_date\": null,\n    \"current_tenancy\": \"Available immediately\",\n    \"date_of_requirement\": \"10 Jan\",\n    \"investment_lot_size\": null,\n    \"investment_lot_size_from\": null,\n    \"investment_lot_size_to\": null,\n    \"investment_minimum_net_yield\": null,\n    \"investment_profile\": null,\n    \"investor\": \"Acme Corporation Ltd\",\n    \"lease_expiry\": null,\n    \"match_created\": \"15 Jan\",\n    \"match_demise\": \"All Availability\",\n    \"matched_by\": \"Jane Doe\",\n    \"next_lease_break\": null,\n    \"price_from\": null,\n    \"price_to\": null,\n    \"property_type\": \"Office\",\n    \"rent_from\": \"£25.00 psf\",\n    \"rent_metric\": \"per sq ft per annum\",\n    \"rent_to\": \"£35.00 psf\",\n    \"requirement_created\": \"10 Jan\",\n    \"requirement_status\": \"Active\",\n    \"requirement_title\": \"Central London Office Space Requirement\",\n    \"requirement_updated\": \"15 Jan\",\n    \"sectors\": \"Professional Services, Technology\",\n    \"size_from_sqft\": \"2,000 sq ft\",\n    \"size_to_sqft\": \"3,000 sq ft\",\n    \"size\": \"2,000 - 3,000 sq ft\",\n    \"source\": \"Website Enquiry\",\n    \"submarkets\": \"City of London, Canary Wharf\",\n    \"target_occupancy\": \"Q2 2024\",\n    \"tenant_company\": \"Acme Corporation Ltd\",\n    \"tenant_contact\": \"John Smith\",\n    \"tenant_contact_email\": \"john.smith@acme.com\",\n    \"tenant_contact_mobile\": \"+44 7700 987654\",\n    \"tenant_contact_telephone\": \"+44 20 1234 5678\",\n    \"tenant_name\": \"Acme Corporation Ltd\",\n    \"tenure\": [\"Freehold\", \"Leasehold\"],\n    \"tenure_string\": \"Freehold, Leasehold\",\n    \"viewing_date\": \"18 Jan\",\n    \"viewings_completed\": 1\n  },\n  \"created_at\": \"2024-01-15T10:30:00Z\",\n  \"updated_at\": \"2024-01-20T14:45:00Z\",\n  \"interest_schedule_updated_at\": \"20 Jan\",\n  \"interest_schedule_updated_by\": \"Jane Doe\"\n}"}],"_postman_id":"943f8e42-d1af-47cf-bc84-370084cd8ab9"},{"name":"Activity Log","id":"4270750f-7a3a-461b-90c1-d8c61ae04b32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/interest/:id/activity?page=1&per_page=10&type=comment&sort=desc","description":"<p>Retrieve activity log entries for a specific interest record with pagination</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","interest",":id","activity"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"per_page","value":"10"},{"description":{"content":"<p>Filter by activity type</p>\n","type":"text/plain"},"key":"type","value":"comment"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sort","value":"desc"}],"variable":[{"description":{"content":"<p>Interest Record ID</p>\n","type":"text/plain"},"type":"any","value":"5048739","key":"id"}]}},"response":[{"id":"cfb9d261-6c87-49b6-9885-6c01c4c5ec5a","name":"Activity Log - Example Response","originalRequest":{"method":"GET","header":[],"url":"/interest/67890/activity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 98765,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"comment\",\n      \"description\": \"Added comment to interest record\",\n      \"created_at\": \"2024-01-20T14:45:00Z\"\n    },\n    {\n      \"id\": 98766,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"viewing\",\n      \"description\": \"Viewing scheduled\",\n      \"created_at\": \"2024-01-22T09:15:00Z\"\n    },\n    {\n      \"id\": 98767,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"status_update\",\n      \"description\": \"Interest status updated\",\n      \"created_at\": \"2024-01-23T11:30:00Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 12,\n    \"last_page\": 1\n  },\n  \"links\": {\n    \"first\": \"{{landlord_base_url}}/interest/67890/activity?page=1\",\n    \"last\": \"{{landlord_base_url}}/interest/67890/activity?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"}],"_postman_id":"4270750f-7a3a-461b-90c1-d8c61ae04b32"}],"id":"1b911afe-84c6-4c2b-9f23-55ad7720fc0c","description":"<p>Operations related to interest records and schedule matches</p>\n","_postman_id":"1b911afe-84c6-4c2b-9f23-55ad7720fc0c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}}},{"name":"Activity","item":[{"name":"Global Activity Feed","id":"f2463d8e-56be-4b16-969a-00ba37c5a6e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/activity?page=1&per_page=25&disposal_id=12345&type=comment&sort=desc","description":"<p>Retrieve a global activity feed for the landlord organisation with filtering options</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","activity"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"per_page","value":"25"},{"description":{"content":"<p>Filter activities for specific disposal</p>\n","type":"text/plain"},"key":"disposal_id","value":"12345"},{"disabled":true,"description":{"content":"<p>Filter activities for specific interest record</p>\n","type":"text/plain"},"key":"interest_id","value":""},{"description":{"content":"<p>Filter by activity type</p>\n","type":"text/plain"},"key":"type","value":"comment"},{"disabled":true,"description":{"content":"<p>Filter by user (within organisation)</p>\n","type":"text/plain"},"key":"user_id","value":""},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"sort","value":"desc"}],"variable":[]}},"response":[{"id":"42368b6b-49e8-4030-98c2-ab49985b054f","name":"Global Activity Feed - Example Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{landlord_base_url}}/activity?disposal_id=12345","host":["{{landlord_base_url}}"],"path":["activity"],"query":[{"key":"disposal_id","value":"12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 98765,\n      \"organisation_id\": 789,\n      \"disposal_id\": 12345,\n      \"interest_id\": 67890,\n      \"causer_id\": 456,\n      \"activity_type\": \"comment\",\n      \"description\": \"Added comment to interest record\",\n      \"created_at\": \"2024-01-20T14:45:00Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 100,\n    \"last_page\": 4\n  }\n}"}],"_postman_id":"f2463d8e-56be-4b16-969a-00ba37c5a6e5"}],"id":"8aec9738-eb4b-434a-a54c-97fc567707cb","description":"<p>Operations related to activity logs and feeds</p>\n","_postman_id":"8aec9738-eb4b-434a-a54c-97fc567707cb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}}},{"name":"Agents","item":[{"name":"List Agents","id":"ff846f06-53de-4654-ae60-86421035b112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/agents?page=1&per_page=25&sort=name&order=asc","description":"<p>Retrieve a paginated list of users accessible to the authenticated user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","agents"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page (max 100)</p>\n","type":"text/plain"},"key":"per_page","value":"25"},{"disabled":true,"description":{"content":"<p>Search term for user name or email</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Sort field</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"ef2103fc-995e-4a47-a7d3-443fb13b4b7e","name":"List Agents - Example Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{landlord_base_url}}/agents?page=1&per_page=25","host":["{{landlord_base_url}}"],"path":["agents"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 67890,\n      \"organisation_id\": 789,\n      \"forename\": \"John\",\n      \"surname\": \"Doe\",\n      \"email\": \"john.doe@acme.com\",\n      \"created_at\": \"2024-01-15T10:30:00Z\",\n      \"updated_at\": \"2024-01-20T14:45:00Z\"\n    },\n    {\n      \"id\": 67891,\n      \"organisation_id\": 789,\n      \"forename\": \"Jane\",\n      \"surname\": \"Smith\",\n      \"email\": \"jane.smith@acme.com\",\n      \"created_at\": \"2024-01-10T09:15:00Z\",\n      \"updated_at\": \"2024-01-18T11:30:00Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 15,\n    \"last_page\": 1\n  },\n  \"links\": {\n    \"first\": \"{{landlord_base_url}}/users?page=1\",\n    \"last\": \"{{landlord_base_url}}/users?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"}],"_postman_id":"ff846f06-53de-4654-ae60-86421035b112"},{"name":"Show Agent","id":"4f718b66-46f1-4deb-a6ae-6cee905bb11b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/agents/:id","description":"<p>Retrieve detailed information for a specific user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","agents",":id"],"host":["{{landlord_base_url}}"],"query":[],"variable":[{"description":{"content":"<p>User ID</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"id"}]}},"response":[{"id":"a2cd96f4-967a-4d0f-b0ba-0d5a10ec2725","name":"Show Agent - Example Response","originalRequest":{"method":"GET","header":[],"url":"{{landlord_base_url}}/agents/12345"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67890,\n  \"organisation_id\": 789,\n  \"forename\": \"John\",\n  \"surname\": \"Doe\",\n  \"email\": \"john.doe@acme.com\",\n  \"created_at\": \"2024-01-15T10:30:00Z\",\n  \"updated_at\": \"2024-01-20T14:45:00Z\"\n}"}],"_postman_id":"4f718b66-46f1-4deb-a6ae-6cee905bb11b"}],"id":"a2857327-2f26-4d7a-b309-4275d8ffed96","description":"<p>Operations related to user management</p>\n","_postman_id":"a2857327-2f26-4d7a-b309-4275d8ffed96","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}}},{"name":"Agencies","item":[{"name":"List Agencies","id":"aa6ac104-eba4-45eb-9e68-a98caeaa764e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/agencies?page=1&per_page=25&sort=name&order=asc","description":"<p>Retrieve a paginated list of organisations accessible to the authenticated user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","agencies"],"host":["{{landlord_base_url}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Items per page (max 100)</p>\n","type":"text/plain"},"key":"per_page","value":"25"},{"disabled":true,"description":{"content":"<p>Search term for organisation name</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Sort field</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"description":{"content":"<p>Sort order</p>\n","type":"text/plain"},"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"6716973e-db4d-4bbc-82f0-7ebd311b6945","name":"List Agencies - Example Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{landlord_base_url}}/agencies?page=1&per_page=25","host":["{{landlord_base_url}}"],"path":["agencies"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 67890,\n      \"name\": \"Acme Corporation Ltd\",\n      \"created_at\": \"2024-01-15T10:30:00Z\",\n      \"updated_at\": \"2024-01-20T14:45:00Z\"\n    },\n    {\n      \"id\": 67891,\n      \"name\": \"Beta Holdings plc\",\n      \"created_at\": \"2024-01-10T09:15:00Z\",\n      \"updated_at\": \"2024-01-18T16:20:00Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 25,\n    \"total\": 5,\n    \"last_page\": 1\n  },\n  \"links\": {\n    \"first\": \"{{landlord_base_url}}/organisations?page=1\",\n    \"last\": \"{{landlord_base_url}}/organisations?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"}],"_postman_id":"aa6ac104-eba4-45eb-9e68-a98caeaa764e"},{"name":"Show Agencies","id":"c196f7d9-cc62-40e7-9b6a-5e230e857872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{landlord_base_url}}/v1/agencies/:id","description":"<p>Retrieve detailed information for a specific organisation</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}},"urlObject":{"path":["v1","agencies",":id"],"host":["{{landlord_base_url}}"],"query":[],"variable":[{"description":{"content":"<p>Organisation ID</p>\n","type":"text/plain"},"type":"any","value":"67890","key":"id"}]}},"response":[{"id":"03d351a6-bab5-4fd8-a76f-de7809c5f87e","name":"Show Agencies - Example Response","originalRequest":{"method":"GET","header":[],"url":"{{landlord_base_url}}/agencies/67890"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 67890,\n  \"name\": \"Acme Corporation Ltd\",\n  \"created_at\": \"2024-01-15T10:30:00Z\",\n  \"updated_at\": \"2024-01-20T14:45:00Z\"\n}"}],"_postman_id":"c196f7d9-cc62-40e7-9b6a-5e230e857872"}],"id":"d7e2d874-abae-49af-98f7-a24d07d8a965","description":"<p>Operations related to organisation management</p>\n","_postman_id":"d7e2d874-abae-49af-98f7-a24d07d8a965","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":true,"source":{"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba","id":"3bec4886-730d-4866-88fc-3990852a41ba","name":"V1","type":"folder"}}}],"id":"3bec4886-730d-4866-88fc-3990852a41ba","description":"<p>Welcome to the Kato Landlord API. This collection provides comprehensive access to landlord-specific functionality within the Kato platform using <a href=\"https://getpostman.com\">Postman</a></p>\n<h1 id=\"overview\">Overview</h1>\n<p>The Landlord API enables property landlords to get data updates on disposals, interest schedules, activity logs, agent and organisation data through a secure RESTful interface. This API is designed specifically for landlords who need programmatic access to their property portfolio and tenant interest management.</p>\n<h1 id=\"api-resources\">API Resources</h1>\n<p>The Landlord API provides access to the following core resources:</p>\n<h2 id=\"📋-disposals\">📋 Disposals</h2>\n<ul>\n<li><p><strong>List Disposals</strong>: Paginated access to your property disposals with filtering and sorting</p>\n</li>\n<li><p><strong>Show Disposal</strong>: Detailed information for individual disposals including property details, pricing, and status</p>\n</li>\n<li><p><strong>Interest Schedule Management</strong>: View tenant interest for a specific disposal</p>\n</li>\n</ul>\n<h2 id=\"🎯-interest-management\">🎯 Interest Management</h2>\n<ul>\n<li><p><strong>Interest Schedules</strong>: Detailed tenant interest tracking with status management</p>\n</li>\n<li><p><strong>Interest Records</strong>: Individual interest record management with comprehensive tenant data</p>\n</li>\n</ul>\n<h2 id=\"📊-activities\">📊 Activities</h2>\n<ul>\n<li><p><strong>Activity Logs</strong>: Comprehensive tracking of actions and changes across disposals and interests</p>\n</li>\n<li><p><strong>Interest Activities</strong>: Specific activity tracking for tenant interest management</p>\n</li>\n</ul>\n<h2 id=\"👥-agents\">👥 Agents</h2>\n<ul>\n<li><p><strong>List Agents</strong>: Access to agents reporting to your organisation with search and pagination</p>\n</li>\n<li><p><strong>Show Agent</strong>: Detailed agent profiles</p>\n</li>\n</ul>\n<h2 id=\"🏢-agencies\">🏢 Agencies</h2>\n<ul>\n<li><p><strong>List Agencies</strong>: Browse agencies who are reporting to you</p>\n</li>\n<li><p><strong>Show Agencies</strong>: Detailed agency information</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{client_access_token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"69e4e11d-c60a-442d-bcd3-1fae38784e6c","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"4f2c950c-9db6-4b40-b1d0-5d3b63db4991","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"3bec4886-730d-4866-88fc-3990852a41ba"},{"name":"https://agency.kato.test/api/transactions/lettings/275088/address","id":"6b995c87-612a-42df-99a7-8583361bb98a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"ru-UA,ru-RU;q=0.9,ru;q=0.8,en-US;q=0.7,en;q=0.6,uk;q=0.5"},{"key":"content-type","value":"application/json"},{"key":"origin","value":"https://os.agency.kato.test:8080"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://os.agency.kato.test:8080/"},{"key":"sec-ch-ua","value":"\"Chromium\";v=\"142\", \"Google Chrome\";v=\"142\", \"Not_A Brand\";v=\"99\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36"},{"key":"x-coogan","value":"true"},{"key":"x-xsrf-token","value":"eyJpdiI6ImN1MTRqZGVwQXdDU0FnKzNtVE5ieFE9PSIsInZhbHVlIjoicjFzemtPZ2JpMTNEYTdsZHRPaTBPQVF1MnNNdnU1V2VTYmJCSER2TjVYYXdLL3h6R0x3UWdrSHpPTHlDd2hQQllMTlA1VVZpdzJ0SkoxVWgzbU5LaDk1V3pvM2dOTzFzUGxwWnNMOEpzZWxwcnFVUWl3dGU1UUZjSFI3KzBWTlciLCJtYWMiOiIzNjU2MWZiMmI1OGMxZjVkYWU3MWM2ZmUxODI5ODQ2ZmI2M2QwZGZkOWVhYjM0NDY3NjYwM2NkOWY3MTUwYzE3IiwidGFnIjoiIn0="},{"key":"Cookie","value":"intercom-id-qe3ybhyd=673ee8a4-8243-4016-a588-6f9bfac23837; intercom-device-id-qe3ybhyd=360acd75-a494-4007-9081-67df08620750; _ga=GA1.1.144080380.1752591288; _ga_3B2PE5K83V=GS2.1.s1762948843$o6$g1$t1762949497$j60$l0$h0; intercom-session-qe3ybhyd=dUx2QmdIZ1VxS1hva0E1V1RPMVJQamlySTliNUxOb1ZmNEpPTnFGUndLbGNXZ2xRcnlMejBYbjVIOWlvcXpFakowVGtOOCt5d0Z5UkRsK0tGanhwTkZkRW5RRXhXclNsQ1R0U2RGOWQyN3c9LS1aSWt6NmFOMzZXZVVqbUh6VzVLOW5RPT0=--ac1877742b8b10cf5192071d1909791fc7141c3c; laravel_token=eyJpdiI6ImhPbVVIeVNYNWl5aWp3Y1NaZUZDa3c9PSIsInZhbHVlIjoiKyt2eXdjU1NtK05lTHM5eFFBOTQ4S0M3d09jd3hWMTlpK2NoRk95Sk14eGxIY3E0V0wwV1JTbGppN0s1TFU2MWpmbGg3UG5ycDlnV01ic1QyV29tNzJzV1RadkZuc1U1UjJYY2QvV3NhR0s3M2M0VGlKRUNXc25ra0NlN0tvR0lqV3JESXhEWUM5NnlTb0I3bFI4Qm03MGpIOXgvdjgrZXl3dERyNEY3UFZOSUErL2Rydk14NHFBalhYRUV2MzhXdVhaUGJPcXEwbDh4VXN1OVlMK3EvVzJrNVBKVm1DR0JHaWdyVzFXRm1PUWVvNDR4eWpCNFdnYzB5cUJmM28rYUNBczRZSnNxcWhsZ3BySm9XY3BpV3JDNnRwSGk5VWV5MFlJRllWbSt1VFZvckoyNmVvR2k4MXI5RVpHblc1dXplRzVYaGxPd09vNGpzWlRpcDJvVVh3PT0iLCJtYWMiOiJiZmVlMzc4NDRiOGU0NWRiMTM3Y2UxNThmMTc4MzM4ZmQ4YTFmYTg1NWE5ZDU3NTEyMTQ4N2I4MzYzZmMzMTUxIiwidGFnIjoiIn0%3D; XSRF-TOKEN=eyJpdiI6ImN1MTRqZGVwQXdDU0FnKzNtVE5ieFE9PSIsInZhbHVlIjoicjFzemtPZ2JpMTNEYTdsZHRPaTBPQVF1MnNNdnU1V2VTYmJCSER2TjVYYXdLL3h6R0x3UWdrSHpPTHlDd2hQQllMTlA1VVZpdzJ0SkoxVWgzbU5LaDk1V3pvM2dOTzFzUGxwWnNMOEpzZWxwcnFVUWl3dGU1UUZjSFI3KzBWTlciLCJtYWMiOiIzNjU2MWZiMmI1OGMxZjVkYWU3MWM2ZmUxODI5ODQ2ZmI2M2QwZGZkOWVhYjM0NDY3NjYwM2NkOWY3MTUwYzE3IiwidGFnIjoiIn0%3D; agents_society_session=eyJpdiI6InNhYzcwWDdEM0RLb1dXRlovdlU4TkE9PSIsInZhbHVlIjoiQ0ZOWEF2NnM1dEV3MVJObTNERk1VbEJhTkdqWFVOUTMzcTZENkRuNWNINXBBL3E1c1hzU3FhS1RXZ2h2UWpYTUZqRUJyaUVUTDZ3Ym9Fc1pQZmV5SU1WN290Y3pKNzgzMUpnUlV6QURwUmIxc21xWHB6cmY3eno2OTExdVVaQ1IiLCJtYWMiOiJlMTAwY2FhM2ExYmE4NzYwMDcxMzEzNGU5ZWE2NjdmNzUxY2Y3OWE2NWU0MDdmMWVkOTI2OWM1ZWQ4YTg1OWI4IiwidGFnIjoiIn0%3D"}],"body":{"mode":"raw","raw":"{\"address\":{\"address_county\":\"Lancashire\",\"address_line1\":\"Potter Place\",\"address_line2\":\"Pimbo Industrial Estate\",\"address_name\":\"Name3\",\"address_postcode\":\"WN8 9PW\",\"address_town\":\"Skelmersdale\",\"country\":\"GB\",\"domestic_id\":null,\"map_position_lat\":53.53128,\"map_position_lng\":-2.75879,\"map_position_zoom\":15},\"property_id\":70366,\"tags\":\"\"}","options":{"raw":{"language":"json"}}},"url":"https://agency.kato.test/api/transactions/lettings/275088/address","description":"<p>Generated from cURL: curl '<a href=\"https://agency.kato.test/api/transactions/lettings/275088/address\">https://agency.kato.test/api/transactions/lettings/275088/address</a>' <br />  -X 'PUT' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: ru-UA,ru-RU;q=0.9,ru;q=0.8,en-US;q=0.7,en;q=0.6,uk;q=0.5' <br />  -H 'content-type: application/json' <br />  -b 'intercom-id-qe3ybhyd=673ee8a4-8243-4016-a588-6f9bfac23837; intercom-device-id-qe3ybhyd=360acd75-a494-4007-9081-67df08620750; _ga=GA1.1.144080380.1752591288; _ga_3B2PE5K83V=GS2.1.s1762948843$o6$g1$t1762949497$j60$l0$h0; intercom-session-qe3ybhyd=dUx2QmdIZ1VxS1hva0E1V1RPMVJQamlySTliNUxOb1ZmNEpPTnFGUndLbGNXZ2xRcnlMejBYbjVIOWlvcXpFakowVGtOOCt5d0Z5UkRsK0tGanhwTkZkRW5RRXhXclNsQ1R0U2RGOWQyN3c9LS1aSWt6NmFOMzZXZVVqbUh6VzVLOW5RPT0=--ac1877742b8b10cf5192071d1909791fc7141c3c; laravel_token=eyJpdiI6ImhPbVVIeVNYNWl5aWp3Y1NaZUZDa3c9PSIsInZhbHVlIjoiKyt2eXdjU1NtK05lTHM5eFFBOTQ4S0M3d09jd3hWMTlpK2NoRk95Sk14eGxIY3E0V0wwV1JTbGppN0s1TFU2MWpmbGg3UG5ycDlnV01ic1QyV29tNzJzV1RadkZuc1U1UjJYY2QvV3NhR0s3M2M0VGlKRUNXc25ra0NlN0tvR0lqV3JESXhEWUM5NnlTb0I3bFI4Qm03MGpIOXgvdjgrZXl3dERyNEY3UFZOSUErL2Rydk14NHFBalhYRUV2MzhXdVhaUGJPcXEwbDh4VXN1OVlMK3EvVzJrNVBKVm1DR0JHaWdyVzFXRm1PUWVvNDR4eWpCNFdnYzB5cUJmM28rYUNBczRZSnNxcWhsZ3BySm9XY3BpV3JDNnRwSGk5VWV5MFlJRllWbSt1VFZvckoyNmVvR2k4MXI5RVpHblc1dXplRzVYaGxPd09vNGpzWlRpcDJvVVh3PT0iLCJtYWMiOiJiZmVlMzc4NDRiOGU0NWRiMTM3Y2UxNThmMTc4MzM4ZmQ4YTFmYTg1NWE5ZDU3NTEyMTQ4N2I4MzYzZmMzMTUxIiwidGFnIjoiIn0%3D; XSRF-TOKEN=eyJpdiI6ImN1MTRqZGVwQXdDU0FnKzNtVE5ieFE9PSIsInZhbHVlIjoicjFzemtPZ2JpMTNEYTdsZHRPaTBPQVF1MnNNdnU1V2VTYmJCSER2TjVYYXdLL3h6R0x3UWdrSHpPTHlDd2hQQllMTlA1VVZpdzJ0SkoxVWgzbU5LaDk1V3pvM2dOTzFzUGxwWnNMOEpzZWxwcnFVUWl3dGU1UUZjSFI3KzBWTlciLCJtYWMiOiIzNjU2MWZiMmI1OGMxZjVkYWU3MWM2ZmUxODI5ODQ2ZmI2M2QwZGZkOWVhYjM0NDY3NjYwM2NkOWY3MTUwYzE3IiwidGFnIjoiIn0%3D; agents_society_session=eyJpdiI6InNhYzcwWDdEM0RLb1dXRlovdlU4TkE9PSIsInZhbHVlIjoiQ0ZOWEF2NnM1dEV3MVJObTNERk1VbEJhTkdqWFVOUTMzcTZENkRuNWNINXBBL3E1c1hzU3FhS1RXZ2h2UWpYTUZqRUJyaUVUTDZ3Ym9Fc1pQZmV5SU1WN290Y3pKNzgzMUpnUlV6QURwUmIxc21xWHB6cmY3eno2OTExdVVaQ1IiLCJtYWMiOiJlMTAwY2FhM2ExYmE4NzYwMDcxMzEzNGU5ZWE2NjdmNzUxY2Y3OWE2NWU0MDdmMWVkOTI2OWM1ZWQ4YTg1OWI4IiwidGFnIjoiIn0%3D' <br />  -H 'origin: <a href=\"https://os.agency.kato.test:8080\">https://os.agency.kato.test:8080</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://os.agency.kato.test:8080/\">https://os.agency.kato.test:8080/</a>' <br />  -H 'sec-ch-ua: \"Chromium\";v=\"142\", \"Google Chrome\";v=\"142\", \"Not_A Brand\";v=\"99\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36' <br />  -H 'x-coogan: true' <br />  -H 'x-xsrf-token: eyJpdiI6ImN1MTRqZGVwQXdDU0FnKzNtVE5ieFE9PSIsInZhbHVlIjoicjFzemtPZ2JpMTNEYTdsZHRPaTBPQVF1MnNNdnU1V2VTYmJCSER2TjVYYXdLL3h6R0x3UWdrSHpPTHlDd2hQQllMTlA1VVZpdzJ0SkoxVWgzbU5LaDk1V3pvM2dOTzFzUGxwWnNMOEpzZWxwcnFVUWl3dGU1UUZjSFI3KzBWTlciLCJtYWMiOiIzNjU2MWZiMmI1OGMxZjVkYWU3MWM2ZmUxODI5ODQ2ZmI2M2QwZGZkOWVhYjM0NDY3NjYwM2NkOWY3MTUwYzE3IiwidGFnIjoiIn0=' <br />  --data-raw '{\"address\":{\"address_county\":\"Lancashire\",\"address_line1\":\"Potter Place\",\"address_line2\":\"Pimbo Industrial Estate\",\"address_name\":\"Name3\",\"address_postcode\":\"WN8 9PW\",\"address_town\":\"Skelmersdale\",\"country\":\"GB\",\"domestic_id\":null,\"map_position_lat\":53.53128,\"map_position_lng\":-2.75879,\"map_position_zoom\":15},\"property_id\":70366,\"tags\":\"\"}'</p>\n","urlObject":{"protocol":"https","path":["api","transactions","lettings","275088","address"],"host":["agency","kato","test"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b995c87-612a-42df-99a7-8583361bb98a"},{"name":"https://agency.kato.test/api/transactions/lettings/275680","id":"16014bcf-66a8-4c26-adf4-0b14f36de5d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"ru-UA,ru-RU;q=0.9,ru;q=0.8,en-US;q=0.7,en;q=0.6,uk;q=0.5"},{"key":"content-type","value":"application/json"},{"key":"origin","value":"https://os.agency.kato.test:8080"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://os.agency.kato.test:8080/"},{"key":"sec-ch-ua","value":"\"Chromium\";v=\"142\", \"Google Chrome\";v=\"142\", \"Not_A Brand\";v=\"99\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36"},{"key":"x-coogan","value":"true"},{"key":"x-xsrf-token","value":"eyJpdiI6InV4dGQzR0Y5Sk9vN2l0cm9mMU1QWEE9PSIsInZhbHVlIjoiQ1ZZeTZ0K3NmL0ErSHBCdWFsaUxhdGRTZDlJQ1FZZTFseE1WTE5TZGhOT3hybDR3V3MrUURPV2UxV0pSTkt3bFljR2t1MGVTL3VzUWZ6TmxoNjVnUjdGeCtaYU45Z2ErRUovY0xRKzRhWTNJMjV4TVUzYVQzRzA4OUZPeWpTRmwiLCJtYWMiOiIwZTY4ZDVmZWY4MzJkZjY5ZGMzMGU1OTNmZDZkYzY1NjY3YTczNGZlMjliZGFjYTUyMmE1YzA4MzE2ODYyOTJhIiwidGFnIjoiIn0="},{"key":"Cookie","value":"intercom-id-qe3ybhyd=673ee8a4-8243-4016-a588-6f9bfac23837; intercom-device-id-qe3ybhyd=360acd75-a494-4007-9081-67df08620750; _ga=GA1.1.144080380.1752591288; _ga_3B2PE5K83V=GS2.1.s1762948843$o6$g1$t1762949497$j60$l0$h0; intercom-session-qe3ybhyd=SHcrNXN6TUw4bS9VdThKUm9nMnUzUkk0MGd2L0Q3ekpKcU5OMEF5SnVQb2o0YmxqTm8vZmdMQit0SWpkMVJuTTRDZ3hrTFJ1THJsVHNpRkcrcW5aUittYVNDUmZtVWRJVm9pWGRteGw0OW89LS1xUVRYYytPcEVFVnFiS1BqNW00OUFBPT0=--d88abeca15c3b8c8b8caca630501898d8cc4a4dc; laravel_token=eyJpdiI6InAwYmUrWHJjZDM3VHUvYWJFazlieHc9PSIsInZhbHVlIjoiM091MitYSDJoYWlUUGVnaW1Lcmp5aHYyNyt5L2xKMitjSTNsTmJzbGpsZzJ4bGlpeW9sVWdRYnprckZQNFFzYVJzSnZrTWNRUnhBTXlXbTBJbVZhbVVGdmFxY2k3WENUWjhsV016NTc3cDNBYklqUjgvZlpGK01xcHFUZk4wemNUU0tqZ2ZQWFFQZEpZZVJvVkxZanZvMGc2c01Wd2hwWGFHbmh3V1hpWW9IL3FaT3FwQnlSTzdQamhtcmZtRWl5Uk5zSG53M3NucWlOV0lQWE5Ea2VtN0JwaE1XM1YxRVZKd1VLek5zWE5CbDIzWHhrclFWTFZlSkVvSlNyRW5sQ1JBVDlsVnBBaDVOMzlNckk3TVlNSys2MnRrbDJqdFpqdVViSE1KVHdQQ3ptRVo3ZXRkMHdtUHNCSDE1aVBaRi9FWGFCd1BlRk9tbGdsYXB0RHFUTGhRPT0iLCJtYWMiOiI2ZDQ4MzA2OTE4ODExZTgwZGJlNGMwNjA4MzAwMmZiNzYxMGRjMGE2NTE4YjhlNzVkMTBlMmUwZGNiYTc2YjA2IiwidGFnIjoiIn0%3D; XSRF-TOKEN=eyJpdiI6InV4dGQzR0Y5Sk9vN2l0cm9mMU1QWEE9PSIsInZhbHVlIjoiQ1ZZeTZ0K3NmL0ErSHBCdWFsaUxhdGRTZDlJQ1FZZTFseE1WTE5TZGhOT3hybDR3V3MrUURPV2UxV0pSTkt3bFljR2t1MGVTL3VzUWZ6TmxoNjVnUjdGeCtaYU45Z2ErRUovY0xRKzRhWTNJMjV4TVUzYVQzRzA4OUZPeWpTRmwiLCJtYWMiOiIwZTY4ZDVmZWY4MzJkZjY5ZGMzMGU1OTNmZDZkYzY1NjY3YTczNGZlMjliZGFjYTUyMmE1YzA4MzE2ODYyOTJhIiwidGFnIjoiIn0%3D; agents_society_session=eyJpdiI6IkQzY1QwVnk1M1pSNGpVTVZrOFBteXc9PSIsInZhbHVlIjoiTUJQbTJhbVdINm9veStBcTZEZUF4MW92amF5RVkrKytIb2t2TW5vMGREcE0rUTFwMTk3K2lvQ2xhbnVkQ25BcDBYMTg0TFdZRDNTV1JGTFBuaEtqR2VEblpsOGlweVlUeURQWFFvZEFaNjUyKzNqWmdpYlpac3p2UU43YTlJNmUiLCJtYWMiOiI4YmZkNWM5ZjlhYzdkYjM2M2EyYzBmYWQ3OTNlYWJkMGE4NzRhMzA1ZmU3N2FiNWE1N2FmZDg1YzQ1OGQzM2UyIiwidGFnIjoiIn0%3D"}],"body":{"mode":"raw","raw":"{\"signature_date\":\"2025-11-26\"}","options":{"raw":{"language":"json"}}},"url":"https://agency.kato.test/api/transactions/lettings/275680","description":"<p>Generated from cURL: curl '<a href=\"https://agency.kato.test/api/transactions/lettings/275680\">https://agency.kato.test/api/transactions/lettings/275680</a>' <br />  -X 'PUT' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: ru-UA,ru-RU;q=0.9,ru;q=0.8,en-US;q=0.7,en;q=0.6,uk;q=0.5' <br />  -H 'content-type: application/json' <br />  -b 'intercom-id-qe3ybhyd=673ee8a4-8243-4016-a588-6f9bfac23837; intercom-device-id-qe3ybhyd=360acd75-a494-4007-9081-67df08620750; _ga=GA1.1.144080380.1752591288; _ga_3B2PE5K83V=GS2.1.s1762948843$o6$g1$t1762949497$j60$l0$h0; intercom-session-qe3ybhyd=SHcrNXN6TUw4bS9VdThKUm9nMnUzUkk0MGd2L0Q3ekpKcU5OMEF5SnVQb2o0YmxqTm8vZmdMQit0SWpkMVJuTTRDZ3hrTFJ1THJsVHNpRkcrcW5aUittYVNDUmZtVWRJVm9pWGRteGw0OW89LS1xUVRYYytPcEVFVnFiS1BqNW00OUFBPT0=--d88abeca15c3b8c8b8caca630501898d8cc4a4dc; laravel_token=eyJpdiI6InAwYmUrWHJjZDM3VHUvYWJFazlieHc9PSIsInZhbHVlIjoiM091MitYSDJoYWlUUGVnaW1Lcmp5aHYyNyt5L2xKMitjSTNsTmJzbGpsZzJ4bGlpeW9sVWdRYnprckZQNFFzYVJzSnZrTWNRUnhBTXlXbTBJbVZhbVVGdmFxY2k3WENUWjhsV016NTc3cDNBYklqUjgvZlpGK01xcHFUZk4wemNUU0tqZ2ZQWFFQZEpZZVJvVkxZanZvMGc2c01Wd2hwWGFHbmh3V1hpWW9IL3FaT3FwQnlSTzdQamhtcmZtRWl5Uk5zSG53M3NucWlOV0lQWE5Ea2VtN0JwaE1XM1YxRVZKd1VLek5zWE5CbDIzWHhrclFWTFZlSkVvSlNyRW5sQ1JBVDlsVnBBaDVOMzlNckk3TVlNSys2MnRrbDJqdFpqdVViSE1KVHdQQ3ptRVo3ZXRkMHdtUHNCSDE1aVBaRi9FWGFCd1BlRk9tbGdsYXB0RHFUTGhRPT0iLCJtYWMiOiI2ZDQ4MzA2OTE4ODExZTgwZGJlNGMwNjA4MzAwMmZiNzYxMGRjMGE2NTE4YjhlNzVkMTBlMmUwZGNiYTc2YjA2IiwidGFnIjoiIn0%3D; XSRF-TOKEN=eyJpdiI6InV4dGQzR0Y5Sk9vN2l0cm9mMU1QWEE9PSIsInZhbHVlIjoiQ1ZZeTZ0K3NmL0ErSHBCdWFsaUxhdGRTZDlJQ1FZZTFseE1WTE5TZGhOT3hybDR3V3MrUURPV2UxV0pSTkt3bFljR2t1MGVTL3VzUWZ6TmxoNjVnUjdGeCtaYU45Z2ErRUovY0xRKzRhWTNJMjV4TVUzYVQzRzA4OUZPeWpTRmwiLCJtYWMiOiIwZTY4ZDVmZWY4MzJkZjY5ZGMzMGU1OTNmZDZkYzY1NjY3YTczNGZlMjliZGFjYTUyMmE1YzA4MzE2ODYyOTJhIiwidGFnIjoiIn0%3D; agents_society_session=eyJpdiI6IkQzY1QwVnk1M1pSNGpVTVZrOFBteXc9PSIsInZhbHVlIjoiTUJQbTJhbVdINm9veStBcTZEZUF4MW92amF5RVkrKytIb2t2TW5vMGREcE0rUTFwMTk3K2lvQ2xhbnVkQ25BcDBYMTg0TFdZRDNTV1JGTFBuaEtqR2VEblpsOGlweVlUeURQWFFvZEFaNjUyKzNqWmdpYlpac3p2UU43YTlJNmUiLCJtYWMiOiI4YmZkNWM5ZjlhYzdkYjM2M2EyYzBmYWQ3OTNlYWJkMGE4NzRhMzA1ZmU3N2FiNWE1N2FmZDg1YzQ1OGQzM2UyIiwidGFnIjoiIn0%3D' <br />  -H 'origin: <a href=\"https://os.agency.kato.test:8080\">https://os.agency.kato.test:8080</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://os.agency.kato.test:8080/\">https://os.agency.kato.test:8080/</a>' <br />  -H 'sec-ch-ua: \"Chromium\";v=\"142\", \"Google Chrome\";v=\"142\", \"Not_A Brand\";v=\"99\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36' <br />  -H 'x-coogan: true' <br />  -H 'x-xsrf-token: eyJpdiI6InV4dGQzR0Y5Sk9vN2l0cm9mMU1QWEE9PSIsInZhbHVlIjoiQ1ZZeTZ0K3NmL0ErSHBCdWFsaUxhdGRTZDlJQ1FZZTFseE1WTE5TZGhOT3hybDR3V3MrUURPV2UxV0pSTkt3bFljR2t1MGVTL3VzUWZ6TmxoNjVnUjdGeCtaYU45Z2ErRUovY0xRKzRhWTNJMjV4TVUzYVQzRzA4OUZPeWpTRmwiLCJtYWMiOiIwZTY4ZDVmZWY4MzJkZjY5ZGMzMGU1OTNmZDZkYzY1NjY3YTczNGZlMjliZGFjYTUyMmE1YzA4MzE2ODYyOTJhIiwidGFnIjoiIn0=' <br />  --data-raw '{\"signature_date\":\"2025-11-26\"}'</p>\n","urlObject":{"protocol":"https","path":["api","transactions","lettings","275680"],"host":["agency","kato","test"],"query":[],"variable":[]}},"response":[],"_postman_id":"16014bcf-66a8-4c26-adf4-0b14f36de5d2"}],"event":[{"listen":"prerequest","script":{"id":"88102cba-d7b0-4002-907f-ccfa24272d22","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a502424b-a58a-42b0-a3f4-a678338ff5d8","type":"text/javascript","exec":[""]}}]}