{"info":{"_postman_id":"e1a8562e-89c5-4adb-a5bd-140b0beb2776","name":"iDWELL Public Api","description":"<html><head></head><body><p>iDWELL is an innovative SaaS software which integrates the entire communication process between a property management company and its stakeholders (tenants, landlords and suppliers) on a multi-channel CRM platform. The integrated tenant app automates routine processes in the damage reporting and reduces theworkload of property managers. To sum it up, iDWELL helps to ease the daily work of property management companies.</p>\n<p>If you have any questions about iDWELL in general or the API feel free to contact us: <a href=\"https://mailto:contact@idwell.com\">contact@idwell.com</a></p>\n<h3 id=\"rate-limits\">Rate limits</h3>\n<p>The API is rate-limited:</p>\n<ul>\n<li><p>Authentication endpoints: <strong>20 requests per minute</strong></p>\n</li>\n<li><p>Public API endpoints: <strong>40 requests per second</strong></p>\n</li>\n</ul>\n<p>If the limit is exceeded, the API returns <strong>429 Too Many Requests</strong>.<br>The response includes a <code>Retry-After</code> header indicating when it is safe to retry the request.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Before making any API requests, you must first obtain an <strong>access token</strong> using the OAuth 2.0 Password Flow.</p>\n<p>Example of obtaining a token using password flow:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">curl -i -X POST -d \"grant_type=password&amp;username=&lt;user_name&gt;&amp;password=&lt;password&gt;\" -u\"&lt;client_id&gt;:&lt;client_secret&gt;\" https://portal.idwell.com/api/oauth/token/\n\n</code></pre>\n<h1 id=\"managing-users\">Managing users</h1>\n<h3 id=\"status\">Status</h3>\n<p>Status is read only. New user is created with INVITED status. Company manager should make an invitation to the user via portal.</p>\n<h3 id=\"roles\">Roles</h3>\n<p>Use the <code>landlord</code> role for a user who owns a flat or many flats. Use <code>dweller</code> for a user who lives in a flat, but doesn't own any. <code>admin</code> and <code>manager</code> roles are for company staff. <code>admin</code> is able to setup some company's settings and to change users' roles.</p>\n<p>Available role transitions:</p>\n<ul>\n<li><p><code>admin</code> -&gt; <code>manager</code></p>\n</li>\n<li><p><code>manager</code> -&gt; <code>admin</code></p>\n</li>\n<li><p><code>dweller</code> -&gt; <code>landlord</code></p>\n</li>\n<li><p><code>landlord</code> -&gt; <code>dweller</code></p>\n</li>\n</ul>\n<h3 id=\"unique-email-or-phone\">Unique email or phone</h3>\n<p><code>email</code> or <code>phone</code> or both should be provided.</p>\n<p>If <code>email</code> is provided and it's unique, the system will use it as user identifier. If <code>email</code> is provided and is not unique, error will be raised.</p>\n<p>Else if <code>email</code> is empty and <code>phone</code> is provided, it will be used as user identifier. If it is not unique, error will be raised.</p>\n<h3 id=\"phone-validation\">Phone validation</h3>\n<p>The phone validation is built on top of <a href=\"https://github.com/google/libphonenumber\">Google's libphonenumber library</a> with some modifications.</p>\n<ol>\n<li><p>Phone number minimal length is 4 symbols, maximum is 15 symbols after trimming.</p>\n</li>\n<li><p>All non-digit symbols are trimmed excluding leading <code>+</code> symbol if presented.</p>\n</li>\n<li><p>If the number starts with <code>+</code> and is in the length limits and passes <a href=\"https://github.com/google/libphonenumber\">Google's libphonenumber library</a> it is used as it is.</p>\n</li>\n<li><p>Else, leading <code>0</code> or <code>00</code> symbols are dropped and the rest of the string is considered to be a number with a country code. If it is, the system uses it as phone number.</p>\n</li>\n<li><p>Else if the string does not contain a country code, it is calculated from a company settings. If the string merged with the country code passes the validation, the system uses it as phone number.</p>\n</li>\n</ol>\n<h3 id=\"flats\">Flats</h3>\n<p><code>dweller</code> user without flats cannot be created. If existing <code>dweller</code> is updated with empty <code>flats</code> list, the system archives the user and his or her status becomes BLOCKED.</p>\n<h1 id=\"manager-permissions-temporary\">Manager Permissions (Temporary)</h1>\n<blockquote>\n<p><strong>TODO:</strong> Reorganize this section and document permissions per endpoint in a consistent format. </p>\n</blockquote>\n<p>The list below reflects the current API access available for the <strong>Manager</strong> role.</p>\n<h3 id=\"available-all-methods\">Available (all methods)</h3>\n<ul>\n<li><p><code>/api/rest/v1/building_groups/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/document-staplings/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/files/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/update-data-hook/</code></p>\n</li>\n</ul>\n<h3 id=\"get-only\">GET only</h3>\n<ul>\n<li><p><code>/api/rest/v1/automations/execution-events//</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings/</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings//</code></p>\n</li>\n<li><p><code>/api/rest/v1/chatrooms//messages/</code></p>\n</li>\n<li><p><code>/api/rest/v1/flats//</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings//flats/</code></p>\n</li>\n<li><p><code>/api/rest/v1/labels/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests//</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests//messages/</code></p>\n</li>\n</ul>\n<h3 id=\"available-according-to-directory-permissions\">Available according to directory permissions</h3>\n<ul>\n<li><code>/api/rest/v1/directories/\\*</code></li>\n</ul>\n<blockquote>\n<p><strong>Note:</strong> Access to directory endpoints depends on the permissions configured for the directory itself. </p>\n</blockquote>\n<h3 id=\"not-available-403-forbidden\">Not available (403 Forbidden)</h3>\n<ul>\n<li><p><code>/api/rest/v1/budget-plans/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings/igel/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings/realdata/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/contractors/</code></p>\n</li>\n<li><p><code>/api/rest/v1/directories/content/</code></p>\n</li>\n<li><p><code>/api/rest/v1/directories//summary/</code></p>\n</li>\n<li><p><code>/api/rest/v1/users/files/</code></p>\n</li>\n<li><p><code>/api/rest/v1/buildings/files/</code></p>\n</li>\n<li><p><code>/api/rest/v1/flats//files/</code></p>\n</li>\n<li><p><code>/api/rest/v1/files/integration/</code></p>\n</li>\n<li><p><code>/api/rest/v1/flats/</code></p>\n</li>\n<li><p><code>/api/rest/v1/flats/igel/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/users/flats/</code></p>\n</li>\n<li><p><code>/api/rest/v1/posts/\\\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/igel/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/types/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/status/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/eml/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/activities/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/activity-types/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/requests/phases/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/user/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/users/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/move-out-date/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/contract-id/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/contract/\\*</code></p>\n</li>\n<li><p><code>/api/rest/v1/contracts/\\*</code></p>\n</li>\n</ul>\n<blockquote>\n<p><strong>Note:</strong> /<code>\\*</code> means the rule applies to the endpoint and all of its sub-endpoints, unless a more specific rule is listed above.</p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Managing users","slug":"managing-users"},{"content":"Manager Permissions (Temporary)","slug":"manager-permissions-temporary"}],"owner":"24106832","collectionId":"e1a8562e-89c5-4adb-a5bd-140b0beb2776","publishedId":"2sB2x5HD65","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-29T11:01:24.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authentication","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"140f9704-499e-4e3b-a529-84ecf82b9da5"}},{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"63e5e642-3eb9-47ad-b46e-e8d08e8ed45a"}}],"id":"31827ce2-b879-4f91-a850-79e313cb9431","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/oauth/token/","description":"<h2 id=\"request-description\">Request Description</h2>\n<p>This endpoint is used to obtain an access token by sending a POST request to the specified URL. The request should include the <code>grant_type</code>, <code>username</code>, and <code>password</code> parameters in the x-www-form-urlencoded format.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p><code>grant_type</code> (string): The type of grant being requested. It should be <strong>password</strong></p>\n</li>\n<li><p><code>username</code> (string): The username of the user.</p>\n</li>\n<li><p><code>password</code> (string): The password of the user.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>The response of this request is a JSON object representing the access token details. Below is the JSON schema for the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"access_token\": {\n      \"type\": \"string\"\n    },\n    \"token_type\": {\n      \"type\": \"string\"\n    },\n    \"expires_in\": {\n      \"type\": \"integer\"\n    },\n    \"refresh_token\": {\n      \"type\": \"string\"\n    },\n    \"scope\": {\n      \"type\": \"string\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["api","oauth","token",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"96d64476-03ae-4c14-8342-adeb2ad2e191","name":"Authentication","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/oauth/token/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"t5wMM9kGqfQIBsVJwcCznKaBliAk4N\",\n    \"expires_in\": 36000,\n    \"token_type\": \"Bearer\",\n    \"scope\": \"read write\",\n    \"refresh_token\": \"cgZKyWA9gUnUeZViWNtnboSX4XTlNk\"\n}"}],"_postman_id":"31827ce2-b879-4f91-a850-79e313cb9431"}],"id":"e7e8f96b-8104-4942-b15d-84b06f6fc426","description":"<p>In order to authenticate the token should be provided within the Authorization HTTP header. The key should be prefixed by the string literal \"Bearer\", with whitespace separating two strings.</p>\n","_postman_id":"e7e8f96b-8104-4942-b15d-84b06f6fc426"},{"name":"Building","item":[{"name":"List buildings","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"80c30ce5-8afa-416d-99c9-5c4dd577c047"}}],"id":"519310c7-869c-41e5-90fe-640c276e83fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/?page=1&page_size=2&external_id=123","description":"<p><strong>Buildings list.</strong></p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/buildings/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<ul>\n<li><p><code>page</code> (integer) – Page number for paginated results.</p>\n</li>\n<li><p><code>page_size</code> (integer) – Number of records per page.</p>\n</li>\n<li><p><code>external_id</code> (string) – External identifier to filter buildings. Parameter for searching by external_id</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>address</code> (string, <strong>required</strong>) — up to 800 characters</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string or null) — up to 100 characters</p>\n</li>\n<li><p><code>archived</code> (boolean)</p>\n</li>\n<li><p><code>skip_address_normalization</code> (boolean) - Default:false</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>insurance</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>supplier</code> (string or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>insurance_type</code> (integer or string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>object_info</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>location</code> (string) — up to 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>salutation</code> (integer)</p>\n</li>\n<li><p><code>living_type</code> (integer)</p>\n</li>\n<li><p><code>postal_code</code> (integer)</p>\n</li>\n<li><p><code>contract_start</code> (string, date or null)</p>\n</li>\n<li><p><code>contract_end</code> (string, date or null)</p>\n</li>\n<li><p><code>object_number</code> (string) — &gt;= 0 &lt;= 10 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>bank_details</code> (object)</p>\n<ul>\n<li><p><code>bic</code> (string) &gt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string) &lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>bank_account_owner</code> (string) &lt;= 256 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items in one page</p>\n","type":"text/plain"},"key":"page_size","value":"2"},{"description":{"content":"<p>Parameter for searching by external_id</p>\n","type":"text/plain"},"key":"external_id","value":"123"}],"variable":[]}},"response":[{"id":"9a2ae64a-e168-4738-b8a3-130eee9e9071","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/?page=1&page_size=2","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","buildings",""],"query":[{"key":"page","value":"1","description":"Page number"},{"key":"page_size","value":"2","description":"Number of items in one page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 58,\n    \"pages\": 29,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/buildings/?page=2&page_size=2\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/buildings/?page=last&page_size=2\"\n    },\n    \"results\": [\n        {\n            \"id\": 290864,\n            \"address\": \"11 MV Dorfstraße 10, 17153 Kittendorf, Deutschland\",\n            \"directory\": 114830120,\n            \"external_id\": null,\n            \"archived\": false,\n            \"info\": {\n                \"insurance\": {\n                    \"notes\": \"\",\n                    \"supplier\": null,\n                    \"block_name\": \"insurance\",\n                    \"insurance_type\": null,\n                    \"contract_number\": \"\"\n                },\n                \"object_info\": {\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"location\": \"\",\n                    \"block_name\": \"object_info\",\n                    \"salutation\": null,\n                    \"door_number\": \"\",\n                    \"living_type\": null,\n                    \"postal_code\": \"\",\n                    \"contract_end\": null,\n                    \"full_address\": \" MV Dorfstr. 10, 17153 Kittendorf\",\n                    \"house_keeper\": \"\",\n                    \"object_number\": \"11\",\n                    \"contract_start\": null,\n                    \"additional_info\": \"\",\n                    \"address_invoice\": \"\",\n                    \"construction_year\": \"\",\n                    \"amount_restriction\": \"\"\n                },\n                \"bank_details\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"bank_name\": \"\",\n                    \"block_name\": \"bank_details\",\n                    \"bank_account_owner\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"broker\": \"\",\n                    \"warranty\": \"\",\n                    \"accountant\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"number_owner\": \"\",\n                    \"asset_manager\": \"\",\n                    \"tax_consultant\": \"\",\n                    \"identical_address\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 290831,\n            \"address\": \"10 WEG Brunhildenstraße 10, 65189 Wiesbaden, Deutschland\",\n            \"directory\": 114830076,\n            \"external_id\": null,\n            \"archived\": false,\n            \"info\": {\n                \"insurance\": {\n                    \"notes\": \"\",\n                    \"supplier\": null,\n                    \"block_name\": \"insurance\",\n                    \"insurance_type\": null,\n                    \"contract_number\": \"\"\n                },\n                \"object_info\": {\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"location\": \"\",\n                    \"block_name\": \"object_info\",\n                    \"salutation\": null,\n                    \"door_number\": \"\",\n                    \"living_type\": null,\n                    \"postal_code\": \"\",\n                    \"contract_end\": null,\n                    \"full_address\": \"WEG Brunhildenstr. 10, 65189 Wiesbaden\",\n                    \"house_keeper\": \"\",\n                    \"object_number\": \"10\",\n                    \"contract_start\": null,\n                    \"additional_info\": \"\",\n                    \"address_invoice\": \"\",\n                    \"construction_year\": \"\",\n                    \"amount_restriction\": \"\"\n                },\n                \"bank_details\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"bank_name\": \"\",\n                    \"block_name\": \"bank_details\",\n                    \"bank_account_owner\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"broker\": \"\",\n                    \"warranty\": \"\",\n                    \"accountant\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"number_owner\": \"\",\n                    \"asset_manager\": \"\",\n                    \"tax_consultant\": \"\",\n                    \"identical_address\": \"\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"519310c7-869c-41e5-90fe-640c276e83fb"},{"name":"Create building","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"75158ab6-05a0-4791-9d2c-92a245d09077"}}],"id":"11356241-a4c8-43e7-b233-7aa1b68332a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"address\": \"string\",\n    \"directory\": \"integer\",\n    \"external_id\": \"string or null\",\n    \"archived\": \"boolean\",\n    \"use_code_as_address_prefix\": \"boolean\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/","description":"<h3 id=\"create-building\">Create building</h3>\n<p>This endpoint creates a new building in the system.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>POST /api/rest/v1/buildings/</code></p>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>address</code> (string, <strong>required</strong>) - Building address. Max length: 800 characters.</p>\n</li>\n<li><p><code>directory</code> (integer, <strong>required</strong>) - Directory ID.</p>\n</li>\n<li><p><code>external_id</code> (string or null, optional) - External system ID. Max length: 100 characters.</p>\n</li>\n<li><p><code>archived</code> (boolean, optional) - Whether the building is archived.</p>\n</li>\n<li><p><code>use_code_as_address_prefix</code> (boolean, optional) - Whether to include the address prefix (external_id) as part of the address. <strong>Default</strong>: <code>true</code>. Set to <code>false</code> to exclude prefix.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>address</code> (string, <strong>required</strong>) — up to 800 characters</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string or null) — up to 100 characters</p>\n</li>\n<li><p><code>archived</code> (boolean)</p>\n</li>\n<li><p><code>skip_address_normalization</code> (boolean) - Default:false</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>insurance</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>supplier</code> (string or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>insurance_type</code> (integer or string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>object_info</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>location</code> (string) — up to 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>salutation</code> (integer)</p>\n</li>\n<li><p><code>living_type</code> (integer)</p>\n</li>\n<li><p><code>postal_code</code> (integer)</p>\n</li>\n<li><p><code>contract_start</code> (string, date or null)</p>\n</li>\n<li><p><code>contract_end</code> (string, date or null)</p>\n</li>\n<li><p><code>object_number</code> (string) — &gt;= 0 &lt;= 10 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>bank_details</code> (object)</p>\n<ul>\n<li><p><code>bic</code> (string) &gt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string) &lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>bank_account_owner</code> (string) &lt;= 256 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"5a9d2a2a-7692-4c39-9b06-bed5d81221f8","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"11 MV Dorfstraße 101, 17153 Kittendorf, Deutschland\",\n  \"external_id\": \"140\",\n  \"use_code_as_address_prefix\": false,\n  \"skip_address_normalization\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 19451,\n    \"address\": \"11 MV Dorfstraße 101, 17153 Kittendorf, Deutschland\",\n    \"directory\": 538089,\n    \"external_id\": \"140\",\n    \"archived\": false,\n    \"info\": {\n        \"object_info\": {\n            \"block_name\": \"object_info\",\n            \"notes\": \"\",\n            \"salutation\": null,\n            \"object_number\": \"\",\n            \"street\": \"\",\n            \"door_number\": \"\",\n            \"full_address\": \"\",\n            \"construction_year\": \"\",\n            \"address_invoice\": \"\",\n            \"amount_restriction\": \"\",\n            \"house_keeper\": \"\",\n            \"postal_code\": \"\",\n            \"location\": \"\",\n            \"living_type\": null,\n            \"contract_start\": null,\n            \"contract_end\": null,\n            \"additional_info\": \"\"\n        },\n        \"insurance\": {\n            \"block_name\": \"insurance\",\n            \"notes\": \"\",\n            \"insurance_type\": null,\n            \"contract_number\": \"\",\n            \"supplier\": null\n        },\n        \"bank_details\": {\n            \"block_name\": \"bank_details\",\n            \"notes\": \"\",\n            \"iban\": \"\",\n            \"bic\": \"\",\n            \"bank_name\": \"\",\n            \"bank_account_owner\": \"\"\n        },\n        \"orag_cluster\": {\n            \"block_name\": \"orag_cluster\",\n            \"notes\": \"\",\n            \"identical_address\": \"\",\n            \"asset_manager\": \"\",\n            \"accountant\": \"\",\n            \"broker\": \"\",\n            \"tax_consultant\": \"\",\n            \"warranty\": \"\",\n            \"number_owner\": \"\"\n        }\n    }\n}"}],"_postman_id":"11356241-a4c8-43e7-b233-7aa1b68332a5"},{"name":"Get building","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"8eda8f7e-af36-498e-8ad7-a4cc38056485"}}],"id":"b67cf0cd-5043-4c96-9ccc-6f1c5ba21c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{building_id}/","description":"<p>Get building.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/buildings/{building_id}/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>building_id</code> (string, <strong>required</strong>) – Building ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response Body p<strong>arameters</strong>:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>address</code> (string, <strong>required</strong>) — up to 800 characters</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string or null) — up to 100 characters</p>\n</li>\n<li><p><code>archived</code> (boolean)</p>\n</li>\n<li><p><code>skip_address_normalization</code> (boolean) - Default:false</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>insurance</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>supplier</code> (string or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>insurance_type</code> (integer or string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>object_info</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>location</code> (string) — up to 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>salutation</code> (integer)</p>\n</li>\n<li><p><code>living_type</code> (integer)</p>\n</li>\n<li><p><code>postal_code</code> (integer)</p>\n</li>\n<li><p><code>contract_start</code> (string, date or null)</p>\n</li>\n<li><p><code>contract_end</code> (string, date or null)</p>\n</li>\n<li><p><code>object_number</code> (string) — &gt;= 0 &lt;= 10 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>bank_details</code> (object)</p>\n<ul>\n<li><p><code>bic</code> (string) &gt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string) &lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>bank_account_owner</code> (string) &lt;= 256 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","{building_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"00ef60ce-31d1-4ce9-8969-8952346334f9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":""},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/123/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 129812,\n    \"address\": \"Wiener Str. 680, 4030 Linz, Österreich\",\n    \"directory\": 49745499,\n    \"external_id\": null,\n    \"archived\": false,\n    \"info\": {\n        \"insurance\": {\n            \"notes\": \"\",\n            \"supplier\": null,\n            \"block_name\": \"insurance\",\n            \"insurance_type\": null,\n            \"contract_number\": \"\"\n        },\n        \"object_info\": {\n            \"notes\": \"\",\n            \"street\": \"\",\n            \"location\": \"\",\n            \"block_name\": \"object_info\",\n            \"salutation\": null,\n            \"door_number\": \"\",\n            \"living_type\": null,\n            \"postal_code\": \"\",\n            \"contract_end\": null,\n            \"full_address\": \"\",\n            \"house_keeper\": \"\",\n            \"object_number\": \"\",\n            \"contract_start\": null,\n            \"additional_info\": \"\",\n            \"address_invoice\": \"\",\n            \"construction_year\": \"\",\n            \"amount_restriction\": \"\"\n        },\n        \"bank_details\": {\n            \"bic\": \"\",\n            \"iban\": \"\",\n            \"notes\": \"\",\n            \"bank_name\": \"\",\n            \"block_name\": \"bank_details\",\n            \"bank_account_owner\": \"\"\n        },\n        \"orag_cluster\": {\n            \"notes\": \"\",\n            \"broker\": \"\",\n            \"warranty\": \"\",\n            \"accountant\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"number_owner\": \"\",\n            \"asset_manager\": \"\",\n            \"tax_consultant\": \"\",\n            \"identical_address\": \"\"\n        }\n    }\n}"}],"_postman_id":"b67cf0cd-5043-4c96-9ccc-6f1c5ba21c72"},{"name":"Update building","event":[{"listen":"test","script":{"id":"0702b4a0-aa01-40b5-9eb2-50c52c662476","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"57cb639f-98e4-4a8d-83f0-16a16ee7966a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": 0,\n  \"address\": \"string\",\n  \"external_id\": \"string\",\n  \"info\": {\n    \"insurance\": {\n      \"notes\": \"string\",\n      \"supplier\": 0,\n      \"block_name\": \"string\",\n      \"insurance_type\": 0,\n      \"contract_number\": \"string\"\n    },\n    \"object_info\": {\n      \"notes\": \"string\",\n      \"location\": \"string\",\n      \"block_name\": \"string\",\n      \"salutation\": 0,\n      \"living_type\": 0,\n      \"postal_code\": 0,\n      \"contract_end\": \"string\",\n      \"object_number\": \"string\",\n      \"contract_start\": \"string\"\n    },\n    \"bank_details\": {\n      \"bic\": \"string\",\n      \"iban\": \"string\",\n      \"notes\": \"string\",\n      \"bank_name\": \"string\",\n      \"block_name\": \"string\",\n      \"bank_account_owner\": \"string\"\n    }\n  },\n  \"skip_address_normalization\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{building_id}/","description":"<p><strong>Endpoint</strong>:<br /><code>PATCH /api/rest/v1/buildings/{building_id}</code></p>\n<p>Updates an existing building. Only the fields provided in the body will be updated.</p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<ul>\n<li><code>building_id</code> (integer, <strong>required</strong>) - ID of the building to update.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer, optional) - ID of the building. Usually not required in the body.</p>\n</li>\n<li><p><code>address</code> (string, <strong>required</strong>) - Updated building address. &lt;= 800 characters</p>\n</li>\n<li><p><code>external_id</code> (string or null) - External system identifier. &lt;= 100 characters</p>\n</li>\n<li><p><code>skip_address_normalization</code> (boolean, optional) - Default:false</p>\n</li>\n<li><p><code>info</code> (object, optional)</p>\n<ul>\n<li><p><code>insurance</code> (object, optional)</p>\n<ul>\n<li><p><code>notes</code> (string) - &lt;= 2000 characters</p>\n</li>\n<li><p><code>supplier</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>insurance_type</code> (integer or string)</p>\n</li>\n<li><p><code>contract_number</code> (string) - &gt;= 0 characters&lt;= 50 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>object_info</code> (object, optional)</p>\n<ul>\n<li><p><code>notes</code> (string) - &lt;= 2000 characters</p>\n</li>\n<li><p><code>location</code> (string) - &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>living_type</code> (integer or null)</p>\n</li>\n<li><p><code>postal_code</code> (integer or null)</p>\n</li>\n<li><p><code>contract_start</code> (string or null)</p>\n</li>\n<li><p><code>contract_end</code> (string or null)</p>\n</li>\n<li><p><code>object_number</code> (string) - &gt;= 0 characters&lt;= 10 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>bank_details</code> (object, optional)</p>\n<ul>\n<li><p><code>bic</code> (string) - &gt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string) - &lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string) - &lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string) - &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>bank_account_owner</code> (string) - &lt;= 256 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>address</code> (string, <strong>required</strong>) — up to 800 characters</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string or null) — up to 100 characters</p>\n</li>\n<li><p><code>archived</code> (boolean)</p>\n</li>\n<li><p><code>skip_address_normalization</code> (boolean) - Default:false</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>insurance</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>supplier</code> (string or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>insurance_type</code> (integer or string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>object_info</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — up to 2000 characters</p>\n</li>\n<li><p><code>location</code> (string) — up to 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>salutation</code> (integer)</p>\n</li>\n<li><p><code>living_type</code> (integer)</p>\n</li>\n<li><p><code>postal_code</code> (integer)</p>\n</li>\n<li><p><code>contract_start</code> (string, date or null)</p>\n</li>\n<li><p><code>contract_end</code> (string, date or null)</p>\n</li>\n<li><p><code>object_number</code> (string) — &gt;= 0 &lt;= 10 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>bank_details</code> (object)</p>\n<ul>\n<li><p><code>bic</code> (string) &gt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string) &lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>bank_account_owner</code> (string) &lt;= 256 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","{building_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"778b5578-c2d3-4c37-b03c-81e84aea927c","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 12900,\n    \"address\": \"Wiedner Hauptstraße 15B, 1040 Wien, Österreich\",\n    \"directory\": 414728,\n    \"external_id\": \"BG-12754\",\n    \"archived\": false,\n    \"info\": {\n        \"insurance\": {\n            \"notes\": \"Vollkaskoversicherung über Allianz abgeschlossen.\",\n            \"supplier\": \"Allianz Österreich\",\n            \"block_name\": \"insurance\",\n            \"insurance_type\": 2017,\n            \"contract_number\": \"AT-INS-2023-000872\"\n        },\n        \"object_info\": {\n            \"notes\": \"Typisches Gründerzeitgebäude mit 4 Stockwerken und Dachboden.\",\n            \"street\": \"Wiedner Hauptstraße\",\n            \"location\": \"1040 Wien, Wieden\",\n            \"block_name\": \"object_info\",\n            \"salutation\": 1651,\n            \"door_number\": \"15B\",\n            \"living_type\": 1486,\n            \"postal_code\": \"1040\",\n            \"contract_end\": null,\n            \"full_address\": \"Wiedner Hauptstraße 15B, 1040 Wien, Österreich\",\n            \"house_keeper\": \"Herr Markus Steiner\",\n            \"object_number\": \"15B\",\n            \"contract_start\": \"2021-03-01\",\n            \"additional_info\": \"Im Innenhof befindet sich ein kleiner Garten zur gemeinsamen Nutzung.\",\n            \"address_invoice\": \"Wiedner Hauptstraße 15B/1, 1040 Wien\",\n            \"construction_year\": \"1898\",\n            \"amount_restriction\": \"Max. 5 Personen pro Wohneinheit erlaubt laut Baubehörde.\"\n        },\n        \"bank_details\": {\n            \"bic\": \"BKAUATWW\",\n            \"iban\": \"AT911100000123456789\",\n            \"notes\": \"Verwaltungskonto für Instandhaltungsrücklagen\",\n            \"bank_name\": \"Bank Austria\",\n            \"block_name\": \"bank_details\",\n            \"bank_account_owner\": \"Hausverwaltung Steiner GmbH\"\n        },\n        \"orag_cluster\": {\n            \"notes\": \"Das Objekt wird von der ORAG Gruppe verwaltet.\",\n            \"broker\": \"Frau Katharina Berger\",\n            \"warranty\": \"2 Jahre Gewährleistung für Fassadenrenovierung (bis 2025)\",\n            \"accountant\": \"Mag. Roland Weber\",\n            \"block_name\": \"orag_cluster\",\n            \"number_owner\": \"20\",\n            \"asset_manager\": \"Sabine Gruber, MSc\",\n            \"tax_consultant\": \"Dr. Heinz Koller\",\n            \"identical_address\": \"Ja\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/12900/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 12900,\n    \"address\": \"Wiedner Hauptstraße 15B, 1040 Wien, Österreich\",\n    \"directory\": 414728,\n    \"external_id\": \"BG-12754\",\n    \"archived\": false,\n    \"info\": {\n    \"insurance\": {\n        \"notes\": \"Vollkaskoversicherung über Allianz abgeschlossen.\",\n        \"supplier\": \"Allianz Österreich\",\n        \"block_name\": \"insurance\",\n        \"insurance_type\": 2017,\n        \"contract_number\": \"AT-INS-2023-000872\"\n    },\n    \"object_info\": {\n        \"notes\": \"Typisches Gründerzeitgebäude mit 4 Stockwerken und Dachboden.\",\n        \"street\": \"Wiedner Hauptstraße\",\n        \"location\": \"1040 Wien, Wieden\",\n        \"block_name\": \"object_info\",\n        \"salutation\": 1651,\n        \"door_number\": \"15B\",\n        \"living_type\": 1486,\n        \"postal_code\": \"1040\",\n        \"contract_end\": null,\n        \"full_address\": \"Wiedner Hauptstraße 15B, 1040 Wien, Österreich\",\n        \"house_keeper\": \"Herr Markus Steiner\",\n        \"object_number\": \"15B\",\n        \"contract_start\": \"2021-03-01\",\n        \"additional_info\": \"Im Innenhof befindet sich ein kleiner Garten zur gemeinsamen Nutzung.\",\n        \"address_invoice\": \"Wiedner Hauptstraße 15B/1, 1040 Wien\",\n        \"construction_year\": \"1898\",\n        \"amount_restriction\": \"Max. 5 Personen pro Wohneinheit erlaubt laut Baubehörde.\"\n    },\n    \"bank_details\": {\n        \"bic\": \"BKAUATWW\",\n        \"iban\": \"AT911100000123456789\",\n        \"notes\": \"Verwaltungskonto für Instandhaltungsrücklagen\",\n        \"bank_name\": \"Bank Austria\",\n        \"block_name\": \"bank_details\",\n        \"bank_account_owner\": \"Hausverwaltung Steiner GmbH\"\n    },\n    \"orag_cluster\": {\n        \"notes\": \"Das Objekt wird von der ORAG Gruppe verwaltet.\",\n        \"broker\": \"Frau Katharina Berger\",\n        \"warranty\": \"2 Jahre Gewährleistung für Fassadenrenovierung (bis 2025)\",\n        \"accountant\": \"Mag. Roland Weber\",\n        \"block_name\": \"orag_cluster\",\n        \"number_owner\": \"20\",\n        \"asset_manager\": \"Sabine Gruber, MSc\",\n        \"tax_consultant\": \"Dr. Heinz Koller\",\n        \"identical_address\": \"Ja\"\n    }\n}\n}"}],"_postman_id":"57cb639f-98e4-4a8d-83f0-16a16ee7966a"},{"name":"Delete building","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"cc99ab38-d3ff-4d36-be80-e0a5eded274e"}}],"id":"735091e3-c0f9-498f-9d34-cc3aa3514816","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{building_id}/","description":"<p>Delete building.</p>\n<p><strong>Endpoint:</strong><br /><code>DELETE /api/rest/v1/buildings/{building_id}/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<p><code>building_id</code> (integer, <strong>required</strong>) - ID of the building to delete.</p>\n","urlObject":{"path":["api","rest","v1","buildings","{building_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"8f687f82-3d1f-4790-bd09-d0d1f2156620","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/123/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"735091e3-c0f9-498f-9d34-cc3aa3514816"},{"name":"Get flats by building","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"2407b77a-6b89-4176-988c-6f17c660bd32"}}],"id":"bc8e734d-93f7-4e37-86cc-e3ad9732f000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{building_id}/flats/?page=1&page_size=10&external_id=123","description":"<p>Get flats by building.</p>\n<p><strong>Endpoint</strong>:<br /><code>GET /api/rest/v1/buildings/{building_id}/flats/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<ul>\n<li><code>building_id</code> (integer, <strong>required</strong>) - ID of the building to update.</li>\n</ul>\n<h4 id=\"request-query-parameters\">Request query parameters:</h4>\n<ul>\n<li><p><code>page</code> (integer) Page number &gt;= 0</p>\n</li>\n<li><p><code>page_size</code> (integer) Number of items in one page &gt;= 0 Default: 100</p>\n</li>\n<li><p><code>external_id</code> (string) – External identifier to filter flats. Parameter for searching by external_id</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code>(integer) Total number of objects</p>\n</li>\n<li><p><code>page</code>(integer) Current page number</p>\n</li>\n<li><p><code>pages</code>(integer) Total number of pages</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (string, <strong>required</strong>) &lt;= 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (string) &gt;= 0&lt;= 9999</p>\n</li>\n<li><p><code>live_area</code> (integer) &gt;= 0&lt;= 9999</p>\n</li>\n<li><p><code>room_count</code> (integer) &gt;= 0&lt;= 99</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n<ul>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>equipment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) &gt;= 1</p>\n</li>\n<li><p><code>total</code> (integer or null) &gt;= 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","{building_id}","flats",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items in one page</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>Parameter for searching by external_id</p>\n","type":"text/plain"},"key":"external_id","value":"123"}],"variable":[]}},"response":[{"id":"0c23dcde-9140-4f10-9433-70fbf10ffac9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{building_id}/flats/?page=1&page_size=10","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","buildings","{building_id}","flats",""],"query":[{"key":"page","value":"1"},{"key":"page_size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 120,\n    \"pages\": 12,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/buildings/240902/flats/?page=2&page_size=10\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/buildings/240902/flats/?page=last&page_size=10\"\n    },\n    \"results\": [\n        {\n            \"id\": 1870757,\n            \"external_id\": null,\n            \"number\": \"121\",\n            \"building\": 240902,\n            \"directory\": 96976465,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870756,\n            \"external_id\": null,\n            \"number\": \"119\",\n            \"building\": 240902,\n            \"directory\": 96976461,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870755,\n            \"external_id\": null,\n            \"number\": \"118\",\n            \"building\": 240902,\n            \"directory\": 96976457,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870754,\n            \"external_id\": null,\n            \"number\": \"117\",\n            \"building\": 240902,\n            \"directory\": 96976452,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870753,\n            \"external_id\": null,\n            \"number\": \"116\",\n            \"building\": 240902,\n            \"directory\": 96976447,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870752,\n            \"external_id\": null,\n            \"number\": \"115\",\n            \"building\": 240902,\n            \"directory\": 96976443,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870751,\n            \"external_id\": null,\n            \"number\": \"114\",\n            \"building\": 240902,\n            \"directory\": 96976438,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870750,\n            \"external_id\": null,\n            \"number\": \"113\",\n            \"building\": 240902,\n            \"directory\": 96976430,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870749,\n            \"external_id\": null,\n            \"number\": \"112\",\n            \"building\": 240902,\n            \"directory\": 96976425,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 1870748,\n            \"external_id\": null,\n            \"number\": \"111\",\n            \"building\": 240902,\n            \"directory\": 96976416,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": null,\n            \"live_area\": null,\n            \"room_count\": null,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"bc8e734d-93f7-4e37-86cc-e3ad9732f000"},{"name":"Get buildings imported from RealData","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"1721d060-ad30-422b-998c-3fcd9e64f717"}}],"id":"8bc8ed28-958b-48f1-899a-a50f77407588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/realdata/","description":"<p>Get a list of pairs of external and internal building's IDs imported from RealData</p>\n<p><strong>Endpoint</strong>:<br /><code>GET /api/rest/v1/buildings/realdata/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<ul>\n<li><code>building_id</code> (integer, <strong>required</strong>) - ID of the building to update.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL. &gt;= 1 characters</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL. &gt;= 1 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (integer) Building ID in iDwell portal (internal id)</p>\n</li>\n<li><p><code>external_id</code> (string) Building ID for RealData system (external ID) &gt;= 6 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","realdata",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"f5c56f3c-5b2c-427e-9b86-fde6c29e4a91","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/realdata/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"pages\": 0,\n    \"page\": 0,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 1298,\n            \"external_id\": \"ex-id-123213\"\n        },\n         {\n            \"id\": 1299,\n            \"external_id\": \"ex-id-565654\"\n        }\n    ]\n}"}],"_postman_id":"8bc8ed28-958b-48f1-899a-a50f77407588"},{"name":"Get buildings imported from RealData portal","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"19d04fd4-542d-4e56-ab38-2bfab81aa056"}}],"id":"e98040da-0550-41c6-a8e5-954f8b9edfba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/realdata/{portal_id}/","description":"<p>Get a list of pairs of external and internal building's IDs imported from RealData portal with the specified number.</p>\n<p><strong>Endpoint</strong>:<br /><code>GET /api/rest/v1/buildings/realdata/{portal_id}/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<ul>\n<li><code>portal_id</code> (integer, <strong>required</strong>) - ID of the system to update.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL. &gt;= 1 characters</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL. &gt;= 1 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (integer) Building ID in iDwell portal (internal id)</p>\n</li>\n<li><p><code>external_id</code> (string) Building ID for RealData system (external ID) &gt;= 6 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","realdata","{portal_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"48f15199-d541-44fd-b719-772f21c85ee3","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io}/api/rest/v1/buildings/realdata/12/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 0,\n    \"pages\": 0,\n    \"page\": 0,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 134,\n            \"external_id\": \"ex-dsfdsf\"\n        }\n    ]\n}"}],"_postman_id":"e98040da-0550-41c6-a8e5-954f8b9edfba"},{"name":"Get building imported from RealData","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"a7c499f1-a993-4b0b-a991-592d73942f5e"}}],"id":"8f2af5b1-9b39-4f96-a06a-2a6bc1add711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/realdata/{portal_id}/{building_id}/","description":"<p>Get a pair of external and internal building's IDs imported from RealData portal with the specified number by Realdata's building number.</p>\n<p><strong>Endpoint</strong>:<br /><code>GET /api/rest/v1/buildings/realdata/{portal_id}/{building_id}/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<ul>\n<li><p><code>portal_id</code>(integer, <strong>required</strong>) - ID of the PMC to update.</p>\n</li>\n<li><p><code>building_id</code> (integer, <strong>required</strong>) - ID of the building to update.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer) Building ID in iDwell portal (internal id)</p>\n</li>\n<li><p><code>external_id</code> (string) Building ID for RealData system (external ID) &gt;= 6 characters</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","realdata","{portal_id}","{building_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"6d78d609-bde8-45be-b19f-fd8359b52050","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/realdata/1/1299/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 1299,\n    \"external_id\": \"ex-erwrwr\"\n}"}],"_postman_id":"8f2af5b1-9b39-4f96-a06a-2a6bc1add711"}],"id":"5086f6ff-10b6-4b4f-a5c4-cb0d82f7570b","description":"<h2 id=\"description\">Description</h2>\n<p>The building is maintained by a Management Company (PMC, Property management company). The building contains Apartments (Flats).</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>List buildings</td>\n<td><code>/v1/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned buildings only</td>\n</tr>\n<tr>\n<td>Create building</td>\n<td><code>/v1/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get building</td>\n<td><code>/v1/buildings/{building_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned buildings only</td>\n</tr>\n<tr>\n<td>Update building</td>\n<td><code>/v1/buildings/{building_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update access only for assigned buildings</td>\n</tr>\n<tr>\n<td>Delete building</td>\n<td><code>/v1/buildings/{building_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get flats by building</td>\n<td><code>/v1/buildings/{building_id}/flats/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to flats from assigned buildings only</td>\n</tr>\n<tr>\n<td>Get buildings imported from RealData</td>\n<td><code>/v1/buildings/realdata/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get buildings imported from RealData portal</td>\n<td><code>/v1/buildings/realdata/{portal_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get building imported from RealData</td>\n<td><code>/v1/buildings/realdata/{portal_id}/{building_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><p><code>building_id</code> (path): The unique key of the building (you can get it in the list of houses or find it in the URL of the management company's portal in the list of Buildings).</p>\n</li>\n<li><p><code>portal_id</code> (path) The unique key of the PMC</p>\n</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p>Getting a list of buildings in PMC</p>\n</li>\n<li><p>Creating a building</p>\n</li>\n<li><p>Updating information about a building by <code>:building_id</code></p>\n</li>\n<li><p>Deleting a building by <code>:building_id</code></p>\n</li>\n<li><p>Getting a list of flats in a building by its <code>:building_id</code></p>\n</li>\n<li><p>Getting pairs <code>external_id</code> and <code>:building_id</code> from RealData</p>\n</li>\n<li><p>Getting the external_id from RealData by <code>:building_id</code></p>\n</li>\n</ul>\n","_postman_id":"5086f6ff-10b6-4b4f-a5c4-cb0d82f7570b"},{"name":"Building group","item":[{"name":"Get groups","id":"b05a58bd-55d9-40fe-a0ef-0c4e7466ed9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/","description":"<h2 id=\"get-building-groups\">Get building groups</h2>\n<p>Returns a paginated list of building groups.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/building_groups/</code></p>\n<h4 id=\"query-parameters\"><strong>Query Parameters:</strong></h4>\n<ul>\n<li><p><code>external_id</code> (string, optional) — Filter by external ID.</p>\n</li>\n<li><p><code>name</code> (string, optional) — Filter by building group name.</p>\n</li>\n<li><p><code>with_removed</code> (boolean, optional) — Include archived/deleted building groups.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (integer) — Total number of building groups.</p>\n</li>\n<li><p><code>pages</code> (integer) — Total number of pages.</p>\n</li>\n<li><p><code>page</code> (integer) — Current page number.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links.</p>\n</li>\n<li><p><code>results</code> (array of objects) — List of building groups.</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the building group.</p>\n</li>\n<li><p><code>name</code> (string) — Building group name.</p>\n</li>\n<li><p><code>avatar_obj</code> (object) — Building group avatar object.</p>\n</li>\n<li><p><code>external_id</code> (string or null) — External identifier of the building group.</p>\n</li>\n<li><p><code>created</code> (string) — Creation timestamp.</p>\n</li>\n<li><p><code>updated</code> (string) — Last update timestamp.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n<ul>\n<li><p><code>can_delete</code> (boolean)</p>\n</li>\n<li><p><code>can_edit</code> (boolean)</p>\n</li>\n<li><p><code>can_manage_responsible_users</code> (boolean)</p>\n</li>\n<li><p><code>can_manage_buildings</code> (boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>directory_id</code> (integer) — Associated directory ID.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional query params for filtration by external id </p>\n","type":"text/plain"},"key":"external_id","value":"EX-d-1234"},{"disabled":true,"description":{"content":"<p>Optional query params for filtration by name</p>\n","type":"text/plain"},"key":"name","value":"LLC Sky"},{"disabled":true,"description":{"content":"<p>Optional query params for filtration by removed (boolean)</p>\n","type":"text/plain"},"key":"with_removed","value":"true"}],"variable":[]}},"response":[{"id":"680dbd7a-8b00-40ba-9926-b1d1202f0269","name":"Get groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/?with_removed=true","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","building_groups",""],"query":[{"key":"external_id","value":"EX-d-1234","description":"Optional query params for filtration by external id ","type":"text","disabled":true},{"key":"name","value":"LLC Sky","description":"Optional query params for filtration by name","type":"text","disabled":true},{"key":"with_removed","value":"true","description":"Optional query params for filtration by removed (boolean)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 3,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 4951,\n            \"name\": \"DOO Gipfel\",\n            \"avatar_obj\": {\n                \"origin\": \"https://files.idwell.at/sys/default_building.jpg\",\n                \"preview\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnail\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnails\": [],\n                \"filename\": \"default_building.jpg\",\n                \"mime_type\": \"image/jpeg\"\n            },\n            \"external_id\": null,\n            \"created\": \"2026-05-18T10:31:46.053907+02:00\",\n            \"updated\": \"2026-05-18T10:31:46.053997+02:00\",\n            \"permissions\": {\n                \"can_delete\": true,\n                \"can_edit\": true,\n                \"can_manage_responsible_users\": true,\n                \"can_manage_buildings\": true\n            },\n            \"directory_id\": 689953\n        },\n        {\n            \"id\": 4952,\n            \"name\": \"GmbH Spitze\",\n            \"avatar_obj\": {\n                \"origin\": \"https://files.idwell.at/sys/default_building.jpg\",\n                \"preview\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnail\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnails\": [],\n                \"filename\": \"default_building.jpg\",\n                \"mime_type\": \"image/jpeg\"\n            },\n            \"external_id\": \"EX-d-1234\",\n            \"created\": \"2026-05-18T10:32:24.855819+02:00\",\n            \"updated\": \"2026-05-18T10:36:02.344324+02:00\",\n            \"permissions\": {\n                \"can_delete\": true,\n                \"can_edit\": true,\n                \"can_manage_responsible_users\": true,\n                \"can_manage_buildings\": true\n            },\n            \"directory_id\": 689954\n        },\n        {\n            \"id\": 4953,\n            \"name\": \"LLC Sky\",\n            \"avatar_obj\": {\n                \"origin\": \"https://files.idwell.at/sys/default_building.jpg\",\n                \"preview\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnail\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n                \"thumbnails\": [],\n                \"filename\": \"default_building.jpg\",\n                \"mime_type\": \"image/jpeg\"\n            },\n            \"external_id\": null,\n            \"created\": \"2026-05-18T10:34:15.754213+02:00\",\n            \"updated\": \"2026-05-18T10:34:15.754232+02:00\",\n            \"permissions\": {\n                \"can_delete\": false,\n                \"can_edit\": true,\n                \"can_manage_responsible_users\": true,\n                \"can_manage_buildings\": true\n            },\n            \"directory_id\": 689955\n        }\n    ]\n}"}],"_postman_id":"b05a58bd-55d9-40fe-a0ef-0c4e7466ed9b"},{"name":"Get group","id":"e0904ac3-b9ce-4316-8e63-628b606ba889","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":" {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/","description":"<p>Returns details of a single building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/building_groups/{id}/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the building group.</p>\n</li>\n<li><p><code>name</code> (string) — Building group name.</p>\n</li>\n<li><p><code>avatar_obj</code> (object) — Building group avatar object.</p>\n</li>\n<li><p><code>external_id</code> (string or null) — External identifier of the building group.</p>\n</li>\n<li><p><code>created</code> (string) — Creation timestamp.</p>\n</li>\n<li><p><code>updated</code> (string) — Last update timestamp.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n<ul>\n<li><p><code>can_delete</code> (boolean)</p>\n</li>\n<li><p><code>can_edit</code> (boolean)</p>\n</li>\n<li><p><code>can_manage_responsible_users</code> (boolean)</p>\n</li>\n<li><p><code>can_manage_buildings</code> (boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>directory_id</code> (integer) — Associated directory ID.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"e4472da8-663b-40e1-a337-097765404543","name":"Get group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/4952/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 4952,\n    \"name\": \"GmbH Spitze\",\n    \"avatar_obj\": {\n        \"origin\": \"https://files.idwell.at/sys/default_building.jpg\",\n        \"preview\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n        \"thumbnail\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n        \"thumbnails\": [],\n        \"filename\": \"default_building.jpg\",\n        \"mime_type\": \"image/jpeg\"\n    },\n    \"external_id\": \"EX-d-1234\",\n    \"created\": \"2026-05-18T10:32:24.855819+02:00\",\n    \"updated\": \"2026-05-18T10:36:02.344324+02:00\",\n    \"permissions\": {\n        \"can_delete\": true,\n        \"can_edit\": true,\n        \"can_manage_responsible_users\": true,\n        \"can_manage_buildings\": true\n    },\n    \"directory_id\": 689954\n}"}],"_postman_id":"e0904ac3-b9ce-4316-8e63-628b606ba889"},{"name":"Create group","id":"2a3641de-320e-4c5b-934b-f7e9d801bb20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":" {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"GmbH Dr. Grandel\",\n  \"buildings\": [],\n  \"perform_for_buildings\": true,\n  \"external_id\": \"abc\" \n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/","description":"<p>Creates a new building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/building_groups/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>name</code> (string, required) — Building group name.</p>\n</li>\n<li><p><code>buildings</code> (array[integer], optional) — List of building IDs to add to the building group.</p>\n</li>\n<li><p><code>responsible_users</code> (array[integer], optional) — List of manager user IDs to add to the building group.</p>\n</li>\n<li><p><code>perform_for_buildings</code> (boolean, optional, default: false) — If <code>true</code>, managers from <code>responsible_users</code> will also be assigned to the selected buildings.</p>\n</li>\n<li><p><code>external_id</code> (string, optional) — External identifier of the building group.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<p>Returns the created building group object.</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the building group.</p>\n</li>\n<li><p><code>name</code> (string) — Building group name.</p>\n</li>\n<li><p><code>avatar_obj</code> (object) — Building group avatar object.</p>\n</li>\n<li><p><code>external_id</code> (string or null) — External identifier of the building group.</p>\n</li>\n<li><p><code>created</code> (string) — Creation timestamp.</p>\n</li>\n<li><p><code>updated</code> (string) — Last update timestamp.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n</li>\n<li><p><code>directory_id</code> (integer) — Associated directory ID.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"05d77b3c-8d73-45cc-9346-01870d908e8b","name":"Unsuccessful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Building Group\",\n  \"buildings\": [12345], \n  \"responsible_users\": [54321],\n  \"perform_for_buildings\": true,\n  \"external_id\": \"abc\" \n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": {\n        \"responsible_users\": \"Incorrect_user_item\"\n    },\n    \"status_code\": 400\n}"},{"id":"0237edcc-3c89-46cf-a470-36fddefe359c","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"GmbH Dr. Grandel\",\n  \"buildings\": [16027],\n  \"responsible_users\": [73028],\n  \"perform_for_buildings\": true,\n  \"external_id\": \"abc\" \n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 4954,\n    \"name\": \"GmbH Dr. Grandel\",\n    \"avatar_obj\": {\n        \"origin\": \"https://files.idwell.at/sys/default_building.jpg\",\n        \"preview\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n        \"thumbnail\": \"https://files.idwell.at/sys/v2/thumbnails/130X110/sys/default_building.jpg\",\n        \"thumbnails\": [],\n        \"filename\": \"default_building.jpg\",\n        \"mime_type\": \"image/jpeg\"\n    },\n    \"external_id\": \"abc\",\n    \"created\": \"2026-05-18T10:42:02.100206+02:00\",\n    \"updated\": \"2026-05-18T10:42:02.100232+02:00\",\n    \"permissions\": {\n        \"can_delete\": true,\n        \"can_edit\": true,\n        \"can_manage_responsible_users\": true,\n        \"can_manage_buildings\": true\n    },\n    \"directory_id\": 689964\n}"}],"_postman_id":"2a3641de-320e-4c5b-934b-f7e9d801bb20"},{"name":"Update group","id":"0f73d2d7-d04d-454c-b575-241eb3f1550c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":" {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Building Group 2\", // string, not required\n  \"avatar\": 12345, // int, id of a file that can be used as a profile picture for the building group, not required\n  \"external_id\": \"abc\" // string, not required\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/","description":"<p>Updates building group information.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/building_groups/{id}/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>name</code> (string, optional) — Building group name.</p>\n</li>\n<li><p><code>avatar</code> (integer, optional) — File ID used as building group avatar.</p>\n</li>\n<li><p><code>external_id</code> (string, optional) — External identifier of the building group.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<p>Returns the updated building group object.</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the building group.</p>\n</li>\n<li><p><code>name</code> (string) — Building group name.</p>\n</li>\n<li><p><code>avatar_obj</code> (object) — Building group avatar object.</p>\n</li>\n<li><p><code>external_id</code> (string or null) — External identifier of the building group.</p>\n</li>\n<li><p><code>created</code> (string) — Creation timestamp.</p>\n</li>\n<li><p><code>updated</code> (string) — Last update timestamp.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n</li>\n<li><p><code>directory_id</code> (integer) — Associated directory ID.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"d9787403-6a1c-46c2-bee9-f54695e57cfe","name":"Update group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Building Group 2\",\n  \"avatar\": 12345,\n  \"external_id\": \"abc\" \n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/4955/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 4955,\n    \"name\": \"Building Group 2\",\n    \"avatar_obj\": {\n        \"id\": 689997,\n        \"origin\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/private/default/building_group/4952/2026/5/1b55fbb7-3bc4-494f-9a29-89b9f8ee8e88_UAO9lDm.jpeg\",\n        \"preview\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/v2/thumbnails/130X110/kittensbeer.qa.idwell.at/private/default/building_group/4952/2026/5/1b55fbb7-3bc4-494f-9a29-89b9f8ee8e88_UAO9lDm.jpeg\",\n        \"thumbnail\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/v2/thumbnails/130X110/kittensbeer.qa.idwell.at/private/default/building_group/4952/2026/5/1b55fbb7-3bc4-494f-9a29-89b9f8ee8e88_UAO9lDm.jpeg\",\n        \"thumbnails\": [],\n        \"filename\": \"Download premium image of Arch art nouveau Botanical white background architecture_ by pimmugidesu about art nouveau frame, flower mosaic, arch art nouveau floral pattern frame, flower arch, and arch frame 14229108.jpeg\",\n        \"mime_type\": \"image/jpeg\",\n        \"size\": 138824,\n        \"width\": 600,\n        \"height\": 600\n    },\n    \"external_id\": \"abc\",\n    \"created\": \"2026-05-18T10:44:21.802748+02:00\",\n    \"updated\": \"2026-05-18T10:46:16.401777+02:00\",\n    \"permissions\": {\n        \"can_delete\": true,\n        \"can_edit\": true,\n        \"can_manage_responsible_users\": true,\n        \"can_manage_buildings\": true\n    },\n    \"directory_id\": 689995\n}"}],"_postman_id":"0f73d2d7-d04d-454c-b575-241eb3f1550c"},{"name":"Delete group","id":"c8a9e914-e231-4da8-bb61-d211674c92a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":" {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/","description":"<p>Deletes a building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>DELETE /api/rest/v1/building_groups/{id}/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><code>perform_for_buildings</code> (boolean, optional, default: false) — If <code>true</code>, managers assigned through the building group will also be removed from the buildings.</li>\n</ul>\n<h4 id=\"response\"><strong>Response</strong></h4>\n<ul>\n<li><code>204 No Content</code> — Building group successfully deleted.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"5ff42770-7c7e-429a-b2aa-68a02e2a9292","name":"Delete group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/4955/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"c8a9e914-e231-4da8-bb61-d211674c92a1"},{"name":"Get buildings of building group","id":"6ea6cc17-67b6-417a-b6a2-3db3e5ec245f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":" {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/","description":"<h1 id=\"get-buildings-of-building-group\">Get buildings of building group</h1>\n<p>Returns buildings assigned to the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/building_groups/{id}/buildings/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>meta</code> (object) — Pagination metadata.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions.</p>\n</li>\n<li><p><code>results</code> (array of objects) — List of buildings assigned to the building group.</p>\n<ul>\n<li><p><code>id</code> (integer) — Building ID.</p>\n</li>\n<li><p><code>address</code> (string) — Building address.</p>\n</li>\n<li><p><code>directory</code> (integer) — Directory ID.</p>\n</li>\n<li><p><code>external_id</code> (string or null) — External identifier.</p>\n</li>\n<li><p><code>archived</code> (boolean) — Whether the building is archived.</p>\n</li>\n<li><p><code>info</code> (object) — Additional building information.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"065cff3d-48a2-491f-a4a5-eaa8ab450272","name":"Get buildings of building group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/4951/buildings/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"meta\": {\n        \"count\": 2,\n        \"limit\": 20,\n        \"offset\": 0,\n        \"page_count\": 1,\n        \"curr_page\": 1\n    },\n    \"permissions\": {\n        \"can_create\": true,\n        \"can_delete\": true\n    },\n    \"results\": {\n        \"objects\": [\n            {\n                \"id\": 16025,\n                \"address\": \"Makedonska 34, Beograd 110000, Serbia\",\n                \"directory\": 468683,\n                \"external_id\": null,\n                \"archived\": false,\n                \"info\": {\n                    \"insurance\": {\n                        \"notes\": \"\",\n                        \"supplier\": null,\n                        \"block_name\": \"insurance\",\n                        \"insurance_type\": 2016,\n                        \"contract_number\": \"FW-12091445-2023\"\n                    },\n                    \"object_info\": {\n                        \"notes\": \"\",\n                        \"street\": \"Makedonska\",\n                        \"location\": \"Stari grad\",\n                        \"block_name\": \"object_info\",\n                        \"salutation\": null,\n                        \"door_number\": \"12\",\n                        \"living_type\": 1487,\n                        \"postal_code\": \"11100\",\n                        \"contract_end\": null,\n                        \"full_address\": \"Building 4, Makedonska, Beograd, 11100\",\n                        \"house_keeper\": \"\",\n                        \"object_number\": \"Building 4\",\n                        \"contract_start\": null,\n                        \"additional_info\": \"\",\n                        \"address_invoice\": \"\",\n                        \"construction_year\": \"\",\n                        \"amount_restriction\": \"\"\n                    },\n                    \"bank_details\": {\n                        \"bic\": \"MORLGB2LSMK\",\n                        \"iban\": \"\",\n                        \"notes\": \"\",\n                        \"bank_name\": \"Postanska Bank DOO\",\n                        \"block_name\": \"bank_details\",\n                        \"bank_account_owner\": \"\"\n                    },\n                    \"orag_cluster\": {\n                        \"notes\": \"\",\n                        \"broker\": \"\",\n                        \"warranty\": \"\",\n                        \"accountant\": \"\",\n                        \"block_name\": \"orag_cluster\",\n                        \"number_owner\": \"\",\n                        \"asset_manager\": \"\",\n                        \"tax_consultant\": \"\",\n                        \"identical_address\": \"\"\n                    }\n                }\n            },\n            {\n                \"id\": 12900,\n                \"address\": \"Kralja Petra 56, Beograd 11000, Serbia\",\n                \"directory\": 414728,\n                \"external_id\": \"BG-12754\",\n                \"archived\": false,\n                \"info\": {\n                    \"insurance\": {\n                        \"notes\": \"\",\n                        \"supplier\": null,\n                        \"block_name\": \"insurance\",\n                        \"insurance_type\": 2017,\n                        \"contract_number\": \"FW-12091445-2023\"\n                    },\n                    \"object_info\": {\n                        \"notes\": \"\",\n                        \"street\": \"Doorbell Tasev\",\n                        \"location\": \"Stari grad\",\n                        \"block_name\": \"object_info\",\n                        \"salutation\": 1651,\n                        \"door_number\": \"12\",\n                        \"living_type\": 1486,\n                        \"postal_code\": \"11100\",\n                        \"contract_end\": null,\n                        \"full_address\": \"\",\n                        \"house_keeper\": \"\",\n                        \"object_number\": \"56\",\n                        \"contract_start\": \"2024-08-11\",\n                        \"additional_info\": \"\",\n                        \"address_invoice\": \"\",\n                        \"construction_year\": \"1960\",\n                        \"amount_restriction\": \"\"\n                    },\n                    \"bank_details\": {\n                        \"bic\": \"MORLGB2LSMK\",\n                        \"iban\": \"RS35260005601001611379\",\n                        \"notes\": \"\",\n                        \"bank_name\": \"Postanska Bank DOO\",\n                        \"block_name\": \"bank_details\",\n                        \"bank_account_owner\": \"\"\n                    },\n                    \"orag_cluster\": {\n                        \"notes\": \"\",\n                        \"broker\": \"\",\n                        \"warranty\": \"\",\n                        \"accountant\": \"\",\n                        \"block_name\": \"orag_cluster\",\n                        \"number_owner\": \"\",\n                        \"asset_manager\": \"\",\n                        \"tax_consultant\": \"\",\n                        \"identical_address\": \"\"\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"6ea6cc17-67b6-417a-b6a2-3db3e5ec245f"},{"name":"Add buildings to group","id":"8d9abfd9-bebd-484a-adf0-bbf5c3f06e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":" {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/","description":"<p>Adds buildings to the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/building_groups/{id}/buildings/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>buildings</code> (array[integer], required) — List of building IDs to add.  </p>\n</li>\n<li><p><code>update_responsible_users</code> (boolean, optional, default: false) — If <code>true</code>, responsible managers from the building group will also be assigned to the added buildings.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><code>buildings</code> (array[integer]) — List of added building IDs.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"547dd482-cd08-4c70-afd4-f46f67b9e775","name":"Add buildings to group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/12345/buildings/"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8d9abfd9-bebd-484a-adf0-bbf5c3f06e5a"},{"name":"Replace buildings in group","id":"b84e1a08-b5a6-4bde-bb12-715fad25b77c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":" {{token_private_api}}"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/","description":"<p>Replaces all buildings in the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/building_groups/{id}/buildings/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>buildings</code> (array[integer], required) — New list of building IDs.</p>\n</li>\n<li><p><code>update_responsible_users</code> (boolean, optional, default: false) — If <code>true</code>, managers will be synchronized with added and removed buildings.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><code>buildings</code> (array[integer]) — Updated list of building IDs.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"1b85c7b3-ffa7-43ff-8648-ab366798b500","name":"Replace buildings in group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"buildings\": [\n        12345\n    ]\n}"}],"_postman_id":"b84e1a08-b5a6-4bde-bb12-715fad25b77c"},{"name":"Delete buildings from group","id":"b961a224-ad63-4244-8648-dff2846c4eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/","description":"<p>Removes buildings from the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>DELETE /api/rest/v1/building_groups/{id}/buildings/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>buildings</code> (array[integer], required) — List of building IDs to remove.</p>\n</li>\n<li><p><code>update_responsible_users</code> (boolean, optional, default: false) — If <code>true</code>, responsible managers will also be removed from the selected buildings.</p>\n</li>\n</ul>\n<h4 id=\"response\"><strong>Response</strong></h4>\n<ul>\n<li><code>204 No Content</code> — Buildings successfully removed.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","buildings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"250ab650-87e7-42bc-a8d2-90d4d0edd4a7","name":"Delete buildings from group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"buildings\": [12345],\n  \"update_responsible_users\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/buildings/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"b961a224-ad63-4244-8648-dff2846c4eb7"},{"name":"Get managers of group","id":"c151952f-f85e-4126-bbad-17ee4f9bca36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/","description":"<p>Returns responsible managers assigned to the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/building_groups/{id}/responsible-users/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>meta</code> (object) — Pagination metadata.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions.</p>\n</li>\n<li><p><code>results</code> (array of objects) — List of responsible managers.</p>\n<ul>\n<li><p><code>id</code> (integer) — Manager user ID.</p>\n</li>\n<li><p><code>fullname</code> (string) — Full name of the manager.</p>\n</li>\n<li><p><code>avatar</code> (string) — Avatar URL.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","responsible-users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"4bd4b9f4-82b6-4ef5-8050-afb06c400683","name":"Get managers of group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"meta\": {\n        \"count\": 2,\n        \"limit\": 20,\n        \"offset\": 0,\n        \"page_count\": 1,\n        \"curr_page\": 1\n    },\n    \"permissions\": {\n        \"can_create\": true,\n        \"can_delete\": true\n    },\n    \"results\": {\n        \"objects\": [\n            {\n                \"id\": 55637,\n                \"fullname\": \"Elon Mask\",\n                \"avatar\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/v2/thumbnails/170X170/private/2024/08/7f3a639b-bf0c-4903-8d1d-c6827c56a68d.png\"\n            },\n            {\n                \"id\": 55638,\n                \"fullname\": \"Pavel Durov\",\n                \"avatar\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/v2/thumbnails/170X170/private/2024/08/b6865dea-6b19-4dc1-be07-81c657609daf.png\"\n            }\n        ]\n    }\n}"}],"_postman_id":"c151952f-f85e-4126-bbad-17ee4f9bca36"},{"name":"Add managers to group","id":"f7b4b6ac-138c-4c20-a248-91575ad79986","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/","description":"<p>Adds managers to the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/building_groups/{id}/responsible-users/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>responsible_users</code> (array[integer], required) — List of manager user IDs to add.</p>\n</li>\n<li><p><code>perform_for_buildings</code> (boolean, optional, default: false) — If <code>true</code>, managers will also be assigned to buildings in the building group.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><code>responsible_users</code> (array[integer]) — List of added manager IDs.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","responsible-users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"bbcd93c5-c132-4652-98bf-4b1fa4fc1400","name":"Add managers to group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"responsible_users\": [\n        12345\n    ]\n}"}],"_postman_id":"f7b4b6ac-138c-4c20-a248-91575ad79986"},{"name":"Replace managers in group","id":"41ffb247-941c-4139-94e3-cc52d3b16d8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/","description":"<p>Replaces all managers in the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/building_groups/{id}/responsible-users/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>responsible_users</code> (array[integer], required) — New list of manager user IDs.</p>\n</li>\n<li><p><code>perform_for_buildings</code> (boolean, optional, default: false) — If <code>true</code>, manager assignments will also be synchronized for all buildings in the building group.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><code>responsible_users</code> (array[integer]) — Updated list of manager IDs.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","responsible-users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"4d12acfc-96f8-4fe7-92d6-4ab72b6ac93e","name":"Replace managers in group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"41ffb247-941c-4139-94e3-cc52d3b16d8b"},{"name":"Delete managers from group","id":"47b5dabe-baef-4de6-94be-53ac28edc857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/","description":"<p>Removes managers from the building group.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>DELETE /api/rest/v1/building_groups/{id}/responsible-users/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the building group.</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>responsible_users</code> (array[integer], required) — List of manager user IDs to remove.</p>\n</li>\n<li><p><code>perform_for_buildings</code> (boolean, optional, default: false) — If <code>true</code>, managers will also be removed from buildings in the building group.</p>\n</li>\n</ul>\n<h4 id=\"response\"><strong>Response</strong></h4>\n<ul>\n<li><code>204 No Content</code> — Managers successfully removed.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","building_groups","{building_group_id}","responsible-users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"3deceebf-09cc-4d10-ac0e-791501f8c30f","name":"Delete managers from group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{token_private_api}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"responsible_users\": [12345],\n  \"perform_for_buildings\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/building_groups/{building_group_id}/responsible-users/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"47b5dabe-baef-4de6-94be-53ac28edc857"}],"id":"0e60daaf-4aa4-46c5-8683-d72c14213157","description":"<h2 id=\"description\">Description</h2>\n<p>A Building Group is an entity used to объединить multiple Buildings into a single management unit.</p>\n<p>Building Groups can be used to manage shared responsible managers, permissions, and related operations across multiple buildings at once.</p>\n<p>A Building Group may contain:</p>\n<ul>\n<li><p>multiple buildings</p>\n</li>\n<li><p>multiple responsible managers</p>\n</li>\n<li><p>shared configuration and permissions</p>\n</li>\n</ul>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create building group</td>\n<td><code>/v1/building_groups/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get building groups</td>\n<td><code>/v1/building_groups/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned building groups only</td>\n</tr>\n<tr>\n<td>Get building group</td>\n<td><code>/v1/building_groups/:id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned building groups only</td>\n</tr>\n<tr>\n<td>Update building group</td>\n<td><code>/v1/building_groups/:id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Delete building group</td>\n<td><code>/v1/building_groups/:id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get buildings of building group</td>\n<td><code>/v1/building_groups/:id/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Add buildings to building group</td>\n<td><code>/v1/building_groups/:id/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Replace buildings in building group</td>\n<td><code>/v1/building_groups/:id/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Delete buildings from building group</td>\n<td><code>/v1/building_groups/:id/buildings/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get managers of building group</td>\n<td><code>/v1/building_groups/:id/responsible-users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned building groups only</td>\n</tr>\n<tr>\n<td>Add managers to building group</td>\n<td><code>/v1/building_groups/:id/responsible-users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Replace managers in building group</td>\n<td><code>/v1/building_groups/:id/responsible-users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Delete managers from building group</td>\n<td><code>/v1/building_groups/:id/responsible-users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><p><code>id</code> (path) — Unique identifier of the building group.</p>\n</li>\n<li><p><code>external_id</code> (query) — External identifier of the building group.</p>\n</li>\n<li><p><code>building_id</code> (integer) — Unique identifier of a building.</p>\n</li>\n<li><p><code>responsible_user_id</code> (integer) — Unique identifier of a manager user.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p>Creating a building group</p>\n</li>\n<li><p>Updating building group information</p>\n</li>\n<li><p>Deleting a building group</p>\n</li>\n<li><p>Assigning buildings to a building group</p>\n</li>\n<li><p>Managing responsible managers for multiple buildings at once</p>\n</li>\n<li><p>Synchronizing managers between building groups and buildings</p>\n</li>\n<li><p>Retrieving buildings assigned to a building group</p>\n</li>\n<li><p>Retrieving managers assigned to a building group</p>\n</li>\n</ul>\n","_postman_id":"0e60daaf-4aa4-46c5-8683-d72c14213157"},{"name":"Flat","item":[{"name":"Create flat","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"a6b231d3-27ac-41c2-afb2-a04dd325b9a7"}}],"id":"2695e968-fe98-45f0-8ea8-14620fd940ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"number\": \"string\",\n    \"building\": null,\n    \"directory\": \"integer\",\n    \"entrance\": \"string or null\",\n    \"floor\": \"string or null\",\n    \"area\": \"number or null\",\n    \"live_area\": \"number or null\",\n    \"room_count\": \"number or null\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/","description":"<p>This endpoint creates a new flat in the building.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>POST /api/rest/v1/flats/</code></p>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>number</code> (string, <strong>required</strong>) - Flat number. Max length: 256 characters.</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>) - The number of the building where the flat is being created.</p>\n</li>\n<li><p><code>directory</code> (integer) - Directory ID. Max length: 100 characters.</p>\n</li>\n<li><p><code>entrance</code> (string) - &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) - &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (number) - &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>live_area</code> (number) - &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>room_count</code> (number) &gt;= 0&lt;= 99</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (string, <strong>required</strong>) &lt;= 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (string) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>live_area</code> (integer) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>room_count</code> (integer) &gt;= 0&lt;= 99</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>equipment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) &gt;= 1</p>\n</li>\n<li><p><code>total</code> (integer or null) &gt;= 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"01014fd3-0504-4ed6-95fc-42332dd5e76f","name":"Successful response","originalRequest":{"method":"POST","header":[{}],"body":{"mode":"raw","raw":"{\n    \"number\": \"34\",\n    \"building\": 16025,\n    \"entrance\": \"From the side of the street\",\n    \"floor\": \"15\",\n    \"area\": \"55\",\n    \"live_area\": \"40\",\n    \"room_count\": \"2\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 28691,\n    \"number\": \"34\",\n    \"building\": 16025,\n    \"directory\": 538194,\n    \"entrance\": \"From the side of the street\",\n    \"floor\": \"15\",\n    \"area\": 55,\n    \"live_area\": 40,\n    \"room_count\": 2,\n    \"info\": {\n        \"general\": {\n            \"block_name\": \"general\",\n            \"notes\": \"\",\n            \"unit_number\": \"\",\n            \"room_type\": null,\n            \"category\": null,\n            \"equipment\": \"\",\n            \"rent_payment_type\": \"\",\n            \"condition\": null,\n            \"entrance\": \"\",\n            \"heat_type\": \"\",\n            \"property_share\": {\n                \"share\": null,\n                \"total\": null\n            },\n            \"contract_type\": null,\n            \"flat_specifics\": null\n        },\n        \"orag_cluster\": {\n            \"block_name\": \"orag_cluster\",\n            \"notes\": \"\",\n            \"flat_equipment\": \"\",\n            \"edv_number\": \"\",\n            \"unit_number\": \"\",\n            \"funding\": \"\",\n            \"cooling_type\": \"\",\n            \"reason_vacancy\": \"\",\n            \"reason_termination\": \"\",\n            \"meter_reading\": \"\",\n            \"keys\": \"\"\n        }\n    }\n}"}],"_postman_id":"2695e968-fe98-45f0-8ea8-14620fd940ae"},{"name":"Get flat","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"09dcb9c2-554d-46c8-b867-8df4cdaeb956"}}],"id":"1837a57d-6a37-46ea-a284-47cb10a23f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/{flat_id}/","description":"<p>Get flat.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>GET /api/rest/v1/flats/{flat_id}/</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>flat_id</code> (string, <strong>required</strong>) – Flat ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (string, <strong>required</strong>) &lt;= 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (string) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>live_area</code> (integer) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>room_count</code> (integer) &gt;= 0&lt;= 99</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>equipment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) &gt;= 1</p>\n</li>\n<li><p><code>total</code> (integer or null) &gt;= 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats","{flat_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"45e71b65-4ef9-4275-a21f-37cefa09a576","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/115381/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 115381,\n    \"external_id\": null,\n    \"number\": \"0\",\n    \"building\": 5133,\n    \"directory\": 1060180,\n    \"entrance\": \"3\",\n    \"floor\": \"2\",\n    \"area\": 87.2,\n    \"live_area\": 78.5,\n    \"room_count\": 3,\n    \"info\": {\n        \"general\": {\n            \"notes\": \"\",\n            \"category\": null,\n            \"entrance\": \"Schlossplatz 1, links\",\n            \"condition\": 1,\n            \"equipment\": \"Zwei Zimmer, separates WC, Badezimmer\",\n            \"heat_type\": \"Gaszentralheizung\",\n            \"room_type\": 1327,\n            \"block_name\": \"general\",\n            \"unit_number\": \"\",\n            \"contract_type\": null,\n            \"flat_specifics\": null,\n            \"property_share\": {\n                \"share\": null,\n                \"total\": null\n            },\n            \"rent_payment_type\": \"\"\n        },\n        \"orag_cluster\": {\n            \"keys\": \"\",\n            \"notes\": \"\",\n            \"funding\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"edv_number\": \"\",\n            \"unit_number\": \"\",\n            \"cooling_type\": \"\",\n            \"meter_reading\": \"\",\n            \"flat_equipment\": \"\",\n            \"reason_vacancy\": \"\",\n            \"reason_termination\": \"\"\n        }\n    }\n}"}],"_postman_id":"1837a57d-6a37-46ea-a284-47cb10a23f6c"},{"name":"Update flat","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"cbd3c3a8-07cd-4f03-a4e0-2823686f858c"}}],"id":"dc24e231-5b5c-4759-ab43-3b57b8bbe68d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"number\": \"string\",\n    \"building\": null,\n    \"directory\": \"integer\",\n    \"entrance\": \"string or null\",\n    \"floor\": \"string or null\",\n    \"area\": \"number or null\",\n    \"live_area\": \"number or null\",\n    \"room_count\": \"number or null\",\n    \"info\": \"object\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/{flat_id}/","description":"<p>Update flat.</p>\n<h4 id=\"endpoint\"><strong>Endpoint</strong>:</h4>\n<p><code>PATCH /api/rest/v1/flats/{flat_id}/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>flat_id</code> (string, <strong>required</strong>) – Flat ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>number</code> (string, <strong>required</strong>) &lt;= 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (string) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>live_area</code> (integer) &gt;= 0&lt;= 99999</p>\n</li>\n<li><p><code>room_count</code> (integer) &gt;= 0&lt;= 99</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>equipment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) &gt;= 1</p>\n</li>\n<li><p><code>total</code> (integer or null) &gt;= 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (string, <strong>required</strong>) &lt;= 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>floor</code> (string) &lt;= 32 characters</p>\n</li>\n<li><p><code>area</code> (string) &gt;= 0&lt;= 9999</p>\n</li>\n<li><p><code>live_area</code> (integer) &gt;= 0&lt;= 9999</p>\n</li>\n<li><p><code>room_count</code> (integer) &gt;= 0&lt;= 99</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>equipment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) &lt;= 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) &gt;= 1</p>\n</li>\n<li><p><code>total</code> (integer or null) &gt;= 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats","{flat_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"5f444688-60d4-4d74-bcbe-aa582b92826c","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"number\": \"12\",\n    \"building\": 12900,\n    \"entrance\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/24929/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 24929,\n    \"number\": \"12\",\n    \"building\": 12900,\n    \"directory\": 414731,\n    \"entrance\": \"\",\n    \"floor\": null,\n    \"area\": null,\n    \"live_area\": null,\n    \"room_count\": null,\n    \"info\": {\n        \"general\": {\n            \"notes\": \"\",\n            \"category\": null,\n            \"entrance\": \"Door No.12, Kralja Petra 56\",\n            \"condition\": null,\n            \"equipment\": \"\",\n            \"heat_type\": \"Common heat\",\n            \"room_type\": 1753,\n            \"block_name\": \"general\",\n            \"unit_number\": \"13\",\n            \"contract_type\": null,\n            \"flat_specifics\": null,\n            \"property_share\": {\n                \"share\": \"12.000\",\n                \"total\": 50\n            },\n            \"rent_payment_type\": \"EvryMountly\"\n        },\n        \"orag_cluster\": {\n            \"keys\": \"\",\n            \"notes\": \"\",\n            \"funding\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"edv_number\": \"\",\n            \"unit_number\": \"\",\n            \"cooling_type\": \"\",\n            \"meter_reading\": \"\",\n            \"flat_equipment\": \"\",\n            \"reason_vacancy\": \"\",\n            \"reason_termination\": \"\"\n        }\n    }\n}"}],"_postman_id":"dc24e231-5b5c-4759-ab43-3b57b8bbe68d"},{"name":"Delete flat","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"4ca704b2-30ec-4594-a70d-1282c81a3bde"}}],"id":"40531100-a778-4cf5-9669-607b2802f828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/{flat_id}/","description":"<p>To delete a flat which has dwellers living in or a landlord who owns it update corresponding user's <code>flat</code> field first.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>DELETE /api/rest/v1/flats/{flat_id}/</code></p>\n<h4 id=\"path-parameters\">Path parameters:</h4>\n<p><code>flat_id</code> (integer, <strong>required</strong>) - ID of the flat to delete.</p>\n","urlObject":{"path":["api","rest","v1","flats","{flat_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"b063f13f-b175-434f-9db9-eb9bf9a43936","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/1299/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"40531100-a778-4cf5-9669-607b2802f828"},{"name":"Get igel flats","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"65f02603-1ebb-4a59-a9eb-885a9e0899e5"}}],"id":"e71bfccc-218a-4880-916a-4727b353d737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/igel/?building_id={building_id_igel}","description":"<p>Get flat list from igel</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/flats/igel/</code></p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><code>building_id</code> (integer) – building's igel id</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links (structure not detailed).</p>\n</li>\n<li><p><code>results</code> (array of <code>FlatLink</code> objects) — List of flat links. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>external_id</code> (string) — ID of the object in the external system.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats","igel",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>building's igel id</p>\n","type":"text/plain"},"key":"building_id","value":"{building_id_igel}"}],"variable":[]}},"response":[{"id":"63228143-44c4-44a6-99d3-6b08a29af909","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/igel/?building_id={building_id_igel}","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","flats","igel",""],"query":[{"key":"building_id","value":"{building_id_igel}","description":"building's igel id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": 1233,\n        \"external_id\": \"eert-1334\"\n    }\n]"}],"_postman_id":"e71bfccc-218a-4880-916a-4727b353d737"},{"name":"Get igel flat detail","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"0e9083e5-12d9-41e3-b341-b9a33768533d"}}],"id":"601839db-9e72-488b-bb20-9d8530aa89db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/igel/{external_id}/","description":"<p>Get flat detail</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/flats/igel/{external_id}/</code></p>\n<h4 id=\"query-parameters\"><strong>Query Parameters:</strong></h4>\n<ul>\n<li><code>external_id</code> (string) - ID of the object in the external system</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>external_id</code> (string) — ID of the object in the external system</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats","igel","{external_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"b1da6956-3d0a-4248-bc7f-7e5a14b1d9fc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/igel/{external_id}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 0,\n    \"external_id\": \"string\"\n}"},{"id":"9abeaab7-c51c-4967-81ab-b8e4b44a20fa","name":"Not found","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/igel/{external_id}/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": \"string\",\n    \"status_code\": 0\n}"}],"_postman_id":"601839db-9e72-488b-bb20-9d8530aa89db"}],"id":"22debbfc-6b1f-422f-ac0d-9977c6b656f7","description":"<h2 id=\"description\">Description</h2>\n<p>A separate room in an apartment Building. It consists of one or more rooms. The flat belongs to the Owner of the apartment (Landlord). A Dweller can live in the apartment.</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create flat</td>\n<td><code>/v1/flats/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create flats in assigned buildings only</td>\n</tr>\n<tr>\n<td>Get flat</td>\n<td><code>/v1/flats/:flat_id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to flats in assigned buildings only</td>\n</tr>\n<tr>\n<td>Update flat</td>\n<td><code>/v1/flats/:flat_id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update flats in assigned buildings only</td>\n</tr>\n<tr>\n<td>Delete flat</td>\n<td><code>/v1/flats/:flat_id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Delete flats in assigned buildings only</td>\n</tr>\n<tr>\n<td>Get flats by user</td>\n<td><code>/v1/users/:user_id/flats/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to flats from assigned buildings only</td>\n</tr>\n<tr>\n<td>Get igel flats</td>\n<td><code>/v1/flats/igel/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Get igel flat detail</td>\n<td><code>/v1/flats/igel/:external_id/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><p><code>flat_id</code> (path): The unique key of the flat (you can get it in the list of flats or find it in the URL of the management company's portal in the list of Flats).</p>\n</li>\n<li><p><code>user_id</code> (path) The unique key of the user (you can get it in the list of users or find it in the URL of the management company's portal in the list of Users)</p>\n</li>\n<li><p><code>external_id</code>(path) The unique key of the flats in the IGEL</p>\n</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p>Getting a list of flats in PMC</p>\n</li>\n<li><p>Creating a flat</p>\n</li>\n<li><p>Updating information about a flat by <code>:flat_id</code></p>\n</li>\n<li><p>Deleting a flat by <code>:flat_id</code></p>\n</li>\n<li><p>Getting a list of flats for user by its <code>:user_id</code></p>\n</li>\n</ul>\n","_postman_id":"22debbfc-6b1f-422f-ac0d-9977c6b656f7"},{"name":"User","item":[{"name":"List users","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6eff6073-4b46-4a5c-bb0b-8146632b9712"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"239db85d-13af-4fcb-b046-6162aa9ed481"}}],"id":"1aade35e-b91f-4207-b028-429d6b627570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":" {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/?page=&page_size=&external_id=124534125314","description":"<p>Paginated list of users.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/users/</code></p>\n<h4 id=\"query-parameters\"><strong>Query Parameters:</strong></h4>\n<ul>\n<li><p><code>page</code> (optional) – Page number (can be empty to disable pagination).</p>\n</li>\n<li><p><code>page_size</code> (optional) – Items per page (can be empty to disable pagination).</p>\n</li>\n<li><p><code>external_id</code> (string) – External identifier to filter users. Parameter for searching by external_id</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n<li><p><code>info</code>(object):</p>\n<ul>\n<li><p><code>address</code> (object):</p>\n<ul>\n<li><p><code>city</code> (string)&lt;= 245 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>street</code> (string) &lt;= 245 characters</p>\n</li>\n<li><p><code>address</code> (string) &lt;= 500 characters</p>\n</li>\n<li><p><code>country</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>postcode</code> (string)&lt;= 10 characters</p>\n</li>\n<li><p><code>address_2</code> (string)&lt;= 500 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p>partner (object):</p>\n<ul>\n<li><p><code>email</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>phone</code> (string)&lt;= 32 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>last_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>first_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>personal</code> (object):</p>\n<ul>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>status</code> (integer or null)</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>gdpr_info</code> (string)&lt;= 1024 characters</p>\n</li>\n<li><p><code>name_info</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>preferred_communication</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>financial</code> (object):</p>\n<ul>\n<li><p><code>bic</code> (string)&lt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string)&lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>payment_type</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>deposit</code> (object)</p>\n<ul>\n<li><p><code>amount</code> (string) Example:1.23</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n<li><p><code>open_amount</code> (object):</p>\n<ul>\n<li><p><code>amount</code> (string) Example:2.34</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":""},{"description":{"content":"<p>Number of items in one page</p>\n","type":"text/plain"},"key":"page_size","value":""},{"description":{"content":"<p>Parameter for searching by external_id</p>\n","type":"text/plain"},"key":"external_id","value":"124534125314"}],"variable":[]}},"response":[{"id":"c66daaee-7932-45e7-9d26-96b21de99188","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","users",""],"query":[{"key":"page","value":"","description":"Page number","disabled":true},{"key":"page_size","value":"","description":"Number of items in one page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1157,\n    \"pages\": 12,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/users/?page=2\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/users/?page=last\"\n    },\n    \"results\": [\n        {\n            \"id\": 3969160,\n            \"name\": \"Mike.diekmann+23498@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"Mike.diekmann+23498@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3756025,\n            \"name\": \"jakob.eggl+2309240942@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"jakob.eggl+2309240942@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3744704,\n            \"name\": \"ar+432@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"ar+432@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3411358,\n            \"name\": \"Martin\",\n            \"second_name\": \"Schönherr\",\n            \"role\": \"dweller\",\n            \"email\": \"martin.schoenherr88@idwell.com\",\n            \"phone\": \"43957384924\",\n            \"status\": 2,\n            \"directory\": 114830130,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                2210647\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"Kittendorf\",\n                    \"notes\": \"\",\n                    \"street\": \"Dorfstr.\",\n                    \"address\": \"Dorfstr. 10, 17153 Kittendorf\",\n                    \"country\": \"DE\",\n                    \"postcode\": \"17153\",\n                    \"address_2\": \"10\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"Martin Schönherr\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1109,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3411355,\n            \"name\": \"Sandra\",\n            \"second_name\": \"Mohn\",\n            \"role\": \"landlord\",\n            \"email\": \"sandra.mohn@idwell.com\",\n            \"phone\": \"4367812345678\",\n            \"status\": 2,\n            \"directory\": 114830082,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                2210646\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"Wiesbaden\",\n                    \"notes\": \"\",\n                    \"street\": \"Brunhildenstr.\",\n                    \"address\": \"Brunhildenstr. 10, 65189 Wiesbaden\",\n                    \"country\": \"DE\",\n                    \"postcode\": \"65189\",\n                    \"address_2\": \"10\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"Dr.\",\n                    \"status\": null,\n                    \"full_name\": \"Sandra Mohn\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1108,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3319363,\n            \"name\": \"Hans\",\n            \"second_name\": \"Müller\",\n            \"role\": \"dweller\",\n            \"email\": \"phillip.scholz+3@idwell.com\",\n            \"phone\": null,\n            \"status\": 0,\n            \"directory\": 112691008,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                115381\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": 6799,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3216013,\n            \"name\": \"katharina.strobl+1@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"katharina.strobl+1@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3159152,\n            \"name\": \"Hausverwaltung\",\n            \"second_name\": \"ABC\",\n            \"role\": \"admin\",\n            \"email\": \"e-mail-versand@idwell.com\",\n            \"phone\": null,\n            \"status\": 2,\n            \"directory\": 107764955,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3146345,\n            \"name\": \"Marko\",\n            \"second_name\": \"Hirschnigg\",\n            \"role\": \"dweller\",\n            \"email\": \"marko.hirschnigg+2@idwell.com\",\n            \"phone\": \"4369919482325\",\n            \"status\": 1,\n            \"directory\": 107300013,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                114663\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"Wien\",\n                    \"notes\": \"\",\n                    \"street\": \"Margaretenstraße\",\n                    \"address\": \"\",\n                    \"country\": \"Österreich\",\n                    \"postcode\": \"1050\",\n                    \"address_2\": \"70/2/7\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"+43959400656\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": 6502,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"ksüdjbgfüaskbdjgaüsjbgüadojbgfüadjbgüajdfbgaüejrbg\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1109,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": 67\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3138696,\n            \"name\": \"test@test.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"test@test.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3138694,\n            \"name\": \"mike.diekmann+324958@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"mike.diekmann+324958@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3130481,\n            \"name\": \"Kathi\",\n            \"second_name\": \"Strobl\",\n            \"role\": \"dweller\",\n            \"email\": \"katharina.strobl+1@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": 106691823,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                114269\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": 4951,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3112466,\n            \"name\": \"marko.hirschnigg+1@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"marko.hirschnigg+1@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3094578,\n            \"name\": \"allo@allo.allo\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"allo@allo.allo\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3040140,\n            \"name\": \"thomas.gasser@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"thomas.gasser@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 3023401,\n            \"name\": \"versicherung+12894@idwell.com\",\n            \"second_name\": null,\n            \"role\": \"worker\",\n            \"email\": \"versicherung+12894@idwell.com\",\n            \"phone\": null,\n            \"status\": 1,\n            \"directory\": null,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853128,\n            \"name\": \"Heike\",\n            \"second_name\": \"Schwarz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241527@idwell.com\",\n            \"phone\": \"43491786677889\",\n            \"status\": 2,\n            \"directory\": 96977088,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870865\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853127,\n            \"name\": \"Simone\",\n            \"second_name\": \"Falk\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241526@idwell.com\",\n            \"phone\": \"43496315566778\",\n            \"status\": 2,\n            \"directory\": 96977084,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870864\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853126,\n            \"name\": \"Nathalie\",\n            \"second_name\": \"Weiß\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241525@idwell.com\",\n            \"phone\": \"43491502233445\",\n            \"status\": 2,\n            \"directory\": 96977080,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870863\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853125,\n            \"name\": \"Sina\",\n            \"second_name\": \"Wolff\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241524@idwell.com\",\n            \"phone\": \"43492517788990\",\n            \"status\": 2,\n            \"directory\": 96977076,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870862\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853124,\n            \"name\": \"Corinna\",\n            \"second_name\": \"Berger\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241523@idwell.com\",\n            \"phone\": \"43491644455667\",\n            \"status\": 2,\n            \"directory\": 96977071,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870861\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853123,\n            \"name\": \"Pia\",\n            \"second_name\": \"Winter\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241522@idwell.com\",\n            \"phone\": \"43493916677889\",\n            \"status\": 2,\n            \"directory\": 96977059,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870860\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853122,\n            \"name\": \"Olivia\",\n            \"second_name\": \"Busch\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241521@idwell.com\",\n            \"phone\": \"43491721234432\",\n            \"status\": 2,\n            \"directory\": 96977053,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870859\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853121,\n            \"name\": \"Stefanie\",\n            \"second_name\": \"Bender\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241520@idwell.com\",\n            \"phone\": \"43497214455667\",\n            \"status\": 2,\n            \"directory\": 96977049,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870858\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853120,\n            \"name\": \"Helene\",\n            \"second_name\": \"Wild\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241519@idwell.com\",\n            \"phone\": \"43491533344556\",\n            \"status\": 2,\n            \"directory\": 96977042,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870857\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853119,\n            \"name\": \"Karina\",\n            \"second_name\": \"Reich\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241517@idwell.com\",\n            \"phone\": \"43491695566778\",\n            \"status\": 2,\n            \"directory\": 96977038,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870856\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853118,\n            \"name\": \"Andrea\",\n            \"second_name\": \"Holler\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241516@idwell.com\",\n            \"phone\": \"43495516677889\",\n            \"status\": 2,\n            \"directory\": 96977034,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870855\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853117,\n            \"name\": \"Claudia\",\n            \"second_name\": \"Lindner\",\n            \"role\": \"landlord\",\n            \"email\": \"claudia.lindner@idwell.com\",\n            \"phone\": \"43491742233445\",\n            \"status\": 2,\n            \"directory\": 96977030,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870854\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1108,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853116,\n            \"name\": \"Sabine\",\n            \"second_name\": \"Krämer\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241514@idwell.com\",\n            \"phone\": \"43493714455667\",\n            \"status\": 2,\n            \"directory\": 96977025,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870853\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853115,\n            \"name\": \"Louisa\",\n            \"second_name\": \"Engel\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241513@idwell.com\",\n            \"phone\": \"43491541122334\",\n            \"status\": 2,\n            \"directory\": 96977019,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870852\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853114,\n            \"name\": \"Elisabeth\",\n            \"second_name\": \"Reuter\",\n            \"role\": \"landlord\",\n            \"email\": \"elisabeth.reuter@idwell.com\",\n            \"phone\": \"43498213344556\",\n            \"status\": 2,\n            \"directory\": 96977014,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870851\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1108,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853113,\n            \"name\": \"Pauline\",\n            \"second_name\": \"Schuster\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241511@idwell.com\",\n            \"phone\": \"43491687788990\",\n            \"status\": 2,\n            \"directory\": 96977008,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870850\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853112,\n            \"name\": \"Hannah\",\n            \"second_name\": \"Vogel\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241510@idwell.com\",\n            \"phone\": \"43499319988776\",\n            \"status\": 2,\n            \"directory\": 96977002,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870849\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853111,\n            \"name\": \"Bernd\",\n            \"second_name\": \"Franke\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241509@idwell.com\",\n            \"phone\": \"43491756677889\",\n            \"status\": 2,\n            \"directory\": 96976997,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870848\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853110,\n            \"name\": \"Georg\",\n            \"second_name\": \"Pohl\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241507@idwell.com\",\n            \"phone\": \"43491585566778\",\n            \"status\": 2,\n            \"directory\": 96976992,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870847\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853109,\n            \"name\": \"Leonhard\",\n            \"second_name\": \"Wirth\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241506@idwell.com\",\n            \"phone\": \"43494511234432\",\n            \"status\": 2,\n            \"directory\": 96976986,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870846\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853108,\n            \"name\": \"Jakob\",\n            \"second_name\": \"Sauer\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241505@idwell.com\",\n            \"phone\": \"43491659988776\",\n            \"status\": 2,\n            \"directory\": 96976982,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870845\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853107,\n            \"name\": \"Arthur\",\n            \"second_name\": \"Steinmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241504@idwell.com\",\n            \"phone\": \"43493812233445\",\n            \"status\": 2,\n            \"directory\": 96976971,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870844\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853106,\n            \"name\": \"René\",\n            \"second_name\": \"Gruber\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241503@idwell.com\",\n            \"phone\": \"43491735566778\",\n            \"status\": 2,\n            \"directory\": 96976964,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870843\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853105,\n            \"name\": \"Markus\",\n            \"second_name\": \"Bayer\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241502@idwell.com\",\n            \"phone\": \"43496417788990\",\n            \"status\": 2,\n            \"directory\": 96976958,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870842\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853104,\n            \"name\": \"Stephan\",\n            \"second_name\": \"Dorn\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241501@idwell.com\",\n            \"phone\": \"43491564455667\",\n            \"status\": 2,\n            \"directory\": 96976954,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870841\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853103,\n            \"name\": \"Rafael\",\n            \"second_name\": \"Heine\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241500@idwell.com\",\n            \"phone\": \"43495216677889\",\n            \"status\": 2,\n            \"directory\": 96976950,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870840\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853102,\n            \"name\": \"Moritz\",\n            \"second_name\": \"Lenz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241499@idwell.com\",\n            \"phone\": \"43491672233445\",\n            \"status\": 2,\n            \"directory\": 96976946,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870839\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853101,\n            \"name\": \"Fabian\",\n            \"second_name\": \"Neumann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241497@idwell.com\",\n            \"phone\": \"43491774455667\",\n            \"status\": 2,\n            \"directory\": 96976941,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870838\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853100,\n            \"name\": \"Jonas\",\n            \"second_name\": \"Henkel\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241496@idwell.com\",\n            \"phone\": \"43495611122334\",\n            \"status\": 2,\n            \"directory\": 96976933,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870837\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853099,\n            \"name\": \"Ralf\",\n            \"second_name\": \"Petersen\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241495@idwell.com\",\n            \"phone\": \"43491559876543\",\n            \"status\": 2,\n            \"directory\": 96976925,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870836\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853098,\n            \"name\": \"Adrian\",\n            \"second_name\": \"Kurz\",\n            \"role\": \"landlord\",\n            \"email\": \"adrian.kurz@idwell.com\",\n            \"phone\": \"43494313344556\",\n            \"status\": 2,\n            \"directory\": 96976918,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870835\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": 1109,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853097,\n            \"name\": \"Erik\",\n            \"second_name\": \"Hoffmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241493@idwell.com\",\n            \"phone\": \"43491617788990\",\n            \"status\": 2,\n            \"directory\": 96976913,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870834\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853095,\n            \"name\": \"Manuel\",\n            \"second_name\": \"Ziegler\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241492@idwell.com\",\n            \"phone\": \"43492411234567\",\n            \"status\": 2,\n            \"directory\": 96976906,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870833\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853092,\n            \"name\": \"Sven\",\n            \"second_name\": \"Herzog\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241491@idwell.com\",\n            \"phone\": \"43491593322110\",\n            \"status\": 2,\n            \"directory\": 96976898,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870832\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853091,\n            \"name\": \"Patrick\",\n            \"second_name\": \"Mohr\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241490@idwell.com\",\n            \"phone\": \"43496215566778\",\n            \"status\": 2,\n            \"directory\": 96976893,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870831\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853090,\n            \"name\": \"Jules\",\n            \"second_name\": \"Sommer\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241489@idwell.com\",\n            \"phone\": \"43491712233445\",\n            \"status\": 2,\n            \"directory\": 96976883,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870830\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853089,\n            \"name\": \"Kim\",\n            \"second_name\": \"Krüger\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241487@idwell.com\",\n            \"phone\": \"43491621123344\",\n            \"status\": 2,\n            \"directory\": 96976874,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870829\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853088,\n            \"name\": \"Noah\",\n            \"second_name\": \"Stark\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241486@idwell.com\",\n            \"phone\": \"43493316677889\",\n            \"status\": 2,\n            \"directory\": 96976869,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870828\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853087,\n            \"name\": \"Elias\",\n            \"second_name\": \"Böhme\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241485@idwell.com\",\n            \"phone\": \"43491792233445\",\n            \"status\": 2,\n            \"directory\": 96976865,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870827\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853086,\n            \"name\": \"Taylor\",\n            \"second_name\": \"Prinz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241484@idwell.com\",\n            \"phone\": \"43495113322110\",\n            \"status\": 2,\n            \"directory\": 96976860,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870826\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853085,\n            \"name\": \"Sky\",\n            \"second_name\": \"Lehmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241483@idwell.com\",\n            \"phone\": \"43491574455667\",\n            \"status\": 2,\n            \"directory\": 96976855,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870825\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853084,\n            \"name\": \"André\",\n            \"second_name\": \"Kluge\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241482@idwell.com\",\n            \"phone\": \"43493411234432\",\n            \"status\": 2,\n            \"directory\": 96976849,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870824\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853083,\n            \"name\": \"Finja\",\n            \"second_name\": \"Scholz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241481@idwell.com\",\n            \"phone\": \"43491636677889\",\n            \"status\": 2,\n            \"directory\": 96976845,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870823\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853082,\n            \"name\": \"Timo\",\n            \"second_name\": \"Fröhlich\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241480@idwell.com\",\n            \"phone\": \"434961315566778\",\n            \"status\": 2,\n            \"directory\": 96976841,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870822\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853081,\n            \"name\": \"Jule\",\n            \"second_name\": \"Kraft\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241479@idwell.com\",\n            \"phone\": \"43491704455667\",\n            \"status\": 2,\n            \"directory\": 96976833,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870821\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853080,\n            \"name\": \"Toni\",\n            \"second_name\": \"Busch\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241477@idwell.com\",\n            \"phone\": \"43491521122334\",\n            \"status\": 2,\n            \"directory\": 96976828,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870820\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853079,\n            \"name\": \"Jamie\",\n            \"second_name\": \"Stahl\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241476@idwell.com\",\n            \"phone\": \"4349897788990\",\n            \"status\": 2,\n            \"directory\": 96976819,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870819\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853078,\n            \"name\": \"Luca\",\n            \"second_name\": \"Herzog\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241475@idwell.com\",\n            \"phone\": \"434916033445566\",\n            \"status\": 2,\n            \"directory\": 96976814,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870818\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853077,\n            \"name\": \"Robin\",\n            \"second_name\": \"Maier\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241474@idwell.com\",\n            \"phone\": \"4349401122334\",\n            \"status\": 2,\n            \"directory\": 96976809,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870817\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853075,\n            \"name\": \"Chris\",\n            \"second_name\": \"Lorenz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241473@idwell.com\",\n            \"phone\": \"434917666554433\",\n            \"status\": 2,\n            \"directory\": 96976797,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870816\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853073,\n            \"name\": \"Kim\",\n            \"second_name\": \"Vogel\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241472@idwell.com\",\n            \"phone\": \"4349691234567\",\n            \"status\": 2,\n            \"directory\": 96976792,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870815\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853072,\n            \"name\": \"Sam\",\n            \"second_name\": \"Fink\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241471@idwell.com\",\n            \"phone\": \"434915144556677\",\n            \"status\": 2,\n            \"directory\": 96976785,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870814\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853071,\n            \"name\": \"Alex\",\n            \"second_name\": \"Berger\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241470@idwell.com\",\n            \"phone\": \"4349309876543\",\n            \"status\": 2,\n            \"directory\": 96976780,\n            \"external_id\": \"909080900909\",\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870813\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853070,\n            \"name\": \"Vanessa\",\n            \"second_name\": \"Schmid\",\n            \"role\": \"landlord\",\n            \"email\": \"mike.diekmann+34234@idwell.com\",\n            \"phone\": \"434917833445566\",\n            \"status\": 0,\n            \"directory\": 96976775,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870812\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853069,\n            \"name\": \"Nadine\",\n            \"second_name\": \"Ziegler\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241467@idwell.com\",\n            \"phone\": \"434916455667788\",\n            \"status\": 2,\n            \"directory\": 96976771,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870811\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853068,\n            \"name\": \"Nicole\",\n            \"second_name\": \"Seidel\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241466@idwell.com\",\n            \"phone\": \"434917266554433\",\n            \"status\": 2,\n            \"directory\": 96976764,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870810\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853067,\n            \"name\": \"Sandra\",\n            \"second_name\": \"Groß\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241465@idwell.com\",\n            \"phone\": \"434915311223344\",\n            \"status\": 2,\n            \"directory\": 96976758,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870809\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853066,\n            \"name\": \"Linda\",\n            \"second_name\": \"Hartmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241464@idwell.com\",\n            \"phone\": \"434916944455566\",\n            \"status\": 2,\n            \"directory\": 96976752,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870808\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853065,\n            \"name\": \"Miriam\",\n            \"second_name\": \"Lang\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241463@idwell.com\",\n            \"phone\": \"434917498765432\",\n            \"status\": 2,\n            \"directory\": 96976748,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870807\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853064,\n            \"name\": \"Clara\",\n            \"second_name\": \"Albrecht\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241462@idwell.com\",\n            \"phone\": \"434915434567890\",\n            \"status\": 2,\n            \"directory\": 96976744,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870806\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853063,\n            \"name\": \"Viktoria\",\n            \"second_name\": \"Stein\",\n            \"role\": \"landlord\",\n            \"email\": \"\",\n            \"phone\": \"436601043263\",\n            \"status\": 0,\n            \"directory\": 96976740,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870805\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853062,\n            \"name\": \"Theresa\",\n            \"second_name\": \"Franke\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241460@idwell.com\",\n            \"phone\": \"434917566778899\",\n            \"status\": 2,\n            \"directory\": 96976731,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870804\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853061,\n            \"name\": \"Daniela\",\n            \"second_name\": \"Hoffmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241459@idwell.com\",\n            \"phone\": \"434917899887766\",\n            \"status\": 2,\n            \"directory\": 96976723,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870803\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853060,\n            \"name\": \"Carolin\",\n            \"second_name\": \"Klein\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241457@idwell.com\",\n            \"phone\": \"434916510101010\",\n            \"status\": 2,\n            \"directory\": 96976718,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870802\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853059,\n            \"name\": \"Melanie\",\n            \"second_name\": \"Arnold\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241456@idwell.com\",\n            \"phone\": \"434917390909090\",\n            \"status\": 2,\n            \"directory\": 96976713,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870801\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853058,\n            \"name\": \"Christina\",\n            \"second_name\": \"Haas\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241455@idwell.com\",\n            \"phone\": \"434915667676767\",\n            \"status\": 2,\n            \"directory\": 96976705,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870800\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853057,\n            \"name\": \"Franziska\",\n            \"second_name\": \"Vogt\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241454@idwell.com\",\n            \"phone\": \"434916745454545\",\n            \"status\": 2,\n            \"directory\": 96976701,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870799\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853056,\n            \"name\": \"Marie\",\n            \"second_name\": \"König\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241453@idwell.com\",\n            \"phone\": \"434917723232323\",\n            \"status\": 2,\n            \"directory\": 96976697,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870798\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853055,\n            \"name\": \"Katharina\",\n            \"second_name\": \"Lehmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241452@idwell.com\",\n            \"phone\": \"434915566655544\",\n            \"status\": 2,\n            \"directory\": 96976693,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870797\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853054,\n            \"name\": \"Amelie\",\n            \"second_name\": \"Wolf\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241451@idwell.com\",\n            \"phone\": \"434916155566677\",\n            \"status\": 2,\n            \"directory\": 96976689,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870796\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853053,\n            \"name\": \"Johanna\",\n            \"second_name\": \"Weiß\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241450@idwell.com\",\n            \"phone\": \"434917112344321\",\n            \"status\": 2,\n            \"directory\": 96976685,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870795\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853052,\n            \"name\": \"Sarah\",\n            \"second_name\": \"Keller\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241449@idwell.com\",\n            \"phone\": \"434915977889900\",\n            \"status\": 2,\n            \"directory\": 96976681,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870794\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853051,\n            \"name\": \"Lena\",\n            \"second_name\": \"Fuchs\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241447@idwell.com\",\n            \"phone\": \"434917944332211\",\n            \"status\": 2,\n            \"directory\": 96976677,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870793\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853050,\n            \"name\": \"Mia\",\n            \"second_name\": \"Schneider\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241446@idwell.com\",\n            \"phone\": \"434915799887766\",\n            \"status\": 2,\n            \"directory\": 96976673,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870792\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853049,\n            \"name\": \"Emma\",\n            \"second_name\": \"Weber\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241445@idwell.com\",\n            \"phone\": \"434916355667788\",\n            \"status\": 2,\n            \"directory\": 96976669,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870791\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853048,\n            \"name\": \"Sophie\",\n            \"second_name\": \"Müller\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241444@idwell.com\",\n            \"phone\": \"434917011223344\",\n            \"status\": 2,\n            \"directory\": 96976663,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870790\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853047,\n            \"name\": \"Laura\",\n            \"second_name\": \"Becker\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241443@idwell.com\",\n            \"phone\": \"434915276543210\",\n            \"status\": 2,\n            \"directory\": 96976653,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870789\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853046,\n            \"name\": \"Lisa\",\n            \"second_name\": \"Schulz\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241442@idwell.com\",\n            \"phone\": \"434916098765432\",\n            \"status\": 2,\n            \"directory\": 96976649,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870788\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853045,\n            \"name\": \"Anna\",\n            \"second_name\": \"Wagner\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241441@idwell.com\",\n            \"phone\": \"434917687654321\",\n            \"status\": 2,\n            \"directory\": 96976645,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870787\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853044,\n            \"name\": \"Julia\",\n            \"second_name\": \"Bauer\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241440@idwell.com\",\n            \"phone\": \"434915112345678\",\n            \"status\": 2,\n            \"directory\": 96976641,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870786\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853043,\n            \"name\": \"Erik\",\n            \"second_name\": \"Horn\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241439@idwell.com\",\n            \"phone\": \"43496314455667\",\n            \"status\": 2,\n            \"directory\": 96976637,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870785\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853042,\n            \"name\": \"Julian\",\n            \"second_name\": \"Groß\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241437@idwell.com\",\n            \"phone\": \"43493915566778\",\n            \"status\": 2,\n            \"directory\": 96976632,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870784\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853041,\n            \"name\": \"Dominik\",\n            \"second_name\": \"Albrecht\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241436@idwell.com\",\n            \"phone\": \"43497212233445\",\n            \"status\": 2,\n            \"directory\": 96976628,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870783\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2853040,\n            \"name\": \"Nico\",\n            \"second_name\": \"Hartmann\",\n            \"role\": \"landlord\",\n            \"email\": \"noreply+1812241435@idwell.com\",\n            \"phone\": \"43492314455667\",\n            \"status\": 2,\n            \"directory\": 96976622,\n            \"external_id\": null,\n            \"managed_buildings\": [],\n            \"flats\": [\n                1870782\n            ],\n            \"info\": {\n                \"address\": {\n                    \"city\": \"\",\n                    \"notes\": \"\",\n                    \"street\": \"\",\n                    \"address\": \"\",\n                    \"country\": \"\",\n                    \"postcode\": \"\",\n                    \"address_2\": \"\",\n                    \"block_name\": \"address\"\n                },\n                \"partner\": {\n                    \"email\": \"\",\n                    \"notes\": \"\",\n                    \"phone\": \"\",\n                    \"title\": \"\",\n                    \"full_name\": \"\",\n                    \"last_name\": \"\",\n                    \"block_name\": \"partner\",\n                    \"first_name\": \"\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\"\n                },\n                \"personal\": {\n                    \"notes\": \"\",\n                    \"title\": \"\",\n                    \"status\": null,\n                    \"full_name\": \"\",\n                    \"gdpr_info\": \"\",\n                    \"name_info\": \"\",\n                    \"block_name\": \"personal\",\n                    \"salutation\": null,\n                    \"middle_name\": \"\",\n                    \"preferred_communication\": null\n                },\n                \"financial\": {\n                    \"bic\": \"\",\n                    \"iban\": \"\",\n                    \"notes\": \"\",\n                    \"deposit\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"bank_name\": \"\",\n                    \"block_name\": \"financial\",\n                    \"open_amount\": {\n                        \"amount\": \"0.00\",\n                        \"currency\": \"EUR\"\n                    },\n                    \"payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"notes\": \"\",\n                    \"remedy\": \"\",\n                    \"fundings\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"deposit_type\": \"\",\n                    \"guaranteed_value\": \"\",\n                    \"termination_time\": \"\",\n                    \"termination_denied\": \"\",\n                    \"stop_overdue_notice\": \"\",\n                    \"termination_timeframe\": \"\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"1aade35e-b91f-4207-b028-429d6b627570"},{"name":"Create user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"660c735a-75b8-4e52-9afa-8ee33bfb4d59"}}],"id":"9252c141-6653-4e01-a26e-738256fe09db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":" {{token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"second_name\": \"string\",\n  \"role\": \"dweller\",\n  \"email\": \"string\",\n  \"phone\": \"string\",\n  \"status\": 0,\n  \"directory\": 0,\n  \"external_id\": \"string\",\n  \"managed_buildings\": [\n    0\n  ],\n  \"flats\": [\n    0\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/","description":"<p>Create user.</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/users/</code></p>\n<p><strong>Request Body Parameters:</strong></p>\n<ul>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n</ul>\n<blockquote>\n<p>Status description:<br />0 - invited<br />1 - active<br />2 - imported<br />3 - blocked<br />4 - not confirmed </p>\n</blockquote>\n<ul>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n<li><p><code>info</code>(object):</p>\n<ul>\n<li><p><code>address</code> (object):</p>\n<ul>\n<li><p><code>city</code> (string)&lt;= 245 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>street</code> (string) &lt;= 245 characters</p>\n</li>\n<li><p><code>address</code> (string) &lt;= 500 characters</p>\n</li>\n<li><p><code>country</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>postcode</code> (string)&lt;= 10 characters</p>\n</li>\n<li><p><code>address_2</code> (string)&lt;= 500 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p>partner (object):</p>\n<ul>\n<li><p><code>email</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>phone</code> (string)&lt;= 32 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>last_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>first_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>personal</code> (object):</p>\n<ul>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>status</code> (integer or null)</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>gdpr_info</code> (string)&lt;= 1024 characters</p>\n</li>\n<li><p><code>name_info</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>preferred_communication</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>financial</code> (object):</p>\n<ul>\n<li><p><code>bic</code> (string)&lt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string)&lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>payment_type</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>deposit</code> (object)</p>\n<ul>\n<li><p><code>amount</code> (string) Example:1.23</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n<li><p><code>open_amount</code> (object):</p>\n<ul>\n<li><p><code>amount</code> (string) Example:2.34</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"f990cc38-c787-40d3-b03b-d9856d6975b5","name":"Create manager. Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Mike\",\n  \"second_name\": \"Diekmann\",\n  \"role\": \"manager\",\n  \"email\": \"mike.diekmann+1@idwell.com\",\n  \"status\": 1,\n  \"managed_buildings\": [16027]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2842734,\n    \"name\": \"Mike\",\n    \"second_name\": \"Diekmann\",\n    \"role\": \"admin\",\n    \"email\": \"mike.diekmann+1@idwell.com\",\n    \"phone\": null,\n    \"status\": 1,\n    \"directory\": 96641663,\n    \"external_id\": null,\n    \"managed_buildings\": [16027],\n    \"flats\": [],\n    \"info\": {\n        \"address\": {\n            \"city\": \"\",\n            \"notes\": \"\",\n            \"street\": \"\",\n            \"address\": \"\",\n            \"country\": \"\",\n            \"postcode\": \"\",\n            \"address_2\": \"\",\n            \"block_name\": \"address\"\n        },\n        \"partner\": {\n            \"email\": \"\",\n            \"notes\": \"\",\n            \"phone\": \"\",\n            \"title\": \"\",\n            \"full_name\": \"\",\n            \"last_name\": \"\",\n            \"block_name\": \"partner\",\n            \"first_name\": \"\",\n            \"salutation\": null,\n            \"middle_name\": \"\"\n        },\n        \"personal\": {\n            \"notes\": \"\",\n            \"title\": \"\",\n            \"status\": null,\n            \"full_name\": \"\",\n            \"gdpr_info\": \"\",\n            \"name_info\": \"\",\n            \"block_name\": \"personal\",\n            \"salutation\": null,\n            \"middle_name\": \"\",\n            \"preferred_communication\": null\n        },\n        \"financial\": {\n            \"bic\": \"\",\n            \"iban\": \"\",\n            \"notes\": \"\",\n            \"deposit\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"bank_name\": \"\",\n            \"block_name\": \"financial\",\n            \"open_amount\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"payment_type\": \"\"\n        },\n        \"orag_cluster\": {\n            \"notes\": \"\",\n            \"remedy\": \"\",\n            \"fundings\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"deposit_type\": \"\",\n            \"guaranteed_value\": \"\",\n            \"termination_time\": \"\",\n            \"termination_denied\": \"\",\n            \"stop_overdue_notice\": \"\",\n            \"termination_timeframe\": \"\"\n        }\n    }\n}"}],"_postman_id":"9252c141-6653-4e01-a26e-738256fe09db"},{"name":"Get user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"0fd86093-b578-437e-ad37-8a8e8271a6a9"}}],"id":"f8c8366d-349e-4b79-91cc-a3c3117045d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/{user_id}/","description":"<p>Get user.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>GET /api/rest/v1/users/{user_id}/</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>user_id</code> (string, <strong>required</strong>) – User ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n<li><p><code>info</code>(object):</p>\n<ul>\n<li><p><code>address</code> (object):</p>\n<ul>\n<li><p><code>city</code> (string)&lt;= 245 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>street</code> (string) &lt;= 245 characters</p>\n</li>\n<li><p><code>address</code> (string) &lt;= 500 characters</p>\n</li>\n<li><p><code>country</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>postcode</code> (string)&lt;= 10 characters</p>\n</li>\n<li><p><code>address_2</code> (string)&lt;= 500 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p>partner (object):</p>\n<ul>\n<li><p><code>email</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>phone</code> (string)&lt;= 32 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>last_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>first_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>personal</code> (object):</p>\n<ul>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>status</code> (integer or null)</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>gdpr_info</code> (string)&lt;= 1024 characters</p>\n</li>\n<li><p><code>name_info</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>preferred_communication</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>financial</code> (object):</p>\n<ul>\n<li><p><code>bic</code> (string)&lt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string)&lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>payment_type</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>deposit</code> (object)</p>\n<ul>\n<li><p><code>amount</code> (string) Example:1.23</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n<li><p><code>open_amount</code> (object):</p>\n<ul>\n<li><p><code>amount</code> (string) Example:2.34</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{user_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"02430a36-2204-4d50-94f9-b7fb45831402","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/2842734/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 2842734,\n    \"name\": \"Mike\",\n    \"second_name\": \"Diekmann\",\n    \"role\": \"admin\",\n    \"email\": \"mike.diekmann+1@idwell.com\",\n    \"phone\": null,\n    \"status\": 1,\n    \"directory\": 96641663,\n    \"external_id\": null,\n    \"managed_buildings\": [],\n    \"flats\": [],\n    \"info\": {\n        \"address\": {\n            \"city\": \"\",\n            \"notes\": \"\",\n            \"street\": \"\",\n            \"address\": \"\",\n            \"country\": \"\",\n            \"postcode\": \"\",\n            \"address_2\": \"\",\n            \"block_name\": \"address\"\n        },\n        \"partner\": {\n            \"email\": \"\",\n            \"notes\": \"\",\n            \"phone\": \"\",\n            \"title\": \"\",\n            \"full_name\": \"\",\n            \"last_name\": \"\",\n            \"block_name\": \"partner\",\n            \"first_name\": \"\",\n            \"salutation\": null,\n            \"middle_name\": \"\"\n        },\n        \"personal\": {\n            \"notes\": \"\",\n            \"title\": \"\",\n            \"status\": null,\n            \"full_name\": \"\",\n            \"gdpr_info\": \"\",\n            \"name_info\": \"\",\n            \"block_name\": \"personal\",\n            \"salutation\": null,\n            \"middle_name\": \"\",\n            \"preferred_communication\": null\n        },\n        \"financial\": {\n            \"bic\": \"\",\n            \"iban\": \"\",\n            \"notes\": \"\",\n            \"deposit\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"bank_name\": \"\",\n            \"block_name\": \"financial\",\n            \"open_amount\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"payment_type\": \"\"\n        },\n        \"orag_cluster\": {\n            \"notes\": \"\",\n            \"remedy\": \"\",\n            \"fundings\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"deposit_type\": \"\",\n            \"guaranteed_value\": \"\",\n            \"termination_time\": \"\",\n            \"termination_denied\": \"\",\n            \"stop_overdue_notice\": \"\",\n            \"termination_timeframe\": \"\"\n        }\n    }\n}"}],"_postman_id":"f8c8366d-349e-4b79-91cc-a3c3117045d5"},{"name":"Delete user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"24910a53-650d-4e65-9460-0db73dab81fc"}}],"id":"8a1fc76c-9573-4ef4-8223-87edc5ed4962","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/{user_id}/","description":"<p>Delete user.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>DELETE /api/rest/v1/users/{user_id}/</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>user_id</code> (string, <strong>required</strong>) – User ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<p>Without body</p>\n","urlObject":{"path":["api","rest","v1","users","{user_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"b28c3698-1ea0-4d90-94dd-251617f0da44","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/73028/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8a1fc76c-9573-4ef4-8223-87edc5ed4962"},{"name":"Update user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3c1b1607-8956-40e2-98f4-b3c8ccce3128"}}],"id":"4e1eeb5f-6f36-4f9a-88c0-a73784e86f50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":" {{token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"second_name\": \"string\",\n  \"role\": \"dweller\",\n  \"email\": \"string\",\n  \"phone\": \"string\",\n  \"external_id\": \"string\",\n  \"managed_buildings\": [\n    0\n  ],\n  \"flats\": [\n    0\n  ],\n  \"info\": {\n    \"address\": {\n      \"city\": \"string\",\n      \"notes\": \"string\",\n      \"street\": \"string\",\n      \"address\": \"string\",\n      \"country\": \"string\",\n      \"postcode\": \"string\",\n      \"address_2\": \"string\",\n      \"block_name\": \"string\"\n    },\n    \"partner\": {\n      \"email\": \"string\",\n      \"notes\": \"string\",\n      \"phone\": \"string\",\n      \"title\": \"string\",\n      \"full_name\": \"string\",\n      \"last_name\": \"string\",\n      \"block_name\": \"string\",\n      \"first_name\": \"string\",\n      \"salutation\": 0,\n      \"middle_name\": \"string\"\n    },\n    \"personal\": {\n      \"notes\": \"string\",\n      \"title\": \"string\",\n      \"status\": 0,\n      \"full_name\": \"string\",\n      \"gdpr_info\": \"string\",\n      \"name_info\": \"string\",\n      \"block_name\": \"string\",\n      \"salutation\": 0,\n      \"middle_name\": \"string\",\n      \"preferred_communication\": 0\n    },\n    \"financial\": {\n      \"bic\": \"string\",\n      \"iban\": \"string\",\n      \"notes\": \"string\",\n      \"deposit\": {\n        \"amount\": \"1.23\",\n        \"currency\": \"EUR\"\n      },\n      \"bank_name\": \"string\",\n      \"block_name\": \"string\",\n      \"open_amount\": {\n        \"amount\": \"2.34\",\n        \"currency\": \"EUR\"\n      },\n      \"payment_type\": \"string\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/65607/","description":"<p>Update user.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>PATCH /api/rest/v1/users/{user_id}/</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>user_id</code> (string, <strong>required</strong>) – User ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n<li><p><code>info</code>(object):</p>\n<ul>\n<li><p><code>address</code> (object):</p>\n<ul>\n<li><p><code>city</code> (string)&lt;= 245 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>street</code> (string) &lt;= 245 characters</p>\n</li>\n<li><p><code>address</code> (string) &lt;= 500 characters</p>\n</li>\n<li><p><code>country</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>postcode</code> (string)&lt;= 10 characters</p>\n</li>\n<li><p><code>address_2</code> (string)&lt;= 500 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p>partner (object):</p>\n<ul>\n<li><p><code>email</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>phone</code> (string)&lt;= 32 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>last_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>first_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>personal</code> (object):</p>\n<ul>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>status</code> (integer or null)</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>gdpr_info</code> (string)&lt;= 1024 characters</p>\n</li>\n<li><p><code>name_info</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>preferred_communication</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>financial</code> (object):</p>\n<ul>\n<li><p><code>bic</code> (string)&lt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string)&lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>payment_type</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>deposit</code> (object)</p>\n<ul>\n<li><p><code>amount</code> (string) Example:1.23</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n<li><p><code>open_amount</code> (object):</p>\n<ul>\n<li><p><code>amount</code> (string) Example:2.34</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (number) — Internal ID of the object in the iDWELL system.</p>\n</li>\n<li><p><code>name</code> (string) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>second_name</code> (integer) – Letters, digits, space and <code>_ &amp; + - \\ . , ' ( )</code>. Maximum length is 70 symbols.</p>\n</li>\n<li><p><code>role</code> (string) – Allowed values: [<code>dweller</code>, <code>landlord</code>, <code>manager</code>]</p>\n</li>\n<li><p><code>email</code> (string or null)</p>\n</li>\n<li><p><code>phone</code> (string or null)</p>\n</li>\n<li><p><code>status</code> (integer) - Allowed values: [0...4]</p>\n</li>\n<li><p><code>directory</code> (string) - User's directory.</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>managed_buildings</code> (array[integer]) - If manager, contains building IDs he works with.</p>\n</li>\n<li><p><code>flats</code> (array[integer]) - For dweller: flats he lives in. For landlord: flats he owns.</p>\n</li>\n<li><p><code>info</code>(object):</p>\n<ul>\n<li><p><code>address</code> (object):</p>\n<ul>\n<li><p><code>city</code> (string)&lt;= 245 characters</p>\n</li>\n<li><p><code>notes</code> (string) &lt;= 2000 characters</p>\n</li>\n<li><p><code>street</code> (string) &lt;= 245 characters</p>\n</li>\n<li><p><code>address</code> (string) &lt;= 500 characters</p>\n</li>\n<li><p><code>country</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>postcode</code> (string)&lt;= 10 characters</p>\n</li>\n<li><p><code>address_2</code> (string)&lt;= 500 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p>partner (object):</p>\n<ul>\n<li><p><code>email</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>phone</code> (string)&lt;= 32 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>last_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>first_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>personal</code> (object):</p>\n<ul>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>title</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>status</code> (integer or null)</p>\n</li>\n<li><p><code>full_name</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>gdpr_info</code> (string)&lt;= 1024 characters</p>\n</li>\n<li><p><code>name_info</code> (string)&lt;= 100 characters</p>\n</li>\n<li><p><code>salutation</code> (integer or null)</p>\n</li>\n<li><p><code>middle_name</code> (string)&lt;= 50 characters</p>\n</li>\n<li><p><code>preferred_communication</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>financial</code> (object):</p>\n<ul>\n<li><p><code>bic</code> (string)&lt;= 11 characters</p>\n</li>\n<li><p><code>iban</code> (string)&lt;= 34 characters</p>\n</li>\n<li><p><code>notes</code> (string)&lt;= 2000 characters</p>\n</li>\n<li><p><code>bank_name</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>payment_type</code> (string)&lt;= 256 characters</p>\n</li>\n<li><p><code>deposit</code> (object)</p>\n<ul>\n<li><p><code>amount</code> (string) Example:1.23</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n<li><p><code>open_amount</code> (object):</p>\n<ul>\n<li><p><code>amount</code> (string) Example:2.34</p>\n</li>\n<li><p><code>currency</code> (string) Example:EUR</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","65607",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"f83e1cd0-676f-42c6-a561-3e4b58fe5962","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Updated3\",\n    \"second_name\": \"User3\",\n    \"role\": \"landlord\",\n    \"email\": \"updated_user1111245@mailinator.com\",\n    \"phone\": \"+22134116178\",\n    \"info\": {\n        \"personal\": {\n            \"block_name\": \"personal12\",\n            \"notes\": \"\",\n            \"salutation\": 1460,\n            \"title\": \"Title1\",\n            \"middle_name\": \"MiddleName\",\n            \"full_name\": \"Full name\",\n            \"name_info\": \"Post-nominal letters\",\n            \"gdpr_info\": \"GDPRInfo\",\n            \"status\": 1,\n            \"preferred_communication\": 1\n        }\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/73027/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 73027,\n    \"name\": \"Updated3\",\n    \"second_name\": \"User3\",\n    \"role\": \"landlord\",\n    \"email\": \"updated_user1111245@mailinator.com\",\n    \"phone\": \"38122134116178\",\n    \"status\": 0,\n    \"directory\": 538357,\n    \"external_id\": null,\n    \"managed_buildings\": [],\n    \"flats\": [\n        28724\n    ],\n    \"info\": {\n        \"address\": {\n            \"city\": \"\",\n            \"notes\": \"\",\n            \"street\": \"\",\n            \"address\": \"\",\n            \"country\": \"\",\n            \"postcode\": \"\",\n            \"address_2\": \"\",\n            \"block_name\": \"address\"\n        },\n        \"partner\": {\n            \"email\": \"\",\n            \"notes\": \"\",\n            \"phone\": \"\",\n            \"title\": \"\",\n            \"full_name\": \"\",\n            \"last_name\": \"\",\n            \"block_name\": \"partner\",\n            \"first_name\": \"\",\n            \"salutation\": null,\n            \"middle_name\": \"\"\n        },\n        \"personal\": {\n            \"notes\": \"\",\n            \"title\": \"Title1\",\n            \"status\": 1,\n            \"full_name\": \"Full name\",\n            \"gdpr_info\": \"GDPRInfo\",\n            \"name_info\": \"Post-nominal letters\",\n            \"block_name\": \"personal12\",\n            \"salutation\": 1460,\n            \"middle_name\": \"MiddleName\",\n            \"preferred_communication\": 1\n        },\n        \"financial\": {\n            \"bic\": \"\",\n            \"iban\": \"\",\n            \"notes\": \"\",\n            \"deposit\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"bank_name\": \"\",\n            \"block_name\": \"financial\",\n            \"open_amount\": {\n                \"amount\": \"0.00\",\n                \"currency\": \"EUR\"\n            },\n            \"payment_type\": \"\"\n        },\n        \"orag_cluster\": {\n            \"notes\": \"\",\n            \"remedy\": \"\",\n            \"fundings\": \"\",\n            \"block_name\": \"orag_cluster\",\n            \"deposit_type\": \"\",\n            \"guaranteed_value\": \"\",\n            \"termination_time\": \"\",\n            \"termination_denied\": \"\",\n            \"stop_overdue_notice\": \"\",\n            \"termination_timeframe\": \"\"\n        }\n    }\n}"}],"_postman_id":"4e1eeb5f-6f36-4f9a-88c0-a73784e86f50"},{"name":"Get a list of users with Igel IDs","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"bc255390-4f01-4399-be91-de9260d9e063"}}],"id":"ed13e55b-0e8f-4834-9a68-05ab463a2bfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/user/igel/","description":"<p>Get a list of users with Igel IDs with external ID</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>GET /api/rest/v1/user/igel/</code></p>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<p>🛠️ TODO (No information in stoplight)</p>\n","urlObject":{"path":["api","rest","v1","user","igel",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"fd42072b-549b-4c22-b35d-1a1e41ec7895","name":"Successful response","originalRequest":{"method":"GET","header":[{}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/user/igel/"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed13e55b-0e8f-4834-9a68-05ab463a2bfd"},{"name":"Set move out date","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"4cfa65a0-c97f-400d-8c9b-d27400231d54"}}],"id":"08063ae4-2d4b-42e6-b56d-87f641f48c32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"flat\": \"integer\",\n    \"user\": \"integer\",\n    \"date\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/move-out-date/","description":"<p>Set move out date.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>POST /api/rest/v1/move-out-date/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>flat</code> (integer, <strong>required</strong>) - Flat ID</p>\n</li>\n<li><p><code>user</code> (integer, <strong>required</strong>) - User ID</p>\n</li>\n<li><p><code>date</code> (string , <strong>required</strong>) - Move out date. YYYY-MM-DD. <em>Example</em>: 2020-12-31</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>flat</code> (integer, <strong>required</strong>) - Flat ID</p>\n</li>\n<li><p><code>user</code> (integer, <strong>required</strong>) - User ID</p>\n</li>\n<li><p><code>date</code> (string , <strong>required</strong>) - Move out date. YYYY-MM-DD. <em>Example</em>: 2020-12-31</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","move-out-date",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"18bdd032-386e-4e1a-be3c-d4f835004865","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"flat\": 115282,\n    \"user\": 118317,\n    \"date\": \"2025-12-12\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/move-out-date/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"flat\": 115282,\n    \"user\": 118317,\n    \"date\": \"2025-12-12\"\n}"}],"_postman_id":"08063ae4-2d4b-42e6-b56d-87f641f48c32"},{"name":"Get flats by user","id":"bebc86dd-58ce-4fd4-b17a-372e3b862ed7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/{user_id}/flats/?external_id=123","description":"<p>Get flats by user.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>GET /api/rest/v1/users/{user_id}/flats/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>user_id</code> (integer) – ID of the user to retrieve associated flats.</li>\n</ul>\n<h4 id=\"query-path-parametrs\">Query path parametrs</h4>\n<ul>\n<li><code>external_id</code> (string) – External identifier to filter flats. Parameter for searching by external_id</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (string, <strong>required</strong>) — Max length: 255 characters</p>\n</li>\n<li><p><code>building</code> (string or integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>directory</code> (integer)</p>\n</li>\n<li><p><code>entrance</code> (string or null) — Max length: 32 characters</p>\n</li>\n<li><p><code>floor</code> (string or null) — Max length: 32 characters</p>\n</li>\n<li><p><code>area</code> (number or null) — Range: 0–9999</p>\n</li>\n<li><p><code>live_area</code> (number or null) — Range: 0–9999</p>\n</li>\n<li><p><code>room_count</code> (number or null) — Range: 0–99</p>\n</li>\n<li><p><code>info</code> (object)</p>\n<ul>\n<li><p><code>general</code> (object)</p>\n<ul>\n<li><p><code>notes</code> (string) — Max length: 2000 characters</p>\n</li>\n<li><p><code>category</code> (integer or null)</p>\n</li>\n<li><p><code>entrance</code> (string) — Max length: 256 characters</p>\n</li>\n<li><p><code>condition</code> (integer or null)</p>\n</li>\n<li><p><code>eqiupment</code> (string)</p>\n</li>\n<li><p><code>room_type</code> (integer or null)</p>\n</li>\n<li><p><code>block_name</code> (string)</p>\n</li>\n<li><p><code>unit_number</code> (string)</p>\n</li>\n<li><p><code>rent_payment_type</code> (string) — Max length: 256 characters</p>\n</li>\n<li><p><code>property_share</code> (object)</p>\n<ul>\n<li><p><code>share</code> (integer or null) — Min: 1</p>\n</li>\n<li><p><code>total</code> (integer or null) — Min: 2</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{user_id}","flats",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Parameter for searching by external_id</p>\n","type":"text/plain"},"key":"external_id","value":"123"}],"variable":[]}},"response":[{"id":"9570b359-5120-4e0b-81a7-8c70adc0f9d9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/2842734/flats/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 115150,\n            \"external_id\": null,\n            \"number\": \"13\",\n            \"building\": 5123,\n            \"directory\": 995994,\n            \"entrance\": null,\n            \"floor\": null,\n            \"area\": 62.4,\n            \"live_area\": 57.4,\n            \"room_count\": 2,\n            \"info\": {\n                \"general\": {\n                    \"notes\": \"\",\n                    \"category\": null,\n                    \"entrance\": \"\",\n                    \"condition\": null,\n                    \"equipment\": \"\",\n                    \"heat_type\": \"\",\n                    \"room_type\": null,\n                    \"block_name\": \"general\",\n                    \"unit_number\": \"\",\n                    \"contract_type\": null,\n                    \"flat_specifics\": null,\n                    \"property_share\": {\n                        \"share\": null,\n                        \"total\": null\n                    },\n                    \"rent_payment_type\": \"\"\n                },\n                \"orag_cluster\": {\n                    \"keys\": \"\",\n                    \"notes\": \"\",\n                    \"funding\": \"\",\n                    \"block_name\": \"orag_cluster\",\n                    \"edv_number\": \"\",\n                    \"unit_number\": \"\",\n                    \"cooling_type\": \"\",\n                    \"meter_reading\": \"\",\n                    \"flat_equipment\": \"\",\n                    \"reason_vacancy\": \"\",\n                    \"reason_termination\": \"\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"bebc86dd-58ce-4fd4-b17a-372e3b862ed7"},{"name":"Get user contacts","id":"6a76e4f2-bf79-4051-a7da-6ad5057f3fcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":" {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/{userId}/contacts/","description":"<p>Returns a paginated list of contacts for the specified user.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/users/{user_id}/contacts/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (integer) — Total number of contacts.</p>\n</li>\n<li><p><code>pages</code> (integer) — Total number of pages.</p>\n</li>\n<li><p><code>page</code> (integer) — Current page number.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links.</p>\n<ul>\n<li><p><code>next</code> (string or null) — URL of the next page.</p>\n</li>\n<li><p><code>previous</code> (string or null) — URL of the previous page.</p>\n</li>\n<li><p><code>last</code> (string or null) — URL of the last page.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of contact objects.</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the contact.</p>\n</li>\n<li><p><code>contact_type</code> (integer) — Contact type code.</p>\n</li>\n<li><p><code>contact_type_verbose</code> (string) — Human-readable contact type.</p>\n</li>\n<li><p><code>value</code> (string) — Contact value.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n<ul>\n<li><p><code>can_edit</code> (boolean) — Whether the contact can be edited.</p>\n</li>\n<li><p><code>can_delete</code> (boolean) — Whether the contact can be deleted.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{userId}","contacts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io "],"query":[],"variable":[]}},"response":[{"id":"05fdc7e5-b792-4b0d-a923-eaaa694be325","name":"Get user contacts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 9,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"contact_type\": 50,\n            \"value\": \"diwojo6440@ahaks.com\",\n            \"id\": 70706,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": false\n            },\n            \"contact_type_verbose\": \"auth_email\"\n        },\n        {\n            \"contact_type\": 75,\n            \"value\": \"\",\n            \"id\": null,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": false\n            },\n            \"contact_type_verbose\": \"auth_phone\"\n        },\n        {\n            \"contact_type\": 100,\n            \"value\": \"4930901820\",\n            \"id\": 89533,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"phone\"\n        },\n        {\n            \"contact_type\": 150,\n            \"value\": \"4930901678\",\n            \"id\": 89534,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"order_phone\"\n        },\n        {\n            \"contact_type\": 300,\n            \"value\": \"test@info.email.com\",\n            \"id\": 89662,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"email\"\n        },\n        {\n            \"contact_type\": 300,\n            \"value\": \"info@qa.info.com\",\n            \"id\": 89535,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"email\"\n        },\n        {\n            \"contact_type\": 400,\n            \"value\": \"Kralja Petra 45/23 sprat 10\",\n            \"id\": 89536,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"address\"\n        },\n        {\n            \"contact_type\": 500,\n            \"value\": \"https://thecode.media/m\",\n            \"id\": 89537,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"website\"\n        },\n        {\n            \"contact_type\": 600,\n            \"value\": \"From 9 am until 6 pm\",\n            \"id\": 89596,\n            \"permissions\": {\n                \"can_edit\": true,\n                \"can_delete\": true\n            },\n            \"contact_type_verbose\": \"working_hours\"\n        }\n    ]\n}"}],"_postman_id":"6a76e4f2-bf79-4051-a7da-6ad5057f3fcf"},{"name":"Create user contacts","id":"407d979e-cf88-4b05-b4e3-fe7aafd53f1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":" {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"contact_type\": 100,\n  \"value\": \"+4322117849002\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/{userId}/contacts/","description":"<p>Creates a new contact for the specified user.</p>\n<p>Contact types:</p>\n<ul>\n<li><p><code>auth_email = 50</code></p>\n</li>\n<li><p><code>auth_phone = 75</code></p>\n</li>\n<li><p><code>phone = 100</code></p>\n</li>\n<li><p><code>order_phone = 150</code></p>\n</li>\n<li><p><code>email = 300</code></p>\n</li>\n<li><p><code>order_email = 350</code></p>\n</li>\n<li><p><code>address = 400</code></p>\n</li>\n<li><p><code>website = 500</code></p>\n</li>\n</ul>\n<p><strong>Important!</strong> All endpoints that perform writing operation to DB (that means creating, updating or deleting a contact) cannot do it for contact types 50 and 75 (<code>auth_email</code> and <code>auth_phone</code>). To change that, use already existing update endpoint for user and change its email or phone.  </p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/users/{user_id}/contacts/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>contact_type</code> (integer, required) — Contact type code.</p>\n</li>\n<li><p><code>value</code> (string, required) — Contact value.</p>\n</li>\n</ul>\n<h4 id=\"response-codes\"><strong>Response Codes:</strong></h4>\n<ul>\n<li><p><code>201 Created</code> — Contact successfully created.</p>\n</li>\n<li><p><code>400 Bad Request</code> — Validation error or unsupported contact type (<code>50</code> or <code>75</code>).</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the contact.</p>\n</li>\n<li><p><code>contact_type</code> (integer) — Contact type code.</p>\n</li>\n<li><p><code>contact_type_verbose</code> (string) — Human-readable contact type.</p>\n</li>\n<li><p><code>value</code> (string) — Contact value.</p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.</p>\n<ul>\n<li><p><code>can_edit</code> (boolean)</p>\n</li>\n<li><p><code>can_delete</code> (boolean)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{userId}","contacts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io "],"query":[],"variable":[]}},"response":[{"id":"96a37f01-1910-4dbf-a241-e119e8b7efda","name":"Success request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"contact_type\": 100,\n  \"value\": \"+4322117849002\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"contact_type\": 100,\n    \"value\": \"4322117849002\",\n    \"id\": 90027,\n    \"permissions\": {\n        \"can_edit\": true,\n        \"can_delete\": true\n    },\n    \"contact_type_verbose\": \"phone\"\n}"},{"id":"2c2a62c0-b54d-43bc-a8bf-6d8350b14fcf","name":"Unsuccess request (change auth contact)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"contact_type\": 75,\n  \"value\": \"+4322117849002\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": \"To change auth_phone or auth_email contacts, change phone or email of the user itself\",\n    \"status_code\": 400\n}"},{"id":"e099d27a-668f-4844-a6b6-9b12749091e2","name":"Unsuccess request (duplicate contact)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"contact_type\": 75,\n  \"value\": \"+4322117849002\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": \"Contractors cannot have more than 1 contact of each type\",\n    \"status_code\": 400\n}"}],"_postman_id":"407d979e-cf88-4b05-b4e3-fe7aafd53f1e"},{"name":"Update user contacts","id":"93b91c97-c257-4e8b-b848-ac51f52ab41a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":" {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/{userId}/contacts/{contact_id}","description":"<p>Updates an existing contact.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/users/{user_id}/contacts/{contact_id}/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><code>value</code> (string, required) — Updated contact value.</li>\n</ul>\n<h4 id=\"response-codes\"><strong>Response Codes:</strong></h4>\n<ul>\n<li><p><code>200 OK</code> — Contact successfully updated.  </p>\n</li>\n<li><p><code>400 Bad Request</code> — Validation error or unsupported contact type (<code>50</code> or <code>75</code>).</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the contact.  </p>\n</li>\n<li><p><code>contact_type</code> (integer) — Contact type code.  </p>\n</li>\n<li><p><code>contact_type_verbose</code> (string) — Human-readable contact type.  </p>\n</li>\n<li><p><code>value</code> (string) — Updated contact value.  </p>\n</li>\n<li><p><code>permissions</code> (object) — Available actions for the current user.  </p>\n<ul>\n<li><p><code>can_edit</code> (boolean)  </p>\n</li>\n<li><p><code>can_delete</code> (boolean)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{userId}","contacts","{contact_id}"],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io "],"query":[],"variable":[]}},"response":[{"id":"8d91cae0-bd5b-4866-95e1-747eb5672bf0","name":"Success request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"email3@idwell.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/234"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"contact_type\": 300,\n    \"value\": \"email3@idwell.com\",\n    \"id\": 1035,\n    \"permissions\": {\n        \"can_edit\": true,\n        \"can_delete\": true\n    },\n    \"contact_type_verbose\": \"email\"\n}"},{"id":"98e5f9b8-08fe-460b-b227-d7f6469664ed","name":"Unsuccess request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"email3@idwell.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/234"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": \"To change auth_phone or auth_email contacts, change phone or email of the user itself\",\n    \"status_code\": 400\n}"}],"_postman_id":"93b91c97-c257-4e8b-b848-ac51f52ab41a"},{"name":"Delete user contact","id":"2216fb2e-01db-4fd8-9e9b-ea423a380146","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":" {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/{user_id}/contacts/{contact_id}/","description":"<p>Deletes a contact from the user profile.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>DELETE /api/rest/v1/users/{user_id}/contacts/{contact_id}/</code></p>\n<h4 id=\"response-codes\"><strong>Response Codes:</strong></h4>\n<ul>\n<li><p><code>204 No Content</code> — Contact successfully deleted.  </p>\n</li>\n<li><p><code>400 Bad Request</code> — Validation error or unsupported contact type (<code>50</code> or <code>75</code>).</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{user_id}","contacts","{contact_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io "],"query":[],"variable":[]}},"response":[{"id":"6a27460c-d28f-42fa-bd12-e89cd0f3ba77","name":"Delete user contact","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io /api/rest/v1/users/123/contacts/234/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"2216fb2e-01db-4fd8-9e9b-ea423a380146"}],"id":"d5c6ea6c-c2dd-4d9c-9625-2e7c4bef3a86","description":"<h2 id=\"description\">Description</h2>\n<p>Any user of the system. Users have different roles that define the sections and functions of the system available to them.</p>\n<h3 id=\"restrictions-contractor-contact-limits\">Restrictions Contractor Contact Limits</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Contact type</strong></th>\n<th><strong>Description Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Contractor Contact Limits</td>\n<td>For contractors, only one contact per type is allowed for the following contact types:  <br />  <br />auth_email (id: 50)  <br />auth_phone (id: 75)  <br />website (id: 500)  <br />order_email (id: 350)  <br />order_phone (id: 150)  <br />working_hours (id: 600)  <br />address (id: 400)  <br />  <br />Attempting to create more than one contact of these types for the same contractor will return a validation error.</td>\n</tr>\n<tr>\n<td>User Contact Limits</td>\n<td>For regular users (dweller, manager, landlord, admin, external contact):  <br />  <br />Maximum total number of contacts: 20  <br />Multiple contacts of the same type are allowed for:  <br />auth_email (id: 50)  <br />auth_phone (id: 75)  <br />website (id: 500)  <br />email (id: 300)  <br />phone (id: 100)  <br />  <br />All endpoints that perform writing operation to DB (that means creating, updating or deleting a contact) cannot do it for contact types 50 and 75 (auth_email and auth_phone). To change that, use already existing update endpoint for user and change its email or phone.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>List users</td>\n<td><code>/api/rest/v1/users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Create user</td>\n<td><code>/api/rest/v1/users/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Get user</td>\n<td><code>/api/rest/v1/users/{user_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Delete user</td>\n<td><code>/api/rest/v1/users/{user_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Delete users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Update user</td>\n<td><code>/api/rest/v1/users/{user_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Get a list of users with Igel IDs</td>\n<td><code>/api/rest/v1/user/igel/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> No access</td>\n</tr>\n<tr>\n<td>Set move out date</td>\n<td><code>/api/rest/v1/move-out-date/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Get user contacts</td>\n<td><code>/api/rest/v1/users/{user_id}/contacts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to contacts of users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Create contact</td>\n<td><code>/api/rest/v1/users/{user_id}/contacts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create contacts for users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Update contact</td>\n<td><code>/api/rest/v1/users/{user_id}/contacts/{contact_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update contacts of users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Delete contact</td>\n<td><code>/api/rest/v1/users/{user_id}/contacts/{contact_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Delete contacts of users related to assigned buildings only</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><code>user_id</code> (path): The unique key of the user (you can get it in the list of users)</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p>Getting a list of users in system</p>\n</li>\n<li><p>Creating a user</p>\n</li>\n<li><p>Updating information about a user by <code>:user_id</code></p>\n</li>\n<li><p>Deleting a user by <code>:user_id</code></p>\n</li>\n<li><p>Getting a list of users for user with user IDs</p>\n</li>\n<li><p>Set move out date for user by <code>:user_id</code></p>\n</li>\n</ul>\n","_postman_id":"d5c6ea6c-c2dd-4d9c-9625-2e7c4bef3a86"},{"name":"Directory","item":[{"name":"Create directory","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"20f95fa8-3c26-40d6-bf3d-55012351dd97"}}],"id":"f1e093ab-2ea0-4c81-b014-7e74ac23b4c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"string\",\n    \"parent\": \"string\",\n    \"set_permission_groups\": [\n        \"admin\",\n        \"landlord\",\n        \"manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/","description":"<blockquote>\n<p><strong>⚠️ Deprecation notice:</strong> This endpoint will be deprecated soon and replaced with an updated version. </p>\n</blockquote>\n<p>Create directory.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>POST /api/rest/v1/directories/</code></p>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>name</code> (string, <strong>required</strong>) –</p>\n</li>\n<li><p><code>parent</code> (string, <strong>required</strong>) –</p>\n</li>\n<li><p><code>set_permission_groups</code> (array , <strong>required</strong>) - Allowed values: [<code>dweller</code>, '<code>admin</code>', '<code>manager</code>', <code>landlord]</code></p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>owner</code> (object):</p>\n<ul>\n<li><p><code>avatar</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>full_name</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>deleted</code> (boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>permissions</code> (object):</p>\n<ul>\n<li><p><code>can_edit</code> (boolean, <strong>required</strong>)</p>\n</li>\n<li><p><code>can_write</code> (boolean, <strong>required</strong>)</p>\n</li>\n</ul>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n<li><p><code>updated</code> (string)</p>\n</li>\n<li><p><code>is_immutable</code> (boolean)</p>\n</li>\n<li><p><code>created_by</code> (integer)</p>\n</li>\n<li><p><code>is_persistent</code> (boolean) - Directory types:Allowed values: [7, 8]</p>\n</li>\n</ul>\n<blockquote>\n<p><code>7</code> - direcory<br /><code>8</code> - link</p>\n</blockquote>\n","urlObject":{"path":["api","rest","v1","directories",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"d4523b0c-88c9-4fe6-98f2-847dcf0b6fce","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Berichte\",\n    \"parent\": \"910136\",\n    \"set_permission_groups\": [\n        \"manager\",\n        \"admin\",\n        \"landlord\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 129182526,\n    \"name\": \"Berichte\",\n    \"parent\": 910136,\n    \"type\": 7,\n    \"created\": \"2025-08-01T07:32:19.355513+02:00\",\n    \"updated\": \"2025-08-01T07:32:19.355531+02:00\",\n    \"users_access\": \"allow\",\n    \"owner\": {\n        \"avatar\": \"https://files.idwell.com/demo.idwell.at/v2/thumbnails/170X170/demo.idwell.at/private/default/uk/119/a0913017-ee65-4c7d-b935-d6f956f80075_GIg1lbH.png?signed_redirect=1&Expires=1754026639&Signature=CRlk6M6A~nzTQJO~o9MBt6rSdgtr5sI0LedN9B1I2szUh3VrNWl5u24Uu4OqMGDD~vFvtAnFPhQekOAayXtu3FbpBcHBk6cmi34vmrvjby4fBtKwXybWLN9DkWfXlvU7g6bMW4PHfGO6zu0bcTNpA~mi9O-xqrDsHGTmXlbRIeXL4s8Pmkb74bfWrx4z5OKTE-oIzyu5bcqq~yWJXcseKZbrXBBY~QaBV-HMnsyYAVWlKIPmMgbYe3yexhqMDlMvs13vYLHly4NmJq8GqPGl7trQLSaiGXjKy8aJCKTLEAfJ0WTPV6YogbZu2zikxTuFduNAb6JpKHKX6eb1RGmC3A__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9maWxlcy5pZHdlbGwuY29tL2ltbW8yMS5pZHdlbGwuY29tL3YyL3RodW1ibmFpbHMvMTcwWDE3MC8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzU0MDI2NjM5fX19XX0_\",\n        \"full_name\": \"Greta Schuster\",\n        \"deleted\": false\n    },\n    \"is_immutable\": false,\n    \"created_by\": 117223,\n    \"is_persistent\": false,\n    \"permissions\": {\n        \"can_write\": true,\n        \"can_edit\": true\n    },\n    \"permission_groups\": \"landlord, manager, admin\"\n}"}],"_postman_id":"f1e093ab-2ea0-4c81-b014-7e74ac23b4c6"},{"name":"Get directory","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"84d30cc7-a4b7-41bd-9c9e-6e98d11254e4"}}],"id":"f3201e82-2bbf-4360-ba90-6c46bb7d214c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":" {{token}}"},{"key":"Accept","value":"application/json"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/{directory_id}/","description":"<p>Get directory.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>GET /api/rest/v1/directories/{directory_id}/</code></p>\n<h4 id=\"path-body-parameters\">Path body parameters:</h4>\n<ul>\n<li><code>directory_id</code> (integer, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>owner</code> (object):</p>\n<ul>\n<li><p><code>avatar</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>full_name</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>deleted</code> (boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>permissions</code> (object):</p>\n<ul>\n<li><p><code>can_edit</code> (boolean, <strong>required</strong>)</p>\n</li>\n<li><p><code>can_write</code> (boolean, <strong>required</strong>)</p>\n</li>\n</ul>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n<li><p><code>updated</code> (string)</p>\n</li>\n<li><p><code>is_immutable</code> (boolean)</p>\n</li>\n<li><p><code>created_by</code> (integer)</p>\n</li>\n<li><p><code>is_persistent</code> (boolean) - Directory types:Allowed values: [7, 8]</p>\n</li>\n</ul>\n<blockquote>\n<p><code>7</code> - direcory<br /><code>8</code> - link</p>\n</blockquote>\n","urlObject":{"path":["api","rest","v1","directories","{directory_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"b7359ff6-bea5-4a17-9793-0aca61c720a7","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/910136/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 910136,\n    \"name\": \"Adlerstraße 23, 90403 Nürnberg, Deutschland\",\n    \"parent\": 767906,\n    \"type\": 7,\n    \"created\": \"2020-03-06T03:32:22.243088+01:00\",\n    \"updated\": \"2024-04-10T12:56:07.412066+02:00\",\n    \"users_access\": \"allow\",\n    \"owner\": {\n        \"avatar\": \"https://files.idwell.com/demo.idwell.at/public/default/uk/119/950ac739-7d99-43f3-8347-962794ed4c98_SnrWKcM_8ckkRpJ.png\",\n        \"full_name\": \"Immobilienverwaltung ABC\",\n        \"deleted\": false\n    },\n    \"is_immutable\": true,\n    \"created_by\": 4,\n    \"is_persistent\": false,\n    \"permissions\": {\n        \"can_write\": true,\n        \"can_edit\": false\n    },\n    \"permission_groups\": \"dweller, landlord, manager, admin\"\n}"}],"_postman_id":"f3201e82-2bbf-4360-ba90-6c46bb7d214c"},{"name":"Delete directory","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"d588babb-51e9-4a04-9b28-b342fb3f4306"}}],"id":"db902408-8452-4ffc-a357-53624814273e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/{directory_id}/","description":"<p>Delete directory.</p>\n","urlObject":{"path":["api","rest","v1","directories","{directory_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"ec7680dc-f291-4aea-bc65-024df412cbc4","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/414505/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"02fc525b-ab20-4384-a848-f1103a2139c8","name":"Failed response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/414504/"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": \"Failed_to_delete_root_directory\",\n    \"status_code\": 403\n}"}],"_postman_id":"db902408-8452-4ffc-a357-53624814273e"},{"name":"Update directory","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"1514d6d1-1ccd-4c1e-8ac3-2e456c194b1f"}}],"id":"2f9a01b2-cb5f-4a02-bb11-6287a67aff1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Common group\",\n    \"parent\": \"414504\",\n    \"set_permission_groups\": [\n        \"manager\",\n        \"admin\",\n        \"landlord\",\n        \"manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/{directory_id}/","description":"<p>Update directory.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>PATCH /api/rest/v1/directories/{directory_id}/</code></p>\n<h4 id=\"path-body-parameters\">Path body parameters:</h4>\n<ul>\n<li><code>directory_id</code> (integer, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>name</code> (string) –</p>\n</li>\n<li><p><code>parent</code> (string) –</p>\n</li>\n<li><p><code>set_permission_groups</code> (array) - Allowed values: [<code>dweller</code>, '<code>admin</code>', '<code>manager</code>', <code>landlord]</code></p>\n</li>\n<li><p><code>inherit_permission_groups</code> (boolean)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>owner</code> (object):</p>\n<ul>\n<li><p><code>avatar</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>full_name</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>deleted</code> (boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>permissions</code> (object):</p>\n<ul>\n<li><p><code>can_edit</code> (boolean, <strong>required</strong>)</p>\n</li>\n<li><p><code>can_write</code> (boolean, <strong>required</strong>)</p>\n</li>\n</ul>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n<li><p><code>updated</code> (string)</p>\n</li>\n<li><p><code>is_immutable</code> (boolean)</p>\n</li>\n<li><p><code>created_by</code> (integer)</p>\n</li>\n<li><p><code>is_persistent</code> (boolean) - Directory types:Allowed values: [7, 8]</p>\n</li>\n</ul>\n<blockquote>\n<p><code>7</code> - direcory<br /><code>8</code> - link</p>\n</blockquote>\n","urlObject":{"path":["api","rest","v1","directories","{directory_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"4d2f3f88-d083-436f-b9af-6de5d46340b8","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Adlerstraße 23, 90403 Nürnberg, Deutschland\",\n    \"parent\": \"767906\",\n    \"set_permission_groups\": [\n        \"manager\",\n        \"admin\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/910136/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 910136,\n    \"name\": \"Adlerstraße 23, 90403 Nürnberg, Deutschland\",\n    \"parent\": 767906,\n    \"type\": 7,\n    \"created\": \"2020-03-06T03:32:22.243088+01:00\",\n    \"updated\": \"2024-04-10T12:56:07.412066+02:00\",\n    \"users_access\": \"allow\",\n    \"owner\": {\n        \"avatar\": \"https://files.idwell.com/demo.idwell.at/public/default/uk/119/950ac739-7d99-43f3-8347-962794ed4c98_SnrWKcM_8ckkRpJ.png\",\n        \"full_name\": \"Immobilienverwaltung ABC\",\n        \"deleted\": false\n    },\n    \"is_immutable\": true,\n    \"created_by\": 4,\n    \"is_persistent\": false,\n    \"permissions\": {\n        \"can_write\": true,\n        \"can_edit\": false\n    },\n    \"permission_groups\": \"manager, admin\"\n}"}],"_postman_id":"2f9a01b2-cb5f-4a02-bb11-6287a67aff1f"},{"name":"Get directory content","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"813312e4-012d-4066-8d87-1164e5b3b8cb"}}],"id":"be1d20e3-5707-403b-9de4-24e2d82e2ce3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/{directory_id}/content/?page=1&page_size=10","description":"<blockquote>\n<p><strong>⚠️ Deprecation notice:</strong> This endpoint will be deprecated soon and replaced with an updated version. </p>\n</blockquote>\n<p>Get directory content.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>GET /api/rest/v1/directories/{directory_id}/</code></p>\n<h4 id=\"path-body-parameters\">Path body parameters:</h4>\n<ul>\n<li><code>directory_id</code> (integer, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"request-query-parameters\">Request query parameters:</h4>\n<ul>\n<li><p><code>page</code> (number) — number of the requested page</p>\n</li>\n<li><p><code>page_size</code> (number) — number of items on the requested page</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number, <strong>required</strong>) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number, <strong>required</strong>) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number, <strong>required</strong>) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object, <strong>required</strong>)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects, <strong>required</strong>) — &gt;=1 oblects. List of directory content. Each object contains:</p>\n<ul>\n<li><p><code>created</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>created_by</code> (integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>id</code> (integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>is_immutable</code> (boolean, <strong>required</strong>)</p>\n</li>\n<li><p><code>is_persistent</code> (boolean, <strong>required</strong>) - Directory types:Allowed values: [7, 8]</p>\n</li>\n<li><p><code>name</code> (string, <strong>required</strong>) &gt;= 1 characters</p>\n</li>\n<li><p><code>owner</code> (object, <strong>required</strong>): &gt;= 1 characters</p>\n<ul>\n<li><p><code>avatar</code> (string) &gt;= 1 characters</p>\n</li>\n<li><p><code>full_name</code> (string) &gt;= 1 characters</p>\n</li>\n</ul>\n</li>\n<li><p><code>deleted</code> (boolean, <strong>required</strong>)</p>\n</li>\n<li><p><code>permissions</code> (object, <strong>required</strong>):</p>\n<ul>\n<li><p><code>can_edit</code> (boolean)</p>\n</li>\n<li><p><code>can_write</code> (boolean)</p>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>parent</code> (number, <strong>required</strong>)</p>\n</li>\n<li><p><code>type</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>updated</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>users_access</code> (string, <strong>required</strong>) &gt;= 1 characters</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","directories","{directory_id}","content",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>number of the requested page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>number of items on the requested page</p>\n","type":"text/plain"},"key":"page_size","value":"10"}],"variable":[]}},"response":[{"id":"4068f83f-d98a-4021-8319-7926cf86b0e6","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/directories/{directory_id}/content/?page=1&page_size=10","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","directories","{directory_id}","content",""],"query":[{"key":"page","value":"1","description":"number of the requested page"},{"key":"page_size","value":"10","description":"number of items on the requested page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 9,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 910137,\n            \"name\": \"Flats\",\n            \"parent\": 910136,\n            \"type\": \"directory\",\n            \"created\": \"2020-03-06T03:32:22.246279+01:00\",\n            \"updated\": \"2020-03-06T03:32:22.246292+01:00\",\n            \"linked_object_id\": null\n        },\n        {\n            \"id\": 47139597,\n            \"name\": \"Building groups\",\n            \"parent\": 910136,\n            \"type\": \"directory\",\n            \"created\": \"2023-09-12T20:17:00.570153+02:00\",\n            \"updated\": \"2023-09-12T20:17:00.570164+02:00\",\n            \"linked_object_id\": null\n        },\n        {\n            \"id\": 45151092,\n            \"name\": \"Hausunterlagen\",\n            \"parent\": 910136,\n            \"type\": \"directory\",\n            \"created\": \"2023-08-30T15:24:11.548035+02:00\",\n            \"updated\": \"2023-08-30T15:24:11.548056+02:00\",\n            \"linked_object_id\": null\n        },\n        {\n            \"id\": 1214231,\n            \"name\": \"Mietverträge\",\n            \"parent\": 910136,\n            \"type\": \"directory\",\n            \"created\": \"2020-05-10T16:40:44.877560+02:00\",\n            \"updated\": \"2020-05-10T16:40:44.877579+02:00\",\n            \"linked_object_id\": null\n        },\n        {\n            \"id\": 71944908,\n            \"name\": \"Versicherung\",\n            \"parent\": 910136,\n            \"type\": \"directory\",\n            \"created\": \"2024-11-08T12:45:37.683271+01:00\",\n            \"updated\": \"2024-11-08T12:45:37.683874+01:00\",\n            \"linked_object_id\": null\n        },\n        {\n            \"id\": 71934158,\n            \"name\": \"Energieausweis.pdf\",\n            \"parent\": 910136,\n            \"type\": \"document\",\n            \"created\": \"2024-05-16T10:41:27.955133+02:00\",\n            \"updated\": \"2024-11-08T12:44:59.053976+01:00\",\n            \"file\": \"https://files.idwell.com/demo.idwell.at/private/2024/05/Energieausweis.pdf?Expires=1754026249&Signature=qa3yYGfHWTyvjexfML3Br2EBfb59DCQCIbyocDpjs0~s2By0PFrHOo0EzXK1tVOaqsx3jXUaWF-ETem1zXCCE~8M7yBbukuuWP6iw4rm3gc89s9UJJgCyVfaH~UcIdnmWCfD2KXrVGIuTI7PjU3PLMCqPfZFCn-ywkMHPAIoho8OfhCgmnnTENIqI6ckcKw3HKbPf9LMs4RHlI1fdo9dV1SNlgE~opk0g3Na2mA2J~gUTapo~TREe-knxHRHlIV8-Ewb6DzMGsTFJfds1sS7VXzwmNRGJdSOckYJbVB6Y8HsAA8il7eGczzHOBKcw8dvNFzG51lxV13tuXjhoUFEPg__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null\n        },\n        {\n            \"id\": 71934159,\n            \"name\": \"Hausordnung.pdf\",\n            \"parent\": 910136,\n            \"type\": \"document\",\n            \"created\": \"2024-05-16T10:41:27.983096+02:00\",\n            \"updated\": \"2024-05-16T10:41:28.420160+02:00\",\n            \"file\": \"https://files.idwell.com/demo.idwell.at/private/2024/05/Hausordnung.pdf?Expires=1754026249&Signature=MgJQ-pldUWFTur-KWeCbzeJKym29wtxFYDckJHsCSSvwDnPNIBJTcb6xNt6UbwcO0715YsNuJIsSChvs38GrkTvzjnTupgrAAdkhP5cJIV33RGOrf9zB9Gtyfym5KLPc1czm838pVgPjZzU~M-DneJflpvgnZ5A1~ROK3EW~RV-uEjZ0ySbXN-5cWMLEDkvDeDswYHFn-pcglLVnviP2800IEBWtQoHQGLx1kvAVISjOED1KoIN5NUOY~c7b6deK2hL3IIR16subxSV4eCXDo5JvMumIYdFLhBHJTobdgWgr-vZgOEZ6grZzLjZPqdX-C4rOz~1VybvyrU63Vz-r2Q__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 29232,\n            \"width\": null,\n            \"height\": null\n        },\n        {\n            \"id\": 107045491,\n            \"name\": \"Kostenvoranschlag_Einbau Aufzug_copy.pdf\",\n            \"parent\": 910136,\n            \"type\": \"document\",\n            \"created\": \"2025-03-07T09:37:29.913666+01:00\",\n            \"updated\": \"2025-03-07T09:37:29.913691+01:00\",\n            \"file\": \"https://files.idwell.com/demo.idwell.at/private/demo.idwell.at/private/default/request/1087983/Kostenvoranschlag_Einbau_Aufzug_copy_ny4AlFd.pdf?Expires=1754026250&Signature=c0dI-ypGgBVsnbDtYQN4AfWCYYbYYPvGy8ClIiT5OL81HAHd4OdvUP81P4eR7YjwF7QPbhkUYcH80aE0z3peJAqEHlxl0JIYNRzSUlFMmo3USqDmHUYCVxJ2IMnm~rFa60Ed4HGdhW84mTe-BD1yacQUgIek0FiUGkQddBhNiQqH~-h8~KJxCCZyoUreigQaQbiarM6I4pErZptTM7mUQZm96E4nUGohHGTkG0Qhn2Ftf8JNE5a6yQAoS8b9WWngUfAwvVCo7-r2Fr6syASYVVUWsU3KQtpgLpRTdMh-008GQrm5ogcURtw~-6VElDceyGX8KcZqtPsZdRx1uf6~xw__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 6898794,\n            \"width\": null,\n            \"height\": null\n        },\n        {\n            \"id\": 71934160,\n            \"name\": \"Notfallnummern.pdf\",\n            \"parent\": 910136,\n            \"type\": \"document\",\n            \"created\": \"2024-05-16T10:41:27.985024+02:00\",\n            \"updated\": \"2024-05-16T10:41:28.263769+02:00\",\n            \"file\": \"https://files.idwell.com/demo.idwell.at/private/2024/05/Notfallnummern.pdf?Expires=1754026250&Signature=E6wjm5HNniQRFqBb2r4cVzZ~ILyZQb--ztw5C075uXFIoZP1zg12g7oUf5NDtRvwrTMa6BqJOqvJbeyMJUZeou9pyQAVdFnPO--w5ks-UKofXui2J6rI6z7aW5oetSEF72ytD0KrDxILEWehutsIk-UQ6quxorsCPf0AzvOvpv66nJVh6h0oByCsZeJooYS1iu~Whltoilf-BeKhF~~ffgJNy-MUfFv3e-Q3oJZbA~UmhfhPa3Kkp5f6VwdbSggjNGgNzJbXdhfUuQTDmaQRE2k~O-Yls9~K6xUkDYd8JyqTODEfje0u4daZ5Y~SuTzA6i4b-v8npuQ9sn6jEF214w__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null\n        }\n    ],\n    \"parent\": {\n        \"id\": 910136,\n        \"name\": \"Adlerstraße 23, 90403 Nürnberg, Deutschland\",\n        \"parent\": 767906,\n        \"type\": \"directory\",\n        \"created\": \"2020-03-06T03:32:22.243088+01:00\",\n        \"updated\": \"2024-04-10T12:56:07.412066+02:00\",\n        \"linked_object_id\": null\n    }\n}"}],"_postman_id":"be1d20e3-5707-403b-9de4-24e2d82e2ce3"}],"id":"634af414-0d6f-472c-a525-e67f9cc3fb88","description":"<h2 id=\"description\">Description</h2>\n<p>Storage for files of the current management system. Here, all files are stored hierarchically (→ a set of directories/folders).</p>\n<p>Folders can be system and user folders.</p>\n<h4 id=\"type-of-files\">Type of files</h4>\n<p>Globally, all files are divided into the following types:</p>\n<ul>\n<li><p>A file is a physical object in a specific format with a valid name.: It can be text, graphic, sound, etc.</p>\n</li>\n<li><p>Directory is a folder where other files (files, folders, and links) are stored.</p>\n</li>\n<li><p>A link is a file that contains a link to any type of file. The link allows you to broadcast the same instance of an entity to different locations in the system.</p>\n</li>\n</ul>\n<p>Most often, the system uses a link in the form of a folder. For example, the building profile has a link to files from the building group.</p>\n<p>Also, all files can be divided into 2 groups.:</p>\n<ul>\n<li><p>System files are files and folders that are created by the system (server, backend, code).</p>\n<ul>\n<li><p>System folders are created when creating an object (house, apartment, resident/landlord). Most often, the current CC is displayed on the front as the creator/owner.</p>\n</li>\n<li><p>No one can delete system folders manually. System folders and their contents are deleted only when an object is deleted.</p>\n</li>\n<li><p>When you change the address of the house, username, apartment number, the folder name should change.</p>\n</li>\n</ul>\n</li>\n<li><p>Custom files are files and folders that the user himself created through interaction with the front-line unit (portal, mobile application).</p>\n</li>\n</ul>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create directory</td>\n<td><code>/api/rest/v1/directories/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create directories in assigned directories only</td>\n</tr>\n<tr>\n<td>Get directory</td>\n<td><code>/api/rest/v1/directories/{directory_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to assigned directories only</td>\n</tr>\n<tr>\n<td>Delete directory</td>\n<td><code>/api/rest/v1/directories/{directory_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Delete directories in assigned directories only</td>\n</tr>\n<tr>\n<td>Update directory</td>\n<td><code>/api/rest/v1/directories/{directory_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update directories in assigned directories only</td>\n</tr>\n<tr>\n<td>Get directory content</td>\n<td><code>/api/rest/v1/directories/{directory_id}/content/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to content of assigned directories only</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li>directory_id</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n","_postman_id":"634af414-0d6f-472c-a525-e67f9cc3fb88"},{"name":"Request","item":[{"name":"Export request","item":[{"name":"Start service request export","id":"9256efcf-db4a-47fd-8b36-69b106fccf90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/export/","description":"<h4 id=\"start-service-request-export\">Start service request export</h4>\n<p>Starts an asynchronous export of service requests to a CSV file. Available for admin users of the public API (OAuth2 token). By default, all active requests are exported with all available export columns.</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/requests/export/</code></p>\n<h5 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h5>\n<p>All fields are optional.</p>\n<ul>\n<li><p><code>updated_gte</code> (string, ISO 8601 datetime) — Only include requests last updated on or after this date and time.</p>\n</li>\n<li><p><code>updated_lte</code> (string, ISO 8601 datetime) — Only include requests last updated on or before this date and time.</p>\n</li>\n<li><p><code>with_archived</code> (boolean) — If <code>true</code>, archived requests are included in addition to active ones. Default is <code>false</code>.</p>\n</li>\n</ul>\n<h5 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h5>\n<ul>\n<li><p><code>status</code> (string) — Result of the request. <code>\"ok\"</code> if the export was started successfully.</p>\n</li>\n<li><p><code>task_id</code> (string, UUID) — Unique identifier of the export task. Use this value to check the export status.</p>\n</li>\n</ul>\n<p><strong>Note:</strong> Only one export can run at a time per user. If an export is already in progress, a new request returns:</p>\n<p>json</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>400 {\"detail\": \"task is already running\"}\n\n</code></pre>","urlObject":{"path":["api","rest","v1","requests","export",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"39956569-b6f4-4c33-ae55-bf54de3a91bf","name":"Start service request export","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"updated_gte\": \"2026-01-01T00:00:00Z\",\n  \"updated_lte\": \"2026-07-01T00:00:00Z\",\n  \"with_archived\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/export/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\",\n    \"task_id\": \"3a34aca1-8618-4e02-b11a-fa725d94900c\"\n}"}],"_postman_id":"9256efcf-db4a-47fd-8b36-69b106fccf90"},{"name":"Get export status","id":"01a7236f-0faa-4aa7-9c9c-302f70bc74bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/export/<task_id>/","description":"<h4 id=\"get-export-status\">Get export status</h4>\n<p>Returns the current status of a service request export task.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/requests/export//</code></p>\n<h5 id=\"path-parameters\"><strong>Path Parameters:</strong></h5>\n<ul>\n<li><code>task_id</code> (string, UUID) — Identifier of the export task, returned by the start export endpoint.</li>\n</ul>\n<h5 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h5>\n<ul>\n<li><p><code>id</code> (string, UUID) — Identifier of the export task.</p>\n</li>\n<li><p><code>status</code> (string) — Current state of the export. One of: <code>in_progress</code>, <code>success</code>, <code>failed</code>.</p>\n</li>\n<li><p><code>directory_id</code> (integer) — Identifier of the directory containing the exported file.</p>\n</li>\n<li><p><code>files</code> (array of integers) — List containing the identifier of the generated CSV file. Available when <code>status</code> is <code>success</code>. Use the file API to download the file.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","export","<task_id>",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"91ecb3e8-3f1e-4485-8667-d87e55a493f8","name":"Get export status","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/export/00993fd1-2dc5-4820-9fc1-c21bbb3e6ee4/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"00993fd1-2dc5-4820-9fc1-c21bbb3e6ee4\",\n    \"status\": \"success\",\n    \"directory_id\": 35487154,\n    \"files\": [\n        38644532\n    ]\n}"}],"_postman_id":"01a7236f-0faa-4aa7-9c9c-302f70bc74bb"}],"id":"a018cb0a-7234-4450-94f8-400fbd0a8e53","description":"<h4 id=\"usage-scenarios\">Usage Scenarios</h4>\n<ul>\n<li><p><strong>Export all active requests</strong> — send an empty body <code>{}</code> to export all active requests with all columns.</p>\n</li>\n<li><p><strong>Export by date range</strong> — use <code>updated_gte</code> / <code>updated_lte</code> to export requests updated within a specific period (e.g. monthly report).</p>\n</li>\n<li><p><strong>Include archived requests</strong> — set <code>with_archived: true</code> to export active and archived requests together.</p>\n</li>\n<li><p><strong>Check export status</strong> — poll <code>GET /requests/export//</code> until <code>status</code> is <code>success</code>, then download the file via the file API using the ID from <code>files</code>.</p>\n</li>\n<li><p><strong>Use webhook instead of polling</strong> — subscribe to <code>request_export.created</code> to get notified when the export finishes; match by <code>task_id</code>, then download via <code>file_id</code>. Requires the event type to be registered in the Svix dashboard.</p>\n</li>\n<li><p><strong>Handle concurrent exports</strong> — only one export runs per user at a time; a second request while one is in progress returns <code>400 {\"detail\": \"task is already running\"}</code>. Wait for the current export to finish before starting a new one.</p>\n</li>\n</ul>\n<h4 id=\"export-completed-webhook\">Export completed webhook</h4>\n<p>As an alternative to polling, a webhook is sent once the export finishes. This requires webhooks to be enabled for the tenant.</p>\n<p><strong>Event type:</strong><br /><code>request_export.created</code></p>\n<h5 id=\"payload-parameters\"><strong>Payload Parameters:</strong></h5>\n<ul>\n<li><p><code>task_id</code> (string, UUID) — Identifier of the export task. Use this value to match the webhook to the export started earlier.</p>\n</li>\n<li><p><code>directory_id</code> (integer) — Identifier of the directory containing the exported file.</p>\n</li>\n<li><p><code>file_id</code> (integer) — Identifier of the generated CSV file. Use the file API to download the file.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"task_id\": \"b2f7c1e4-5a3d-4e8f-9c21-7d0a4b6e8f12\",\n  \"directory_id\": 45,\n  \"file_id\": 123\n}\n\n</code></pre>\n<p><strong>Note:</strong> The event type <code>request_export.created</code> must be registered in the Svix dashboard before this webhook can be received.</p>\n","_postman_id":"a018cb0a-7234-4450-94f8-400fbd0a8e53"},{"name":"Create request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"c350da08-cba7-487f-8e2d-fb453aaa1e89"}}],"id":"798e5d5d-2915-4787-83c4-8fe9c595c9d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"string\",\n    \"text\": \"string\",\n    \"owner\": \"integer\",\n    \"files\": \"array\",\n    \"flat\": \"integer\",\n    \"type\": \"integer\",\n    \"building\": \"integer\",\n    \"status\": \"integer\",\n    \"archived\": \"boolean\",\n    \"labels\": \"array\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/","description":"<p>Only user with role \"Admin\" is able to create a new request.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/requests/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>title</code>(string, <strong>required</strong>) Request title.</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID. Required if creating a request for a dweller or landlord (<code>owner</code> field)</p>\n</li>\n<li><p><code>type</code>(integer) Request type. See <code>/api/rest/v1/requests/types/</code> for details.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID. If creating a request as an administrator or manager for building; must not be specified if creating a request for a dweller.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID. Status IDs can be retrieved via: <code>GET /api/rest/v1/requests/status/.</code></p>\n</li>\n<li><p><code>labels</code>(array[integer])</p>\n</li>\n<li><p><code>visible_to_dwellers</code>(boolean) Defines request visibility for dwellers.<br />  When <code>false</code>, dwellers cannot see the request. If not provided, the visibility is automatically set according to the management company's <strong>request_visible_to_dwellers</strong> configuration.</p>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>created</code> (string, optional) — Creation timestamp of the object in ISO 8601 format (\"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\").</p>\n<ul>\n<li><p>If not provided, the current server time will be used.</p>\n</li>\n<li><p>If specified, allows setting a custom creation time (e.g., in the past).</p>\n</li>\n</ul>\n</li>\n<li><p><code>updated</code>(string, optional) — Updated timestamp of the object in ISO 8601 format (\"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\").</p>\n<ul>\n<li><p>If not provided, the current server time will be used.</p>\n</li>\n<li><p>If specified, allows setting a custom update time (e.g., in the past).</p>\n</li>\n<li><p>Must be greater than or equal to <strong>created</strong>.</p>\n</li>\n</ul>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>number</code> (integer)</p>\n</li>\n<li><p><code>type</code>(integer)</p>\n</li>\n<li><p><code>owner</code>(integer)</p>\n</li>\n<li><p><code>title</code>(string) Request title.</p>\n</li>\n<li><p><code>text</code>(string) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID.</p>\n</li>\n<li><p><code>created_by</code>(integer)</p>\n</li>\n<li><p><code>labels</code>(array[Label])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>name</code>(string)</p>\n</li>\n<li><p><code>color</code>(string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"37055eec-7e26-4b36-bc86-fea146e6d9d0","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Versicherung: Wasserschaden\",\n    \"text\": \"Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:\",\n    \"assignees\": [264771],\n    \"owner\": 117288,\n    \"flat\": 114253,\n    \"type\": 7673,\n    \"status\": 3,\n    \"labels\": [1163],\n    \"due_date\": \"2025-06-30T12:30:00+02:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1364578,\n    \"number\": 2022,\n    \"type\": 7673,\n    \"status\": 1,\n    \"owner\": 117288,\n    \"created_by\": 117223,\n    \"title\": \"Versicherung: Wasserschaden\",\n    \"text\": \"Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:\",\n    \"building\": 5087,\n    \"flat\": 114253,\n    \"assignees\": [\n        264771\n    ],\n    \"labels\": [\n        1163\n    ],\n    \"files\": [],\n    \"directory\": 129187147,\n    \"updated\": \"2025-08-01T07:57:01.322570+02:00\",\n    \"created\": \"2025-08-01T07:57:00.854267+02:00\",\n    \"due_date\": \"2025-06-30T12:30:00+02:00\"\n}"}],"_postman_id":"798e5d5d-2915-4787-83c4-8fe9c595c9d7"},{"name":"Get request list","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"225ef260-18ef-4808-b775-1b71ded67b71"}}],"id":"bc9992f5-2076-44e1-a71d-29845e602c94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/","description":"<p>Paginated list of requests</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<ul>\n<li><p><code>created_gte</code> (string) Filter by create date later than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>created_lte</code> (string) Filter by create date earlier than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>updated_gte</code> (string) Filter by update date later than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n<li><p><code>updated_lte</code> (string) Filter by update date earlier than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n<li><p><code>buildingId</code>(int) Filter requests by building</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code>(integer)</p>\n</li>\n<li><p><code>pages</code>(integer)</p>\n</li>\n<li><p><code>page</code>(integer)</p>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>title</code>(string, <strong>required</strong>) Request title.</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID. Required if creating a request for a dweller or landlord (<code>owner</code> field)</p>\n</li>\n<li><p><code>type</code>(integer) Request type. See <code>/api/rest/v1/requests/types/</code> for details.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID. If creating a request as an administrator or manager for building; must not be specified if creating a request for a dweller.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID.</p>\n</li>\n<li><p><code>labels</code>(array[integer])</p>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>updated</code>(string) Example:2021-03-21T12:21:00</p>\n</li>\n<li><p><code>created</code>(string) Example:2021-03-21T12:00:00</p>\n</li>\n<li><p><code>public_chatroom</code> (string) — UUID of the public chatroom associated with the request, if such chatroom exists.</p>\n</li>\n<li><p><code>private_chatroom</code> (string) — UUID of the private chatroom associated with the request, if such chatroom exists.</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n<li><p><code>contractors</code>(array[integer]) IDs list of contractors.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter by update date earlier than specified date</p>\n","type":"text/plain"},"key":"updated_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by update date later than specified date</p>\n","type":"text/plain"},"key":"updated_gte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date earlier than specified date</p>\n","type":"text/plain"},"key":"created_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date later than specified date</p>\n","type":"text/plain"},"key":"created_gte","value":""},{"disabled":true,"description":{"content":"<p>Get requests by building</p>\n","type":"text/plain"},"key":"building","value":"{{building_id}}"}],"variable":[]}},"response":[{"id":"4bd3931a-787f-4379-97a3-e7f99d960384","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Bearer 123"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.demo.idwell.at/api/rest/v1/requests/","protocol":"https","host":["api","demo","idwell","at"],"path":["api","rest","v1","requests",""],"query":[{"key":"updated_lte","value":"","description":"Filter by update date earlier than specified date","disabled":true},{"key":"updated_gte","value":"","description":"Filter by update date later than specified date","disabled":true},{"key":"created_lte","value":"","description":"Filter by create date earlier than specified date","disabled":true},{"key":"created_gte","value":"","description":"Filter by create date later than specified date","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 292,\n    \"pages\": 3,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/requests/?page=2\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/requests/?page=last\"\n    },\n    \"results\": [\n        {\n            \"id\": 1363342,\n            \"number\": 2019,\n            \"type\": 7673,\n            \"status\": 2,\n            \"owner\": 117648,\n            \"created_by\": 117223,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"<p>Ein Wasserschaden wurde in der Liegenschaft Paletzgasse 35, 1160 Wien, Österreich gemeldet:</p>\\n<p> </p>\\n<p><strong>Art des Schadens</strong>: Wasserfleck an der Wand im Badezimmer</p>\\n<p><strong>Anmerkungen</strong>: Siehe Beschreibung</p>\\n<p><strong>Schadennummer</strong>: 463347463</p>\\n<p> </p>\\n<p>Aktuellen Stand der Bearbeitung: </p>\\n<p> </p>\\n<p>dgfhf</p>\\n<p> </p>\\n<p>--</p>\\n<p><span style=\\\"text-decoration: underline;\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\n<p>Name: Andre Adler</p>\\n<p><strong>Adresse</strong>: Paletzgasse 35, 1160 Wien, Österreich</p>\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\n<p><strong>Telefon</strong>: 4704175297</p>\\n<p><strong>E-Mail</strong>: joshua33@example.net</p>\",\n            \"building\": 5101,\n            \"flat\": 114613,\n            \"assignees\": [\n                264771,\n                271144\n            ],\n            \"labels\": [\n                1523\n            ],\n            \"files\": [],\n            \"directory\": 129104690,\n            \"updated\": \"2025-07-31T14:38:48.508279+02:00\",\n            \"created\": \"2025-07-31T14:13:56.319876+02:00\",\n            \"due_date\": \"2025-08-01T12:00:00+02:00\",\n            \"public_chatroom\": \"4ff1a5e0-fc1e-412e-a285-451b27e97db2\",\n            \"private_chatroom\": \"71f117f0-8d65-43db-ad19-20348a5bc6ad\"\n        },\n        {\n            \"id\": 1363348,\n            \"number\": 2020,\n            \"type\": 7673,\n            \"status\": 1,\n            \"owner\": 117288,\n            \"created_by\": 117223,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"<p>Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:</p>\\n<p> </p>\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\n<p><strong>Anmerkungen</strong>: Siehe oben</p>\\n<p><strong>Schadennummer</strong>: </p>\\n<p> </p>\\n<p>--</p>\\n<p><span style=\\\"text-decoration: underline;\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\n<p>Name: Andre Adler</p>\\n<p><strong>Adresse</strong>: MIET Abelegasse 18, 1160 Wien, Österreich</p>\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\n<p><strong>Telefon</strong>: 4989794079815</p>\\n<p><strong>E-Mail</strong>: kevinestrada@example.com</p>\",\n            \"building\": 5087,\n            \"flat\": 114253,\n            \"assignees\": [\n                264771\n            ],\n            \"labels\": [],\n            \"files\": [],\n            \"directory\": 129105187,\n            \"updated\": \"2025-07-31T14:15:12.934235+02:00\",\n            \"created\": \"2025-07-31T14:15:12.078601+02:00\",\n            \"due_date\": null,\n            \"public_chatroom\": null,\n            \"private_chatroom\": null\n        },\n        {\n            \"id\": 1300868,\n            \"number\": 1996,\n            \"type\": 7426,\n            \"status\": 2,\n            \"owner\": 117324,\n            \"created_by\": 117223,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"<p><strong>Objekt:</strong> Oberlaaer Str. 192, 1100 Wien, Österreich</p>\\n<p><strong>Wohnungs-Nr.: </strong>0</p>\\n<p> </p>\\n<p><strong>Auszuziehender Mieter: </strong>Andre Geisinger</p>\\n<p><strong>E-Mail: </strong>paulcaleb@example.com</p>\\n<p><strong>Telefon-Nr.:</strong> 2033407242</p>\\n<p> </p>\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\n<p><strong>Kündigungsfrist bis zum:</strong> 30.11.2025</p>\\n<p><strong>Anmerkungen: </strong>Infos</p>\\n<p><strong>Vermieter: </strong>Immo Fond</p>\\n<p><strong>Termin Rücknahme:</strong> August wegen Urlaub</p>\",\n            \"building\": 5089,\n            \"flat\": 114289,\n            \"assignees\": [\n                1743841\n            ],\n            \"labels\": [],\n            \"files\": [],\n            \"directory\": 123538100,\n            \"updated\": \"2025-07-30T11:15:23.238438+02:00\",\n            \"created\": \"2025-06-30T11:06:10.970706+02:00\",\n            \"due_date\": \"2025-07-30T11:15:00.914418+02:00\",\n            \"public_chatroom\": null,\n            \"private_chatroom\": null\n        },\n        {\n            \"id\": 1345484,\n            \"number\": 2015,\n            \"type\": 7426,\n            \"status\": 2,\n            \"owner\": 117288,\n            \"created_by\": 117223,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"<p><strong>Objekt:</strong> MIET Abelegasse 18, 1160 Wien, Österreich</p>\\n<p><strong>Wohnungs-Nr.: </strong>20</p>\\n<p> </p>\\n<p><strong>Auszuziehender Mieter: </strong>Andre Adler</p>\\n<p><strong>E-Mail: </strong>kevinestrada@example.com</p>\\n<p><strong>Telefon-Nr.:</strong> 4989794079815</p>\\n<p> </p>\\n<p><strong>Kündigungsdatum: </strong></p>\\n<p><strong>Kündigungsfrist bis zum:</strong> </p>\\n<p><strong>Anmerkungen: </strong></p>\\n<p><strong>Vermieter: </strong></p>\\n<p><strong>Termin Rücknahme:</strong> </p>\",\n            \"building\": 5087,\n            \"flat\": 114253,\n            \"assignees\": [\n                264771,\n                3969160\n            ],\n            \"labels\": [\n                12122\n            ],\n            \"files\": [],\n            \"directory\": 127653318,\n            \"updated\": \"2025-07-30T09:59:46.264607+02:00\",\n            \"created\": \"2025-07-23T10:57:14.225985+02:00\",\n            \"due_date\": \"2025-08-22T11:00:00.164771+02:00\",\n            \"public_chatroom\": null,\n            \"private_chatroom\": null\n        }\n    ]\n}"}],"_postman_id":"bc9992f5-2076-44e1-a71d-29845e602c94"},{"name":"Get request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"4ad1fd1d-a80a-4337-892c-93f883088924"}}],"id":"8e554581-157d-4b0b-b52b-b985ac51246a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/","description":"<p>Paginated list of requests</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<ul>\n<li><p><code>created_gte</code> (string) Filter by create date later than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>created_lte</code> (string) Filter by create date earlier than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>updated_gte</code> (string) Filter by update date later than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n<li><p><code>updated_lte</code> (string) Filter by update date earlier than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n<li><p><code>buildingId</code>(int) Filter requests by building</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>title</code>(string, <strong>required</strong>) Request title.</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID. Required if creating a request for a dweller or landlord (<code>owner</code> field)</p>\n</li>\n<li><p><code>type</code>(integer) Request type. See <code>/api/rest/v1/requests/types/</code> for details.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID. If creating a request as an administrator or manager for building; must not be specified if creating a request for a dweller.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID.</p>\n</li>\n<li><p><code>labels</code>(array[integer])</p>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>updated</code>(string) Example:2021-03-21T12:21:00</p>\n</li>\n<li><p><code>created</code>(string) Example:2021-03-21T12:00:00</p>\n</li>\n<li><p><code>public_chatroom</code> (string) — UUID of the public chatroom associated with the request, if such chatroom exists.</p>\n</li>\n<li><p><code>private_chatroom</code> (string) — UUID of the private chatroom associated with the request, if such chatroom exists.</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n<li><p><code>contractors</code>(array[integer]) IDs list of contractors.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter by update date earlier than specified date</p>\n","type":"text/plain"},"key":"updated_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by update date later than specified date</p>\n","type":"text/plain"},"key":"updated_gte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date earlier than specified date</p>\n","type":"text/plain"},"key":"created_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date later than specified date</p>\n","type":"text/plain"},"key":"created_gte","value":""},{"disabled":true,"description":{"content":"<p>Get requests by building</p>\n","type":"text/plain"},"key":"building","value":"{{building_id}}"}],"variable":[]}},"response":[{"id":"86290be7-e7b5-4c79-93c2-7a04e3f25f2a","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Bearer 123"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.demo.idwell.at/api/rest/v1/requests/1363342"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":" {\n            \"id\": 1363342,\n            \"number\": 2019,\n            \"type\": 7673,\n            \"status\": 2,\n            \"owner\": 117648,\n            \"created_by\": 117223,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"<p>Ein Wasserschaden wurde in der Liegenschaft Paletzgasse 35, 1160 Wien, Österreich gemeldet:</p>\\n<p> </p>\\n<p><strong>Art des Schadens</strong>: Wasserfleck an der Wand im Badezimmer</p>\\n<p><strong>Anmerkungen</strong>: Siehe Beschreibung</p>\\n<p><strong>Schadennummer</strong>: 463347463</p>\\n<p> </p>\\n<p>Aktuellen Stand der Bearbeitung: </p>\\n<p> </p>\\n<p>dgfhf</p>\\n<p> </p>\\n<p>--</p>\\n<p><span style=\\\"text-decoration: underline;\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\n<p>Name: Andre Adler</p>\\n<p><strong>Adresse</strong>: Paletzgasse 35, 1160 Wien, Österreich</p>\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\n<p><strong>Telefon</strong>: 4704175297</p>\\n<p><strong>E-Mail</strong>: joshua33@example.net</p>\",\n            \"building\": 5101,\n            \"flat\": 114613,\n            \"assignees\": [\n                264771,\n                271144\n            ],\n            \"labels\": [\n                1523\n            ],\n            \"files\": [],\n            \"directory\": 129104690,\n            \"updated\": \"2025-07-31T14:38:48.508279+02:00\",\n            \"created\": \"2025-07-31T14:13:56.319876+02:00\",\n            \"due_date\": \"2025-08-01T12:00:00+02:00\",\n            \"public_chatroom\": \"4ff1a5e0-fc1e-412e-a285-451b27e97db2\",\n            \"private_chatroom\": \"71f117f0-8d65-43db-ad19-20348a5bc6ad\"\n        }"}],"_postman_id":"8e554581-157d-4b0b-b52b-b985ac51246a"},{"name":"Get a list of request types","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"e61c61de-65dc-423f-9339-b021bb1c3698"}}],"id":"49801712-8b43-41ac-be9c-56ec41458ad1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/types/","description":"<p>Paginated list of request types.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/types/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code>(integer)</p>\n</li>\n<li><p><code>pages</code>(integer)</p>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>name</code>(string)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","types",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"478ec839-c969-45af-9ead-506872612441","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/types/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 86,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 2621,\n            \"name\": \"Hausbetreuung\"\n        },\n        {\n            \"id\": 1693,\n            \"name\": \"Gegensprechanlage\"\n        },\n        {\n            \"id\": 1692,\n            \"name\": \"Garage\"\n        },\n        {\n            \"id\": 1690,\n            \"name\": \"Einbruch\"\n        },\n        {\n            \"id\": 2622,\n            \"name\": \"Finanzielles\"\n        },\n        {\n            \"id\": 2182,\n            \"name\": \"Hausreinigung/Außenanlagen\"\n        },\n        {\n            \"id\": 2623,\n            \"name\": \"Gerichtsprozess / Klage\"\n        },\n        {\n            \"id\": 2624,\n            \"name\": \"Objekt-Kontrolle\"\n        },\n        {\n            \"id\": 1769,\n            \"name\": \"Wohnungsübergabe\"\n        },\n        {\n            \"id\": 2625,\n            \"name\": \"Reparaturdurchführung\"\n        },\n        {\n            \"id\": 2626,\n            \"name\": \"Sanierungsarbeiten\"\n        },\n        {\n            \"id\": 2181,\n            \"name\": \"Glasbruch\"\n        },\n        {\n            \"id\": 2627,\n            \"name\": \"Versicherungsfall\"\n        },\n        {\n            \"id\": 2628,\n            \"name\": \"Verlassenschaften\"\n        },\n        {\n            \"id\": 2184,\n            \"name\": \"Schädlingsmeldung\"\n        },\n        {\n            \"id\": 2183,\n            \"name\": \"Mängel\"\n        },\n        {\n            \"id\": 1795,\n            \"name\": \"Heizung\"\n        },\n        {\n            \"id\": 2629,\n            \"name\": \"Wartung technischer Anlagen\"\n        },\n        {\n            \"id\": 2630,\n            \"name\": \"Wohnungsverkauf / -vermietung\"\n        },\n        {\n            \"id\": 2189,\n            \"name\": \"Wohnungsausstattung\"\n        },\n        {\n            \"id\": 2188,\n            \"name\": \"Verstopfung\"\n        },\n        {\n            \"id\": 2187,\n            \"name\": \"Stiegenhauslicht\"\n        },\n        {\n            \"id\": 2186,\n            \"name\": \"Sonstiges\"\n        },\n        {\n            \"id\": 1791,\n            \"name\": \"Wasserschaden\"\n        },\n        {\n            \"id\": 2631,\n            \"name\": \"Beendigung Mietverhältnis\"\n        },\n        {\n            \"id\": 2632,\n            \"name\": \"Sonstige Meldungen\"\n        },\n        {\n            \"id\": 2633,\n            \"name\": \"Eigentümerversammlung\"\n        },\n        {\n            \"id\": 1793,\n            \"name\": \"Beleuchtung\"\n        },\n        {\n            \"id\": 6435,\n            \"name\": \"Schadenseintritt Versicherung\"\n        },\n        {\n            \"id\": 7426,\n            \"name\": \"Mietkündigung\"\n        },\n        {\n            \"id\": 7427,\n            \"name\": \"Neuvermietung\"\n        },\n        {\n            \"id\": 7428,\n            \"name\": \"Objektkontrolle\"\n        },\n        {\n            \"id\": 7673,\n            \"name\": \"Versicherung Wasserschaden\"\n        },\n        {\n            \"id\": 7887,\n            \"name\": \"Neue Schließanlage\"\n        },\n        {\n            \"id\": 7888,\n            \"name\": \"Kokosvelourmatten\"\n        },\n        {\n            \"id\": 7889,\n            \"name\": \"Infotafel erneuern\"\n        },\n        {\n            \"id\": 7941,\n            \"name\": \"Wohnungsinserat Verkauf\"\n        },\n        {\n            \"id\": 7942,\n            \"name\": \"Wohnungsinserat Vermietung\"\n        },\n        {\n            \"id\": 1796,\n            \"name\": \"Lift\"\n        },\n        {\n            \"id\": 8118,\n            \"name\": \"Thermenwartung\"\n        },\n        {\n            \"id\": 8119,\n            \"name\": \"Angebotseinholung\"\n        },\n        {\n            \"id\": 1691,\n            \"name\": \"Einzugsermächtigung\"\n        },\n        {\n            \"id\": 8664,\n            \"name\": \"defekte Glühbirne\"\n        },\n        {\n            \"id\": 8887,\n            \"name\": \"Schornsteinfeger\"\n        },\n        {\n            \"id\": 7425,\n            \"name\": \"Eigentümerwechsel\"\n        },\n        {\n            \"id\": 10472,\n            \"name\": \"Genehmigung Tierhaltung\"\n        },\n        {\n            \"id\": 2180,\n            \"name\": \"Aufzugsstörung\"\n        },\n        {\n            \"id\": 2309,\n            \"name\": \"Elektrogeräte\"\n        },\n        {\n            \"id\": 10957,\n            \"name\": \"Dokumentation/Ablage\"\n        },\n        {\n            \"id\": 11814,\n            \"name\": \"Beantragung Energieausweis\"\n        },\n        {\n            \"id\": 9389,\n            \"name\": \"Wartung\"\n        },\n        {\n            \"id\": 17260,\n            \"name\": \"Übergabeprotokoll\"\n        },\n        {\n            \"id\": 18275,\n            \"name\": \"Telefonnotiz\"\n        },\n        {\n            \"id\": 19045,\n            \"name\": \"Trinkwasseruntersuchung\"\n        },\n        {\n            \"id\": 22169,\n            \"name\": \"O_Reparaturauftrag/Schadensmeldung\"\n        },\n        {\n            \"id\": 22170,\n            \"name\": \"LVL1\"\n        },\n        {\n            \"id\": 22171,\n            \"name\": \"LVL2\"\n        },\n        {\n            \"id\": 22172,\n            \"name\": \"LVL3\"\n        },\n        {\n            \"id\": 22174,\n            \"name\": \"O_Forderungsmanagement\"\n        },\n        {\n            \"id\": 22175,\n            \"name\": \"O_Neuvermietung\"\n        },\n        {\n            \"id\": 22176,\n            \"name\": \"O_Mieterhöhung\"\n        },\n        {\n            \"id\": 24116,\n            \"name\": \"R_Wohnungskündigung\"\n        },\n        {\n            \"id\": 24117,\n            \"name\": \"R_Wohnungsabnahme\"\n        },\n        {\n            \"id\": 24118,\n            \"name\": \"R_Leerwohnungssanierung\"\n        },\n        {\n            \"id\": 24119,\n            \"name\": \"R_Mietvertragsabschluss inkl. Mietvertragserstellung\"\n        },\n        {\n            \"id\": 24120,\n            \"name\": \"R_Wohnungsübergabe\"\n        },\n        {\n            \"id\": 25246,\n            \"name\": \"Test_Zählerstände\"\n        },\n        {\n            \"id\": 30573,\n            \"name\": \"Rauchfangkehrer Vorbefund\"\n        },\n        {\n            \"id\": 30617,\n            \"name\": \"Qualitätsmanagement\"\n        },\n        {\n            \"id\": 31220,\n            \"name\": \"Schlosser\"\n        },\n        {\n            \"id\": 32168,\n            \"name\": \"Trinkwasserüberprüfung\"\n        },\n        {\n            \"id\": 34643,\n            \"name\": \"Testprozess\"\n        },\n        {\n            \"id\": 34853,\n            \"name\": \"Test2\"\n        },\n        {\n            \"id\": 36425,\n            \"name\": \"test\"\n        },\n        {\n            \"id\": 37613,\n            \"name\": \"Tagesordnungspunkt\"\n        },\n        {\n            \"id\": 37811,\n            \"name\": \"Wartung technische Anlage (Quartalsweise)\"\n        },\n        {\n            \"id\": 40725,\n            \"name\": \"Buchhaltung\"\n        },\n        {\n            \"id\": 41903,\n            \"name\": \"Telefonnotiz_2\"\n        },\n        {\n            \"id\": 50384,\n            \"name\": \"Türen & Fenster\"\n        },\n        {\n            \"id\": 2185,\n            \"name\": \"Schlüsselbestellung\"\n        },\n        {\n            \"id\": 52542,\n            \"name\": \"RES\"\n        },\n        {\n            \"id\": 53618,\n            \"name\": \"Beschluss\"\n        },\n        {\n            \"id\": 53619,\n            \"name\": \"Beschlussumsetzung\"\n        },\n        {\n            \"id\": 54839,\n            \"name\": \"Dydo - Vorschau\"\n        },\n        {\n            \"id\": 62099,\n            \"name\": \"Objektübergabe\"\n        },\n        {\n            \"id\": 80415,\n            \"name\": \"Zählerstandabfrage\"\n        }\n    ]\n}"}],"_postman_id":"49801712-8b43-41ac-be9c-56ec41458ad1"},{"name":"Update request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"77f0a79a-7463-4ab6-a126-9bff8e11e670"}}],"id":"0115bbee-22ca-42f1-b3ae-f023164bfedb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"integer\",\n    \"number\": \"integer\",\n    \"type\": \"integer or null\",\n    \"status\": \"integer\",\n    \"owner\": \"integer\",\n    \"title\": \"string\",\n    \"text\": \"string\",\n    \"building\": \"integer\",\n    \"flat\": \"integer\",\n    \"assignees\": [\n        \"integer\"\n    ],\n    \"labels\": [\n        \"integer\"\n    ],\n    \"files\": [\n        \"integer\"\n    ],\n    \"due_date\": \"string or null\",\n    \"visible_to_dwellers\": \"boolean\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/","description":"<p>You can update all fields in request (title, text, owner, files, building, flat, type).</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/requests/{request_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<p><code>request_id</code>(integer)</p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>title</code>(string, <strong>required</strong>) Request title.</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID. Required if creating a request for a dweller or landlord (<code>owner</code> field)</p>\n</li>\n<li><p><code>type</code>(integer) Request type. See <code>/api/rest/v1/requests/types/</code> for details.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID. If creating a request as an administrator or manager for building; must not be specified if creating a request for a dweller.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID.</p>\n</li>\n<li><p><code>labels</code>(array[integer])</p>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>visible_to_dwellers</code>(boolean, optional) — Defines request visibility for dwellers.<br />  When <code>false</code>, dwellers cannot see the request or send messages to the public chat.</p>\n</li>\n<li><p><code>created</code> (string, optional) — Creation timestamp of the object in ISO 8601 format (\"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\").</p>\n<ul>\n<li><p>If not provided, the current server time will be used.</p>\n</li>\n<li><p>If specified, allows setting a custom creation time (e.g., in the past).</p>\n</li>\n</ul>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>title</code>(string, <strong>required</strong>) Request title.</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>) Request body.</p>\n</li>\n<li><p><code>owner</code>(integer) Request initiator.</p>\n</li>\n<li><p><code>files</code>(array[integer]) IDs of files attached to the request.</p>\n</li>\n<li><p><code>flat</code>(integer) Flat ID. Required if creating a request for a dweller or landlord (<code>owner</code> field)</p>\n</li>\n<li><p><code>type</code>(integer) Request type. See <code>/api/rest/v1/requests/types/</code> for details.</p>\n</li>\n<li><p><code>building</code>(integer) Building ID. If creating a request as an administrator or manager for building; must not be specified if creating a request for a dweller.</p>\n</li>\n<li><p><code>status</code>(integer) Request status ID.</p>\n</li>\n<li><p><code>labels</code>(array[integer])</p>\n</li>\n<li><p><code>assignees</code>(array[integer]) IDs of managers that supervise the request.</p>\n</li>\n<li><p><code>due_date</code>(string) Datetime in formats either \"2025-01-01T00:00:00Z\" or \"2025-01-01T00:00:00.000000Z\" in UTC timezone</p>\n</li>\n<li><p><code>visible_to_dwellers</code>(boolean, optional) — Defines request visibility for dwellers.</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"cc0f09ae-d00e-4b67-9808-6b5d334b630f","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Bearer 123"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://api.demo.idwell.at/api/rest/v1/requests/48371/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 48371,\n    \"number\": 7,\n    \"type\": 6065,\n    \"status\": 3,\n    \"owner\": 56329,\n    \"created_by\": 55637,\n    \"title\": \"[api] Replace light bulb\",\n    \"text\": \"The light bulb in the hallway has burned out. Please replace it with a new one.\",\n    \"building\": 12900,\n    \"flat\": 24929,\n    \"assignees\": [\n        55638\n    ],\n    \"labels\": [\n        2570\n    ],\n    \"files\": [],\n    \"directory\": 540842,\n    \"updated\": \"2025-06-30T12:36:31.865054+02:00\",\n    \"created\": \"2025-06-30T12:28:27.976623+02:00\",\n    \"due_date\": \"2025-06-30T12:30:00+02:00\",\n    \"visible_to_dwellers\": true,\n    \"public_chatroom\": \"e5df560f-c689-49f5-878d-7c45c6a084bd\",\n    \"private_chatroom\": \"e2112d6f-8a8e-4d37-98b8-6a98ab79f4f9\"\n}"}],"_postman_id":"0115bbee-22ca-42f1-b3ae-f023164bfedb"},{"name":"Get request's statuses list","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"339d0e52-ebaa-4d8e-8fab-5fe0718777bc"}}],"id":"c0b50ba5-12cc-426a-9e45-681d33526b94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/status/","description":"<p>List of request's statuses</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/status/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code>(integer)</p>\n</li>\n<li><p><code>pages</code>(integer)</p>\n</li>\n<li><p><code>page</code>(integer)</p>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>id</code>(integer) &gt;= 1&lt;= 4</p>\n</li>\n<li><p><code>title</code>(string) Example:opened</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","status",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"d9ecee5c-65af-492c-854e-7390a4028e21","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/status/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 4,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 1,\n            \"title\": \"opened\"\n        },\n        {\n            \"id\": 2,\n            \"title\": \"scheduled\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"completed\"\n        },\n        {\n            \"id\": 4,\n            \"title\": \"rejected\"\n        }\n    ]\n}"}],"_postman_id":"c0b50ba5-12cc-426a-9e45-681d33526b94"},{"name":"Generate eml files for request thread","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"2b8e37f4-a2ed-4710-bb52-a13e9edbb56c"}}],"id":"eb5c801d-a1e1-402b-bce2-59e3bac5c140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"uuid\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/","description":"<p>Generate eml files for request thread</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/requests/eml/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><code>uuid</code>(string, <strong>required</strong>) request thread uuid</li>\n</ul>\n<h4 id=\"response-parameters\"><strong>Response Parameters:</strong></h4>\n<ul>\n<li>array[integer] generated eml file ids</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","eml",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"f4973ede-7f74-41ec-aa6f-2e50360eef21","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"uuid\": \"4ad06cca-cc71-4f04-b859-f8df60b5e3c0\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[0]"}],"_postman_id":"eb5c801d-a1e1-402b-bce2-59e3bac5c140"},{"name":"Upload EML file to a request thread","id":"d61cb6c7-503b-45e0-ab14-15447822f08a","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"request_id","value":"int ","description":"<p>Identifier of a non-archived request that belongs to the management company.</p>\n","type":"text","uuid":"22c505ed-ddb0-4740-b717-cbcd82d4ae4e"},{"key":"eml_file","description":"<p>The original .eml file to upload. Max size: 25 MB.</p>\n","type":"file","uuid":"0560e6b5-6177-4e4e-8ab0-c53037877ade","value":null},{"key":"request_thread_uuid","value":"uuid","description":"<p>Identifier of an existing (not deleted) request thread associated with the given request_id.</p>\n","type":"text","uuid":"422ece5d-940c-4f48-a5cc-7e2c14dc0fab"},{"key":"audience","value":"str","description":"<p>Defines which audience tab the thread will be added to.</p>\n","type":"text","uuid":"9798cde5-8807-4205-bab1-8f6763ecc2af"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/upload/","description":"<h3 id=\"upload-eml-file-to-a-request-thread\"><strong>Upload EML file to a request thread</strong></h3>\n<p>Uploads an <code>.eml</code> message file and attaches it to an existing request or creates a new request thread if none is specified.</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/requests/eml/upload/</code></p>\n<h3 id=\"request-body-parameters-multipartform-data\"><strong>Request Body Parameters (multipart/form-data):</strong></h3>\n<ul>\n<li><p><code>request_id</code> (integer, <strong>required</strong>) — Identifier of a non-archived request that belongs to the management company.</p>\n</li>\n<li><p><code>eml_file</code> (file, <strong>required</strong>) — The original <code>.eml</code> file to upload.<br />  <strong>Max size: 25 MB.</strong></p>\n</li>\n<li><p><code>request_thread_uuid</code> (uuid, optional, default: <code>null</code>) — Identifier of an existing (not deleted) request thread associated with the given <code>request_id</code>.<br />  If the uploaded email already exists in this thread, the API returns an error.<br />  If this field is not provided, a new thread will be created.</p>\n</li>\n<li><p><code>audience</code> (enum: <code>managers | providers | dwellers</code>, optional, default: <code>managers</code>) — Defines which audience tab the thread will be added to.</p>\n</li>\n</ul>\n<h4 id=\"response-parameters\"><strong>Response Parameters:</strong></h4>\n<ul>\n<li><p>uuid[str] - created_message_uuid</p>\n</li>\n<li><p>request_thread_uuid[str] - request_thread_uuid</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","eml","upload",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"e0307bc3-14b5-446f-844a-180facf598d2","name":"Upload EML file to a request thread","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"multipart/form-data","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"request_id","value":"int ","description":"Identifier of a non-archived request that belongs to the management company.","type":"text","uuid":"22c505ed-ddb0-4740-b717-cbcd82d4ae4e"},{"key":"eml_file","description":"The original .eml file to upload. Max size: 25 MB.","type":"file","uuid":"0560e6b5-6177-4e4e-8ab0-c53037877ade","src":[]},{"key":"request_thread_uuid","value":"uuid","description":"Identifier of an existing (not deleted) request thread associated with the given request_id.","type":"text","uuid":"422ece5d-940c-4f48-a5cc-7e2c14dc0fab"},{"key":"audience","value":"str","description":"Defines which audience tab the thread will be added to.","type":"text","uuid":"9798cde5-8807-4205-bab1-8f6763ecc2af"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/upload/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"uuid\": \"<created_message_uuid>\",\n    \"request_thread_uuid\": \"<request_thread_uuid>\"\n}"}],"_postman_id":"d61cb6c7-503b-45e0-ab14-15447822f08a"},{"name":"Get url of eml file to download it","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"16ec3ff1-a9e9-4c78-8cf9-8d12772b3175"}}],"id":"7ad5ab51-44a2-470d-bed7-3fedc60195f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/{eml_file_id}/","description":"<p>Get url of eml file to download it. You can find eml file id in response after generation eml in <code>POST /requests/eml/</code> endpoint.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/eml/{eml_file_id}/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<p><code>eml_file_id</code>(integrer, <strong>required</strong>)</p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>url</code>(string or null)</p>\n</li>\n<li><p><code>message</code>(string or null)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","eml","{eml_file_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"90c40c61-4601-415a-b97e-ab2894ffa506","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/eml/{eml_file_id}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"url\": \"string\",\n    \"message\": \"string\"\n}"}],"_postman_id":"7ad5ab51-44a2-470d-bed7-3fedc60195f0"},{"name":"Get activity types list","id":"4b4ab451-7b75-45b7-b604-11f31cad5a0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/activity-types/","description":"<h3 id=\"get-list-of-activity-types\">Get list of activity types</h3>\n<p>Returns a paginated list of activity types available for the authenticated user's organization.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/activity-types/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (integer) — Total number of activity types.</p>\n</li>\n<li><p><code>next</code> (string or null) — URL of the next page.</p>\n</li>\n<li><p><code>previous</code> (string or null) — URL of the previous page.</p>\n</li>\n<li><p><code>results</code> (array of objects) — List of activity type objects.</p>\n</li>\n</ul>\n<p>Each <strong>activity type object</strong> contains:</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the activity type.</p>\n</li>\n<li><p><code>name</code> (string) — Name of the activity type.</p>\n</li>\n<li><p><code>icon</code> (object) — Icon information object.</p>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the icon.</p>\n</li>\n<li><p><code>name</code> (string) — Icon file name.</p>\n</li>\n<li><p><code>origin</code> (string) — Full URL to the icon resource on CDN.</p>\n</li>\n</ul>\n</li>\n<li><p><code>enabled</code> (boolean) — Whether the activity type is enabled or not.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","activity-types",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"afb542eb-3af9-471a-9a96-7bdb3c101dfc","name":"Get activity types list","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://immo21.idwell.com/api/rest/v1/activity-types/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 46,\n            \"name\": \"Anruf\",\n            \"icon\": {\n                \"id\": 23,\n                \"name\": \"call_2.svg\",\n                \"origin\": \"https://files.idwell.com/icon/activity_type_icon/call_2.svg\"\n            },\n            \"enabled\": true\n        },\n        {\n            \"id\": 272,\n            \"name\": \"Team Buchhaltung\",\n            \"icon\": {\n                \"id\": 6,\n                \"name\": \"cash.svg\",\n                \"origin\": \"https://files.idwell.com/icon/activity_type_icon/cash.svg\"\n            },\n            \"enabled\": false\n        }\n    ]\n}"}],"_postman_id":"4b4ab451-7b75-45b7-b604-11f31cad5a0c"},{"name":"Create activity to request","id":"f3753f39-c823-4e75-89ba-5a9335179bb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Token {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phase\": \"integer\",\n    \"title\": \"string\",\n    \"type\": \"integer\",\n    \"priority\": \"integer\",\n    \"deadline\": \"string\",\n    \"commit_type\": \"string\",\n    \"manager\": \"integer\",\n    \"provider\": \"integer\",\n    \"notes\": \"string\",\n    \"pinned\": \"boolean\",\n    \"done\": \"boolean\",\n    \"yesno\": \"string\",\n    \"visible_to_tenant\": \"boolean\",\n    \"files\": \"array of integers\",\n    \"request_threads\": \"array of string\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{{request_id}}/activities/","description":"<p>Creates a new activity within a specific request phase. The phase must belong to the request specified in the URL.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/requests/{request_id}/activities/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<p><code>request_id</code> (integer, <strong>required</strong>) — ID of the request the activity belongs to.</p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<p><strong>Required fields:</strong></p>\n<ul>\n<li><p><code>phase</code> (integer, <strong>required</strong>) — ID of the phase this activity belongs to. Must belong to the same request.</p>\n</li>\n<li><p><code>title</code> (string, <strong>required</strong>) — Title or name of the activity.</p>\n</li>\n<li><p><code>type</code> (integer, <strong>required</strong>) — ID of the activity type.</p>\n</li>\n<li><p><code>commit_type</code> (string, <strong>required</strong>) — Defines how the activity is completed. Possible values: <code>\"done\"</code>, <code>\"yesno\"</code>.</p>\n</li>\n<li><p><code>manager</code> (integer, <strong>required</strong>) — ID of the manager responsible for this activity.</p>\n</li>\n</ul>\n<p><strong>Optional fields:</strong></p>\n<ul>\n<li><p><code>priority</code> (integer, nullable) — ID of the activity priority.</p>\n</li>\n<li><p><code>deadline</code> (string, nullable) — Deadline in <code>\"YYYY-MM-DD HH:MM:SS\"</code> format.</p>\n</li>\n<li><p><code>provider</code> (integer, nullable) — ID of the provider assigned to this activity.</p>\n</li>\n<li><p><code>notes</code> (string, nullable) — Additional notes for the activity.</p>\n</li>\n<li><p><code>pinned</code> (boolean) — Whether the activity is pinned. Default: <code>false</code>.</p>\n</li>\n<li><p><code>done</code> (boolean) — Whether the activity is marked as done (only valid if <code>commit_type = done</code>). Default: <code>false</code>.</p>\n</li>\n<li><p><code>yesno</code> (string, nullable) — Yes/no value (only valid if <code>commit_type = yesno</code>). Possible values: <code>\"yes\"</code>, <code>\"no\"</code>.</p>\n</li>\n<li><p><code>visible_to_tenant</code> (boolean) — Whether the activity is visible to tenants. Default: <code>false</code>.</p>\n</li>\n<li><p><code>files</code> (array of integers) — List of file IDs attached to the activity.</p>\n</li>\n<li><p><code>request_threads</code> (array of strings) — List of request thread UUIDs linked to the activity.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{{request_id}}","activities",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"0d6dfbce-b6c7-4885-89fc-5a6014d04176","name":"Create activity to request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Token {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phase\": 2810197,\n    \"title\": \"Betrifft der Schaden das ganze Haus?\",\n    \"type\": 696,\n    \"priority\": 1750,\n    \"deadline\": \"2025-10-26 14:30:00\",\n    \"commit_type\": \"done\",\n    \"manager\": 13249,\n    \"provider\": 44947,\n    \"notes\": \"Wenn ja, dann Ankündigung am schwarzen Brett aussenden (Anleitung hier nachlesen: https://idwell.crunch.help/schwarzes-brett/wie-erstelle-ich-einen-beitrag-am-schwarzen-brett)\",\n    \"pinned\": true,\n    \"done\": false,\n    \"visible_to_tenant\": false,\n    \"files\": [\n        582785\n    ],\n    \"request_threads\": [\n        \"6b5783be-0b40-46c6-81c3-cad1a1046552\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://immo21.idwell.com/api/rest/v1/requests/1553140/activities/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2402540,\n    \"title\": \"Betrifft der Schaden das ganze Haus?\",\n    \"deadline\": \"2025-10-26 14:30:00\",\n    \"commit_type\": \"yesno\",\n    \"request\": 1553140,\n    \"building\": 240902,\n    \"notes\": \"Wenn ja, dann Ankündigung am schwarzen Brett aussenden (Anleitung hier nachlesen: https://idwell.crunch.help/schwarzes-brett/wie-erstelle-ich-einen-beitrag-am-schwarzen-brett)\",\n    \"phase\": 2810197,\n    \"done\": false,\n    \"yesno\": null,\n    \"created\": \"2025-10-27T15:35:48.216066Z\",\n    \"updated\": \"2025-10-27T15:35:48.216080Z\",\n    \"files\": [582785],\n    \"request_threads\": [\"6b5783be-0b40-46c6-81c3-cad1a1046552\"]\n}"}],"_postman_id":"f3753f39-c823-4e75-89ba-5a9335179bb4"},{"name":"Update request activity","id":"d201d2e4-b8f9-4dbd-a5a7-28c26c01f6df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deadline\": \"string\",\n    \"notes\": \"string\",\n    \"yesno\": \"string\",\n    \"done\": \"boolean\",\n    \"request_threads\": [\n        \"string\",\n        \"string\"\n    ],\n    \"append_request_threads\": [\n        \"string\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/activities/{activity_id}/","description":"<h3 id=\"update-request-activity\"><strong>Update request activity</strong></h3>\n<p>Updates specific fields of an activity belonging to a given request.  </p>\n<p>The method supports partial updates — only the provided fields will be changed.</p>\n<p><strong>Endpoint:</strong><br /><code>PATCH /api/rest/v1/requests/{request_id}/activities/{activity_id}/</code></p>\n<hr />\n<h3 id=\"path-parameters\"><strong>Path Parameters</strong></h3>\n<ul>\n<li><p><code>request_id</code> (string, <strong>required</strong>) - ID of the request.</p>\n</li>\n<li><p><code>activity_id</code> (string, <strong>required</strong>) - ID of the activity to update.</p>\n</li>\n</ul>\n<h3 id=\"request-body-parameters-json\"><strong>Request Body Parameters (JSON):</strong></h3>\n<ul>\n<li><p><code>deadline</code> (string, optional) - Deadline date for the activity.</p>\n</li>\n<li><p><code>notes</code> (string, optional) - Additional notes for the activity.</p>\n</li>\n<li><p><code>yesno</code> (string, optional; enum: <code>\"yes\"</code>, <code>\"no\"</code>) - Yes/No field value.</p>\n</li>\n<li><p><code>done</code> (boolean, optional) - Marks the activity as completed if <code>true</code>.</p>\n</li>\n<li><p><code>request_threads</code> (array of UUIDs, optional) - Full overwrite of the thread list.<br />  After update, the activity will contain <strong>only</strong> the threads specified in this array (request_thread_uuid).</p>\n</li>\n<li><p><code>append_request_threads</code> (array of UUIDs, optional) - Adds the given threads to the existing list without removing current ones (request_thread_uuid).</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","activities","{activity_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"9d6bec6e-65b6-4932-ba7f-8b70a053ee68","name":"Update request activity","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deadline\": \"2025-10-26 14:30:00\",\n    \"notes\": \"Wenn ja, dann Ankündigung am schwarzen Brett aussenden (Anleitung hier nachlesen: https://idwell.crunch.help/schwarzes-brett/wie-erstelle-ich-einen-beitrag-am-schwarzen-brett)\",\n    \"done\": true,\n    \"request_threads\": [\n        \"8b932568-dbc1-4079-87a4-fe891fcfcfb5\",\n        \"5fa32dc1-1111-4f89-9c77-d0f9cded90ff\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/activities/{activity_id}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2402540,\n    \"title\": \"Betrifft der Schaden das ganze Haus?\",\n    \"deadline\": \"2025-10-26 14:30:00\",\n    \"commit_type\": \"yesno\",\n    \"request\": 1553140,\n    \"building\": 240902,\n    \"notes\": \"Wenn ja, dann Ankündigung am schwarzen Brett aussenden (Anleitung hier nachlesen: https://idwell.crunch.help/schwarzes-brett/wie-erstelle-ich-einen-beitrag-am-schwarzen-brett)\",\n    \"phase\": 2810197,\n    \"done\": false,\n    \"yesno\": null,\n    \"created\": \"2025-10-27T15:35:48.216066Z\",\n    \"updated\": \"2025-10-27T15:35:48.216080Z\",\n    \"files\": [\n        582785\n    ],\n   \"request_threads\": [\n        \"8b932568-dbc1-4079-87a4-fe891fcfcfb5\",\n        \"5fa32dc1-1111-4f89-9c77-d0f9cded90ff\"\n    ]\n}"}],"_postman_id":"d201d2e4-b8f9-4dbd-a5a7-28c26c01f6df"}],"id":"d5e593b8-416d-4124-b12b-0940e1095155","description":"<h2 id=\"description\">Description</h2>\n<p>Allows a user with the admin role to create a request to address an issue faced by apartment residents or owners. The request can be simple, for a specific building, or for a specific apartment.</p>\n<p><strong>Types of Requests:</strong></p>\n<ul>\n<li><p><strong>Simple Request:</strong></p>\n<ul>\n<li><p>Not tied to a specific building or apartment.</p>\n</li>\n<li><p>Parameters: <code>owner_id</code> or <code>created_by</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Building Request:</strong></p>\n<ul>\n<li><p>Associated with a specific building.</p>\n</li>\n<li><p>Can include managers with the <code>manager/admin</code> role in <code>assignees</code>.</p>\n</li>\n<li><p>Parameters: <code>assignees</code>, <code>building</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Flat Request:</strong></p>\n<ul>\n<li><p>Associated with a specific flat.</p>\n</li>\n<li><p>Parameters: <code>owner</code>, <code>flat</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Constraints:</strong></p>\n<ul>\n<li>It is not possible to specify both <code>building_id</code> and <code>flat_id</code> in the same request.</li>\n</ul>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create request</td>\n<td><code>/api/rest/v1/requests/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create requests only for accessible users, buildings, and flats</td>\n</tr>\n<tr>\n<td>Get request list</td>\n<td><code>/api/rest/v1/requests/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to available requests only</td>\n</tr>\n<tr>\n<td>Get a list of request types</td>\n<td><code>/api/rest/v1/requests/types/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access</td>\n</tr>\n<tr>\n<td>Update request</td>\n<td><code>/api/rest/v1/requests/{request_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update access to available requests only</td>\n</tr>\n<tr>\n<td>Get request's statuses list</td>\n<td><code>/api/rest/v1/requests/status/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access</td>\n</tr>\n<tr>\n<td>Generate eml files for request thread</td>\n<td><code>/api/rest/v1/requests/eml/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Generate EML files for available requests only</td>\n</tr>\n<tr>\n<td>Upload EML file to request</td>\n<td><code>/api/rest/v1/requests/eml/upload/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Upload access to available requests only</td>\n</tr>\n<tr>\n<td>Get url of eml file to download it</td>\n<td><code>/api/rest/v1/requests/eml/{eml_file_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Get EML file URLs for available requests only</td>\n</tr>\n<tr>\n<td>Activity Creation</td>\n<td><code>/api/rest/v1/requests/{request_id}/activities/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create activities for available requests only</td>\n</tr>\n<tr>\n<td>Activity Types List</td>\n<td><code>/api/rest/v1/activity-types/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access</td>\n</tr>\n<tr>\n<td>Activity Update</td>\n<td><code>/api/rest/v1/requests/export/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update activities for available requests and requests created by the Manager only</td>\n</tr>\n<tr>\n<td>Start service request export</td>\n<td><code>/api/rest/v1/requests/{request_id}/activities/{activity_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> For available requests and requests created by the Manager only</td>\n</tr>\n<tr>\n<td>Get export status</td>\n<td><code>/api/rest/v1/requests/export//</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> For available requests and requests created by the Manager only</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><p><code>owner_id</code>: The ID of the user creating the request (current user).</p>\n</li>\n<li><p><code>created_by</code>: The ID of the user who created the request (current user).</p>\n</li>\n<li><p><code>assignee_id</code>: The ID of the user to whom the request is assigned (current user if the user is a Responsible manager).</p>\n</li>\n<li><p><code>flat_id</code>: The ID of the apartment associated with the request. Required for apartment-specific requests.</p>\n</li>\n<li><p><code>building_id</code>: The ID of the building associated with the request. Cannot be specified simultaneously with <code>flat_id</code>.</p>\n</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n","_postman_id":"d5e593b8-416d-4124-b12b-0940e1095155"},{"name":"Pipeline","item":[{"name":"Get a list of request's pipline phases","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"772d0cca-bc74-4048-9a49-6860b334e86f"}}],"id":"4ac7a02b-93ec-4f2d-b068-f374bab5c3a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/phases/","description":"<p>Get a list of request's pipline phases</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/{request_id}/phases/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><code>request_id</code>(string, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>results</code> (array[request-pipeline-phase-schema]) — List of pipline phases. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (string)</p>\n</li>\n<li><p><code>name</code>(string)</p>\n</li>\n<li><p><code>activities</code>(array[integer]) - IDs of activities</p>\n</li>\n<li><p><code>progress</code>(integer)</p>\n</li>\n<li><p><code>is_populatable</code>(boolean)</p>\n</li>\n<li><p><code>is_default</code>(boolean)</p>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n<li><p><code>updated</code> (string)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","phases",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"1b9acb7a-2b48-4332-90c7-35f454905816","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/1363348/phases/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 4,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 2479676,\n            \"name\": \"1. Prüfung und Erstmaßnahmen\",\n            \"activities\": [],\n            \"progress\": 0,\n            \"is_populatable\": true,\n            \"is_default\": false,\n            \"created\": \"2025-07-31T14:15:12.169120+02:00\",\n            \"updated\": \"2025-07-31T14:15:12.169130+02:00\"\n        },\n        {\n            \"id\": 2479677,\n            \"name\": \"2. Angebotseinholung & Versicherungsmeldung\",\n            \"activities\": [],\n            \"progress\": 0,\n            \"is_populatable\": true,\n            \"is_default\": false,\n            \"created\": \"2025-07-31T14:15:12.183895+02:00\",\n            \"updated\": \"2025-07-31T14:15:12.183906+02:00\"\n        },\n        {\n            \"id\": 2479678,\n            \"name\": \"3. Schadensbehebung\",\n            \"activities\": [],\n            \"progress\": 0,\n            \"is_populatable\": true,\n            \"is_default\": false,\n            \"created\": \"2025-07-31T14:15:12.197155+02:00\",\n            \"updated\": \"2025-07-31T14:15:12.197167+02:00\"\n        },\n        {\n            \"id\": 2479679,\n            \"name\": \"4. Abrechnung\",\n            \"activities\": [],\n            \"progress\": 0,\n            \"is_populatable\": true,\n            \"is_default\": false,\n            \"created\": \"2025-07-31T14:15:12.210660+02:00\",\n            \"updated\": \"2025-07-31T14:15:12.210671+02:00\"\n        }\n    ]\n}"}],"_postman_id":"4ac7a02b-93ec-4f2d-b068-f374bab5c3a1"},{"name":"Populate pipeline phase","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"18ad7559-20a7-4ba1-93b4-16f8236475b0"}}],"id":"e638538f-0aba-4b75-ba84-2357d41a2b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/phases/{phase_id}/populate/","description":"<p>Populate pipeline phase</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>POST/api/rest/v1/requests/{request_id}/phases/{phase_id}/populate/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><p><code>request_id</code>(string, <strong>required</strong>)</p>\n</li>\n<li><p><code>phase_id</code>(string, <strong>required</strong>)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (string)</p>\n</li>\n<li><p><code>name</code>(string)</p>\n</li>\n<li><p><code>activities</code>(array[integer]) - IDs of activities</p>\n</li>\n<li><p><code>progress</code>(integer)</p>\n</li>\n<li><p><code>is_populatable</code>(boolean)</p>\n</li>\n<li><p><code>is_default</code>(boolean)</p>\n</li>\n<li><p><code>created</code> (string)</p>\n</li>\n<li><p><code>updated</code> (string)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","phases","{phase_id}","populate",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"2c629eb2-0fd6-4c17-a017-0dc0d9133435","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/1363348/phases/2479676/populate/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 2479676,\n    \"name\": \"1. Prüfung und Erstmaßnahmen\",\n    \"activities\": [\n        2100970,\n        2100971,\n        2100972,\n        2100973,\n        2100974\n    ],\n    \"progress\": 0,\n    \"is_populatable\": false,\n    \"is_default\": false,\n    \"created\": \"2025-07-31T14:15:12.169120+02:00\",\n    \"updated\": \"2025-07-31T14:15:12.169130+02:00\"\n}"},{"id":"875b3a1a-1a89-4bcf-bddb-d63906abfc74","name":"Failed response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/phases/{phase_id}/populate/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": \"Phase is not populatable\",\n    \"status_code\": 400\n}"}],"_postman_id":"e638538f-0aba-4b75-ba84-2357d41a2b8a"},{"name":"Get a list of request's activities","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"c3be63db-9576-4b15-ad93-00ce8203fae9"}}],"id":"6eb2a4fd-268d-4f4f-839f-027ba5a5a8f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/activities/","description":"<p>Get a list of request's activities</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/requests/{request_id}/activities</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><code>request_id</code>(string, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>results</code>(array[request-pipeline-activity-shema])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>title</code>(string)</p>\n</li>\n<li><p><code>deadline</code>(string) like <code>2025-06-28T01:15:00.000Z</code></p>\n</li>\n<li><p><code>commit_type</code>(string) Allowed values: [<code>yesno</code>, <code>done</code>]</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n<li><p><code>building</code>(integer) -Building ID</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>phase</code>(integer) Phase ID</p>\n</li>\n<li><p><code>done</code>(boolean)</p>\n</li>\n<li><p><code>yesno</code>(string) - Allowed values:[<code>yes</code>, <code>no</code>]</p>\n</li>\n<li><p><code>created</code>(string)</p>\n</li>\n<li><p><code>updated</code>(string)</p>\n</li>\n<li><p><code>files</code>(array[integer])</p>\n</li>\n<li><p><code>request_threads</code>(array[string])</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","activities",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"02707d9d-d8d8-4881-8238-f7863007b237","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/48305/activities/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 27691,\n            \"title\": \"Call\",\n            \"deadline\": null,\n            \"commit_type\": \"yesno\",\n            \"request\": 48305,\n            \"building\": null,\n            \"notes\": \"\",\n            \"phase\": 49510,\n            \"done\": false,\n            \"yesno\": null,\n            \"created\": \"2025-06-27T08:09:12.542614+02:00\",\n            \"updated\": \"2025-06-27T08:09:12.542635+02:00\",\n            \"files\": [],\n            \"request_threads\": []\n        }\n    ]\n}"}],"_postman_id":"6eb2a4fd-268d-4f4f-839f-027ba5a5a8f8"},{"name":"Update request's activity","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"0268afb4-f852-4776-bbb6-62cb1efc1548"}}],"id":"6b451475-440e-4240-b6aa-1a590a897584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deadline\": \"string\",\n    \"notes\": \"string\",\n    \"yesno\": \"string\",\n    \"done\": \"boolean\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/activities/{activity_id}/","description":"<p>Update request's activity</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/requests/{request_id}/activities/{activity_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><p><code>request_id</code>(string, <strong>required</strong>)</p>\n</li>\n<li><p><code>activity_id</code>(string, <strong>required</strong>)</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>deadline</code>(string) - <code>\"2025-06-28T01:15:00.000Z\"</code></p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>yesno</code>(string) Allowed values: [<code>yes</code>, <code>no</code>]</p>\n</li>\n<li><p><code>done</code>(boolean)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","activities","{activity_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"6e15b2bb-079a-404c-827e-5d7640f68680","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"done\":true\n}\n\n","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/1363348/activities/2100971/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 2100971,\n    \"title\": \"Leckortung beauftragen\",\n    \"deadline\": \"2025-08-01T09:23:09.028154+02:00\",\n    \"commit_type\": \"done\",\n    \"request\": 1363348,\n    \"building\": 5087,\n    \"notes\": \"Textvorlage \\\"E03.01\\\" verwenden\",\n    \"phase\": 2479676,\n    \"done\": true,\n    \"yesno\": null,\n    \"created\": \"2025-08-01T08:23:09.030259+02:00\",\n    \"updated\": \"2025-08-01T08:24:47.613975+02:00\",\n    \"files\": [],\n    \"request_threads\": []\n}"}],"_postman_id":"6b451475-440e-4240-b6aa-1a590a897584"}],"id":"7f0e578b-8210-4ed7-b4b2-7730b7f76e66","description":"<p>Pipeline is a visual component that shows the stages of a process. the sequence of the process execution. It represents a set of stages/phases that the user is recommended to go through in order to achieve the most effective solution to the task.</p>\n<img src=\"https://content.pstmn.io/7add2881-bf0e-4ed2-841b-e1ff5cbf5c3a/aW1hZ2UucG5n\" width=\"1554\" height=\"222\" />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get a list of request's pipeline phases</td>\n<td><code>/api/rest/v1/requests/{request_id}/phases/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access for requests created by the Manager or assigned to the Manager only</td>\n</tr>\n<tr>\n<td>Populate pipeline phase</td>\n<td><code>/api/rest/v1/requests/{request_id}/phases/{phase_id}/populate/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Access for requests created by the Manager or assigned to the Manager only</td>\n</tr>\n<tr>\n<td>Get a list of request's activities</td>\n<td><code>/api/rest/v1/requests/{request_id}/activities/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access for requests created by the Manager or assigned to the Manager only</td>\n</tr>\n<tr>\n<td>Update request's activity</td>\n<td><code>/api/rest/v1/requests/{request_id}/activities/{activity_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update access for requests created by the Manager or assigned to the Manager only</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7f0e578b-8210-4ed7-b4b2-7730b7f76e66"},{"name":"Contract","item":[{"name":"List contracts","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6e9f82d6-94cd-4962-afe0-5e19d9c91996"}}],"id":"662852dd-eef8-4603-90de-256e815f5c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/","description":"<p>Contracts list.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>GET /api/rest/v1/contracts/</code></p>\n<h4 id=\"request-query-parameters\">Request Query parameters:</h4>\n<ul>\n<li><p><code>page</code>(integer)</p>\n</li>\n<li><p><code>page_size</code>(integer)</p>\n</li>\n<li><p><code>contract_id</code>(string)</p>\n</li>\n<li><p><code>flat</code>(string)</p>\n</li>\n<li><p><code>ordering</code>(string) Field for ordering results. Default: \"id\".<br />  Allowed values: id -id -end_date end_date Default: id</p>\n</li>\n<li><p><code>user</code>(string) Filter contracts by user_id</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>contract_id</code>(string) &lt;= 255 characters</p>\n</li>\n<li><p><code>user</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>flat</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contracts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":""},{"disabled":true,"description":{"content":"<p>Number of items in one page</p>\n","type":"text/plain"},"key":"page_size","value":""},{"disabled":true,"description":{"content":"<p>Field for ordering results (default: \"id\")</p>\n","type":"text/plain"},"key":"ordering","value":""},{"disabled":true,"description":{"content":"<p>Filter by contract_id value</p>\n","type":"text/plain"},"key":"contract_id","value":""},{"disabled":true,"description":{"content":"<p>Filter contracts by flat_id</p>\n","type":"text/plain"},"key":"flat","value":""},{"disabled":true,"description":{"content":"<p>Filter contracts by user_id</p>\n","type":"text/plain"},"key":"user","value":""}],"variable":[]}},"response":[{"id":"7426a5eb-42f4-4604-aea2-a813274d7807","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","contracts",""],"query":[{"key":"page","value":"","description":"Page number","disabled":true},{"key":"page_size","value":"","description":"Number of items in one page","disabled":true},{"key":"ordering","value":"","description":"Field for ordering results (default: \"id\")","disabled":true},{"key":"contract_id","value":"","description":"Filter by contract_id value","disabled":true},{"key":"flat","value":"","description":"Filter contracts by flat_id","disabled":true},{"key":"user","value":"","description":"Filter contracts by user_id","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 1072,\n    \"pages\": 11,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/contracts/?page=2\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/contracts/?page=last\"\n    },\n    \"results\": [\n        {\n            \"id\": 89945,\n            \"contract_id\": null,\n            \"user\": 117225,\n            \"flat\": 114190,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89946,\n            \"contract_id\": null,\n            \"user\": 117226,\n            \"flat\": 114191,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89947,\n            \"contract_id\": null,\n            \"user\": 117227,\n            \"flat\": 114192,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89948,\n            \"contract_id\": null,\n            \"user\": 117228,\n            \"flat\": 114193,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89949,\n            \"contract_id\": null,\n            \"user\": 117229,\n            \"flat\": 114194,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89950,\n            \"contract_id\": null,\n            \"user\": 117230,\n            \"flat\": 114195,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89952,\n            \"contract_id\": null,\n            \"user\": 117232,\n            \"flat\": 114197,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89953,\n            \"contract_id\": null,\n            \"user\": 117233,\n            \"flat\": 114198,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89954,\n            \"contract_id\": null,\n            \"user\": 117234,\n            \"flat\": 114199,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89955,\n            \"contract_id\": null,\n            \"user\": 117235,\n            \"flat\": 114200,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89956,\n            \"contract_id\": null,\n            \"user\": 117236,\n            \"flat\": 114201,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89958,\n            \"contract_id\": null,\n            \"user\": 117238,\n            \"flat\": 114203,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89959,\n            \"contract_id\": null,\n            \"user\": 117239,\n            \"flat\": 114204,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89960,\n            \"contract_id\": null,\n            \"user\": 117240,\n            \"flat\": 114205,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89961,\n            \"contract_id\": null,\n            \"user\": 117241,\n            \"flat\": 114206,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89962,\n            \"contract_id\": null,\n            \"user\": 117242,\n            \"flat\": 114207,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89963,\n            \"contract_id\": null,\n            \"user\": 117243,\n            \"flat\": 114208,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89966,\n            \"contract_id\": null,\n            \"user\": 117246,\n            \"flat\": 114211,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89968,\n            \"contract_id\": null,\n            \"user\": 117248,\n            \"flat\": 114213,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89969,\n            \"contract_id\": null,\n            \"user\": 117249,\n            \"flat\": 114214,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89970,\n            \"contract_id\": null,\n            \"user\": 117250,\n            \"flat\": 114215,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89971,\n            \"contract_id\": null,\n            \"user\": 117251,\n            \"flat\": 114216,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89973,\n            \"contract_id\": null,\n            \"user\": 117253,\n            \"flat\": 114218,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89974,\n            \"contract_id\": null,\n            \"user\": 117254,\n            \"flat\": 114219,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89976,\n            \"contract_id\": null,\n            \"user\": 117256,\n            \"flat\": 114221,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89977,\n            \"contract_id\": null,\n            \"user\": 117257,\n            \"flat\": 114222,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89978,\n            \"contract_id\": null,\n            \"user\": 117258,\n            \"flat\": 114223,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89980,\n            \"contract_id\": null,\n            \"user\": 117260,\n            \"flat\": 114225,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89981,\n            \"contract_id\": null,\n            \"user\": 117261,\n            \"flat\": 114226,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89982,\n            \"contract_id\": null,\n            \"user\": 117262,\n            \"flat\": 114227,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89983,\n            \"contract_id\": null,\n            \"user\": 117263,\n            \"flat\": 114228,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89984,\n            \"contract_id\": null,\n            \"user\": 117264,\n            \"flat\": 114229,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89985,\n            \"contract_id\": null,\n            \"user\": 117265,\n            \"flat\": 114230,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89986,\n            \"contract_id\": null,\n            \"user\": 117266,\n            \"flat\": 114231,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89987,\n            \"contract_id\": null,\n            \"user\": 117267,\n            \"flat\": 114232,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89988,\n            \"contract_id\": null,\n            \"user\": 117268,\n            \"flat\": 114233,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89990,\n            \"contract_id\": null,\n            \"user\": 117270,\n            \"flat\": 114235,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89991,\n            \"contract_id\": null,\n            \"user\": 117271,\n            \"flat\": 114236,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89992,\n            \"contract_id\": null,\n            \"user\": 117272,\n            \"flat\": 114237,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89993,\n            \"contract_id\": null,\n            \"user\": 117273,\n            \"flat\": 114238,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89995,\n            \"contract_id\": null,\n            \"user\": 117275,\n            \"flat\": 114240,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89997,\n            \"contract_id\": null,\n            \"user\": 117277,\n            \"flat\": 114242,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 89999,\n            \"contract_id\": null,\n            \"user\": 117279,\n            \"flat\": 114244,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90000,\n            \"contract_id\": null,\n            \"user\": 117280,\n            \"flat\": 114245,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90002,\n            \"contract_id\": null,\n            \"user\": 117282,\n            \"flat\": 114247,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90003,\n            \"contract_id\": null,\n            \"user\": 117283,\n            \"flat\": 114248,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90004,\n            \"contract_id\": null,\n            \"user\": 117284,\n            \"flat\": 114249,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90005,\n            \"contract_id\": null,\n            \"user\": 117285,\n            \"flat\": 114250,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90006,\n            \"contract_id\": null,\n            \"user\": 117286,\n            \"flat\": 114251,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90007,\n            \"contract_id\": null,\n            \"user\": 117287,\n            \"flat\": 114252,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90008,\n            \"contract_id\": null,\n            \"user\": 117288,\n            \"flat\": 114253,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90009,\n            \"contract_id\": null,\n            \"user\": 117289,\n            \"flat\": 114254,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90010,\n            \"contract_id\": null,\n            \"user\": 117290,\n            \"flat\": 114255,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90011,\n            \"contract_id\": null,\n            \"user\": 117291,\n            \"flat\": 114256,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90012,\n            \"contract_id\": null,\n            \"user\": 117292,\n            \"flat\": 114257,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90013,\n            \"contract_id\": null,\n            \"user\": 117293,\n            \"flat\": 114258,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90014,\n            \"contract_id\": null,\n            \"user\": 117294,\n            \"flat\": 114259,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90015,\n            \"contract_id\": null,\n            \"user\": 117295,\n            \"flat\": 114260,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90016,\n            \"contract_id\": null,\n            \"user\": 117296,\n            \"flat\": 114261,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90017,\n            \"contract_id\": null,\n            \"user\": 117297,\n            \"flat\": 114262,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90018,\n            \"contract_id\": null,\n            \"user\": 117298,\n            \"flat\": 114263,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90019,\n            \"contract_id\": null,\n            \"user\": 117299,\n            \"flat\": 114264,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90020,\n            \"contract_id\": null,\n            \"user\": 117300,\n            \"flat\": 114265,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90021,\n            \"contract_id\": null,\n            \"user\": 117301,\n            \"flat\": 114266,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90022,\n            \"contract_id\": null,\n            \"user\": 117302,\n            \"flat\": 114267,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90024,\n            \"contract_id\": null,\n            \"user\": 117304,\n            \"flat\": 114269,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90025,\n            \"contract_id\": null,\n            \"user\": 117305,\n            \"flat\": 114270,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90026,\n            \"contract_id\": null,\n            \"user\": 117306,\n            \"flat\": 114271,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90027,\n            \"contract_id\": null,\n            \"user\": 117307,\n            \"flat\": 114272,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90028,\n            \"contract_id\": null,\n            \"user\": 117308,\n            \"flat\": 114273,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90030,\n            \"contract_id\": null,\n            \"user\": 117310,\n            \"flat\": 114275,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90031,\n            \"contract_id\": null,\n            \"user\": 117311,\n            \"flat\": 114276,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90032,\n            \"contract_id\": null,\n            \"user\": 117312,\n            \"flat\": 114277,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90033,\n            \"contract_id\": null,\n            \"user\": 117313,\n            \"flat\": 114278,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90034,\n            \"contract_id\": null,\n            \"user\": 117314,\n            \"flat\": 114279,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90035,\n            \"contract_id\": null,\n            \"user\": 117315,\n            \"flat\": 114280,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90036,\n            \"contract_id\": null,\n            \"user\": 117316,\n            \"flat\": 114281,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90037,\n            \"contract_id\": null,\n            \"user\": 117317,\n            \"flat\": 114282,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90038,\n            \"contract_id\": null,\n            \"user\": 117318,\n            \"flat\": 114283,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90039,\n            \"contract_id\": null,\n            \"user\": 117319,\n            \"flat\": 114284,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90040,\n            \"contract_id\": null,\n            \"user\": 117320,\n            \"flat\": 114285,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90042,\n            \"contract_id\": null,\n            \"user\": 117322,\n            \"flat\": 114287,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90043,\n            \"contract_id\": null,\n            \"user\": 117323,\n            \"flat\": 114288,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90044,\n            \"contract_id\": null,\n            \"user\": 117324,\n            \"flat\": 114289,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90045,\n            \"contract_id\": null,\n            \"user\": 117325,\n            \"flat\": 114290,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90046,\n            \"contract_id\": null,\n            \"user\": 117326,\n            \"flat\": 114291,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90047,\n            \"contract_id\": null,\n            \"user\": 117327,\n            \"flat\": 114292,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90049,\n            \"contract_id\": null,\n            \"user\": 117329,\n            \"flat\": 114294,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90050,\n            \"contract_id\": null,\n            \"user\": 117330,\n            \"flat\": 114295,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90051,\n            \"contract_id\": null,\n            \"user\": 117331,\n            \"flat\": 114296,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90052,\n            \"contract_id\": null,\n            \"user\": 117332,\n            \"flat\": 114297,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90053,\n            \"contract_id\": null,\n            \"user\": 117333,\n            \"flat\": 114298,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90054,\n            \"contract_id\": \"001.010.002\",\n            \"user\": 117334,\n            \"flat\": 114299,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90056,\n            \"contract_id\": null,\n            \"user\": 117336,\n            \"flat\": 114301,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90057,\n            \"contract_id\": null,\n            \"user\": 117337,\n            \"flat\": 114302,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90058,\n            \"contract_id\": null,\n            \"user\": 117338,\n            \"flat\": 114303,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90059,\n            \"contract_id\": null,\n            \"user\": 117339,\n            \"flat\": 114304,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90060,\n            \"contract_id\": null,\n            \"user\": 117340,\n            \"flat\": 114305,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90062,\n            \"contract_id\": null,\n            \"user\": 117342,\n            \"flat\": 114307,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        },\n        {\n            \"id\": 90063,\n            \"contract_id\": null,\n            \"user\": 117343,\n            \"flat\": 114308,\n            \"start_date\": null,\n            \"end_date\": null,\n            \"duration\": null,\n            \"purchase_contract_number\": null\n        }\n    ]\n}"}],"_postman_id":"662852dd-eef8-4603-90de-256e815f5c56"},{"name":"Create contract","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"365c0215-c090-44dd-b268-74fbb0e6710b"}}],"id":"6d1aea07-1e00-4f19-8159-4d71ecbc31ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contract_id\": \"string or null\",\n    \"user\": \"integer\",\n    \"flat\": \"integer\",\n    \"start_date\": \"string or null\",\n    \"end_date\": \"string or null\",\n    \"duration\": \"integer or null\",\n    \"purchase_contract_number\": \"string or null\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/","description":"<p>Create contract.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>POST /api/rest/v1/contracts/</code></p>\n<h4 id=\"request-body-parameters\">Request Body parameters:</h4>\n<ul>\n<li><p><code>contract_id</code>(string or null) &lt;= 255 characters</p>\n</li>\n<li><p><code>user</code>(string, <strong>required</strong>) Filter contracts by user_id</p>\n</li>\n<li><p><code>flat</code>(string, <strong>required</strong>)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>contract_id</code>(string) &lt;= 255 characters</p>\n</li>\n<li><p><code>user</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>flat</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contracts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"15e1ac29-ca52-444a-b8a5-03c9a3c58dba","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contract_id\": \"67890-fghij\",\n    \"user\": 118317,\n    \"flat\": 115381,\n    \"start_date\": \"2025-06-19\",\n    \"end_date\": \"2026-06-19\",\n    \"duration\": \"12\",\n    \"purchase_contract_number\": \"PCN-002\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 3584170,\n    \"contract_id\": \"67890-fghij\",\n    \"user\": 118317,\n    \"flat\": 115381,\n    \"start_date\": \"2025-06-19\",\n    \"end_date\": \"2026-06-19\",\n    \"duration\": 12,\n    \"purchase_contract_number\": \"PCN-002\"\n}"},{"id":"783f186a-4f11-423b-bb66-1e6b4fbc56df","name":"Failed request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contract_id\": \"67890-fghij\",\n    \"user\": 118317,\n    \"flat\": 115381,\n    \"start_date\": \"2025-06-19\",\n    \"end_date\": \"2026-06-19\",\n    \"duration\": \"12\",\n    \"purchase_contract_number\": \"PCN-002\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"errors\": \"Contract for user 118317 in flat 115381 already exists\",\n    \"status_code\": 400\n}"}],"_postman_id":"6d1aea07-1e00-4f19-8159-4d71ecbc31ea"},{"name":"Get contract","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"c83d450a-2135-4bdb-916f-9cd723ee0099"}}],"id":"cad12fbe-aefe-49e1-8188-7385282ada04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/{id}/","description":"<p>Get contract.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>GET /api/rest/v1/contracts/{id}/</code></p>\n<h4 id=\"request-path-parameters\">Request Path parameters:</h4>\n<ul>\n<li><code>id</code>(string)</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>contract_id</code>(string) &lt;= 255 characters</p>\n</li>\n<li><p><code>external_id</code>(string) &lt;= 256 characters</p>\n</li>\n<li><p><code>user</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>flat</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contracts","{id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"651dd966-2570-4b0f-b0b7-ada1f5ea7d86","name":"Get contract","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/90010/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 90010,\n    \"contract_id\": null,\n    \"user\": 117290,\n    \"flat\": 114255,\n    \"start_date\": null,\n    \"end_date\": null,\n    \"duration\": null,\n    \"purchase_contract_number\": null\n}"}],"_postman_id":"cad12fbe-aefe-49e1-8188-7385282ada04"},{"name":"Update contract","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"4d6db703-e900-4720-9ae0-0df3893dc7ad"}}],"id":"e9460e4c-d1a6-453d-9abd-43bb84309fbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contract_id\": \"string or null\",\n    \"start_date\": \"string or null\",\n    \"end_date\": \"string or null\",\n    \"duration\": \"integer or null\",\n    \"purchase_contract_number\": \"string or null\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/{id}/","description":"<p>Update contract.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>POST /api/rest/v1/contracts/{id}/</code></p>\n<h4 id=\"request-path-parameters\">Request Path parameters:</h4>\n<ul>\n<li><code>id</code>(string, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body parameters:</h4>\n<ul>\n<li><p><code>contract_id</code>(string or null) &lt;= 255 characters</p>\n</li>\n<li><p><code>user</code>(string) Filter contracts by user_id</p>\n</li>\n<li><p><code>flat</code>(string)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>contract_id</code>(string) &lt;= 255 characters</p>\n</li>\n<li><p><code>user</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>flat</code>(integer, <strong>required</strong>)</p>\n</li>\n<li><p><code>start_date</code>(string or null)</p>\n</li>\n<li><p><code>end_date</code>(string or null)</p>\n</li>\n<li><p><code>duration</code>(integer or null)</p>\n</li>\n<li><p><code>purchase_contract_number</code>(string or null)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contracts","{id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"1aa658d1-1b9e-40c9-8f55-ee80055408da","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contract_id\": \"67890-fghij\",\n    \"user\": 118317,\n    \"flat\": 115381,\n    \"start_date\": \"2025-06-19\",\n    \"end_date\": \"2026-06-19\",\n    \"purchase_contract_number\": \"PCN-002\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/3584170/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 3584170,\n    \"contract_id\": \"67890-fghij\",\n    \"user\": 118317,\n    \"flat\": 115381,\n    \"start_date\": \"2025-06-19\",\n    \"end_date\": \"2026-06-19\",\n    \"duration\": 12,\n    \"purchase_contract_number\": \"PCN-002\"\n}"}],"_postman_id":"e9460e4c-d1a6-453d-9abd-43bb84309fbe"},{"name":"Delete contract","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"135e716d-660a-4b2f-9e92-44ca7c711bf2"}}],"id":"25a41c0a-e0b7-4251-b0f6-85117262fdd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/{id}/","description":"<p>Delete contract.</p>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>DELETE /api/rest/v1/contracts/{id}/</code></p>\n<h4 id=\"request-path-parameters\">Request Path parameters:</h4>\n<ul>\n<li><code>id</code>(string, <strong>required</strong>)</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contracts","{id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"df43e19c-a1d4-43fc-a56b-779da5edb02e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contracts/3584170/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"25a41c0a-e0b7-4251-b0f6-85117262fdd8"}],"id":"bb1ecdd1-f7eb-45da-a7cd-a23b0b615d9e","description":"<h2 id=\"description\">Description</h2>\n<p>The contract is required to link a user and a flat: <strong>M Flats : N Users</strong>, where a user can have only one contract per flat.</p>\n<p>If multiple users live in the same flat under one agreement (e.g., a married couple), a separate contract is still created for each user. These contracts have different system IDs but identical user attributes.</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>List contracts</td>\n<td><code>/api/rest/v1/contracts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to contracts related to available flats and users only</td>\n</tr>\n<tr>\n<td>Create contract</td>\n<td><code>/api/rest/v1/contracts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create contracts only for available flats and users</td>\n</tr>\n<tr>\n<td>Get contract</td>\n<td><code>/api/rest/v1/contracts/{id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to contracts related to available flats and users only</td>\n</tr>\n<tr>\n<td>Update contract</td>\n<td><code>/api/rest/v1/contracts/{id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Update contracts related to available flats and users only</td>\n</tr>\n<tr>\n<td>Delete contract</td>\n<td><code>/api/rest/v1/contracts/{id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Delete contracts related to available flats and users only</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><code>id</code>(string) Contract ID</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n","_postman_id":"bb1ecdd1-f7eb-45da-a7cd-a23b0b615d9e"},{"name":"Post","item":[{"name":"Get list of created posts","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"860e661d-5e43-4056-a5b0-9a4256c02224"}}],"id":"73a27302-4cd8-4700-9b93-0ccf7ee3bd33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/","description":"<p>Paginated list of posts.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/posts/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<ul>\n<li><p><code>created_gte</code> (string) Filter by create date later than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>created_lte</code> (string) Filter by create date earlier than specified date<br />  Example: 2021-03-21 12:00:00</p>\n</li>\n<li><p><code>updated_gte</code> (string) Filter by update date later than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n<li><p><code>updated_lte</code> (string) Filter by update date earlier than specified date<br />  Example: 2021-03-21 12:21:00</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>title</code>(string, <strong>required</strong>)</p>\n</li>\n<li><p><code>text</code>(string, <strong>required</strong>)</p>\n</li>\n<li><p><code>audience</code>(array[integer])</p>\n</li>\n<li><p><code>buildings</code>(array[integer])</p>\n</li>\n<li><p><code>files</code>(array[integer])</p>\n</li>\n<li><p><code>type</code>(string) 1 - post, 3 - request_status_changed, 4 - digital_board_post, 5 - feedback_post, 6 - feedback, 7 - ticker</p>\n</li>\n</ul>\n<blockquote>\n<p>❗Body params not working </p>\n</blockquote>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code>(integer)</p>\n</li>\n<li><p><code>pages</code>(integer)</p>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>uuid</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) can be a value:</p>\n<ul>\n<li><p>1 - post,</p>\n</li>\n<li><p>3 - request_status_changed,</p>\n</li>\n<li><p>4 - digital_board_post,</p>\n</li>\n<li><p>5 - feedback_post,</p>\n</li>\n<li><p>6 - feedback,</p>\n</li>\n<li><p>7 - ticker</p>\n</li>\n</ul>\n</li>\n<li><p><code>title</code>(string)</p>\n</li>\n<li><p><code>text</code>(string)</p>\n</li>\n<li><p><code>files</code>(array[integer])</p>\n</li>\n<li><p><code>audience</code>(array[integer])</p>\n</li>\n<li><p><code>buildings</code>(array[integer])</p>\n</li>\n<li><p><code>date_from</code>(string or null)</p>\n</li>\n<li><p><code>date_to</code>(string or null)</p>\n</li>\n<li><p><code>updated</code>(string)</p>\n</li>\n<li><p><code>created</code>(string)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","posts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter by update date earlier than specified date</p>\n","type":"text/plain"},"key":"updated_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by update date later than specified date</p>\n","type":"text/plain"},"key":"updated_gte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date earlier than specified date</p>\n","type":"text/plain"},"key":"created_lte","value":""},{"disabled":true,"description":{"content":"<p>Filter by create date later than specified date</p>\n","type":"text/plain"},"key":"created_gte","value":""}],"variable":[]}},"response":[{"id":"3cc5741a-a80f-4a59-b97d-6728990d0380","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","posts",""],"query":[{"key":"updated_lte","value":"","description":"Filter by update date earlier than specified date","disabled":true},{"key":"updated_gte","value":"","description":"Filter by update date later than specified date","disabled":true},{"key":"created_lte","value":"","description":"Filter by create date earlier than specified date","disabled":true},{"key":"created_gte","value":"","description":"Filter by create date later than specified date","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 4108,\n    \"pages\": 42,\n    \"page\": 1,\n    \"links\": {\n        \"next\": \"https://api.demo.idwell.at/api/rest/v1/posts/?page=2\",\n        \"previous\": null,\n        \"last\": \"https://api.demo.idwell.at/api/rest/v1/posts/?page=last\"\n    },\n    \"results\": [\n        {\n            \"uuid\": \"148c3c8a-397c-11f0-815c-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Aufzugsstörung: Aufzug steht\",\n            \"text\": \"<p>Sehr geehrte Bewohner der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich,</p>\\n<p> </p>\\n<p>wir möchten Sie darüber informieren, dass wir über eine Aufzugsstörung in Ihrem Hause informiert wurden und bereits die Firma Schindler mit der Behebung beauftragt haben!</p>\\n<p> </p>\\n<p>Wir bitten um Verständnis.</p>\\n<p> </p>\\n<p>Mit besten Grüßen,</p>\\n<p>Ihre Hausverwaltung</p>\",\n            \"files\": [],\n            \"buildings\": [\n                5133,\n                5087\n            ],\n            \"audience\": [\n                3,\n                4,\n                6,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-25T20:12:00.311699+02:00\",\n            \"created\": \"2025-05-25T17:22:33.195131+02:00\",\n            \"request\": 1249099\n        },\n        {\n            \"uuid\": \"92c01178-2a5c-11f0-b9f8-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Abwesenheitsnotiz 06.07\",\n            \"text\": \"<p>Sehr geehrte Kundinnen!</p>\\n<p>Sehr geehrte Kunden!</p>\\n<p> </p>\\n<p>Ich darf Sie darüber informieren, dass ich mich der Zeit vom <strong>TT.MM.JJJJ</strong> bis <strong>TT.MMM.JJJJ</strong> auf Urlaub befinde und deshalb nicht erreichbar bin. </p>\\n<p> </p>\\n<p>Bitte wenden Sie sich im Falle von Fragen an meine Vertretung: </p>\\n<p> </p>\\n<p><strong><span style=\\\"text-decoration: underline;\\\">Herr / Frau Nachname</span></strong></p>\\n<p>Tel.: <strong>xx</strong></p>\\n<p>E-Mail: <strong>xx</strong></p>\\n<p> </p>\\n<p>Ich freue mich, bald wieder für Sie da zu sein.</p>\\n<p> </p>\\n<p> </p>\\n<p>Mit freundlichen Grüßen</p>\\n<p>Sandra Schuster</p>\",\n            \"files\": [\n                115323455\n            ],\n            \"buildings\": [],\n            \"audience\": [\n                3,\n                4,\n                6,\n                7\n            ],\n            \"date_from\": \"2025-05-26T08:00:00.596000+02:00\",\n            \"date_to\": \"2025-05-30T18:00:00.081000+02:00\",\n            \"created_by\": 117223,\n            \"updated\": \"2025-05-15T14:19:31.144732+02:00\",\n            \"created\": \"2025-05-06T11:29:13.590782+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"aa229570-2a3e-11f0-b28a-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Test\",\n            \"text\": \"<p>Sieht man den Link als Link?</p>\\n<p> </p>\\n<p>https://api.demo.idwell.at/</p>\",\n            \"files\": [],\n            \"buildings\": [\n                279149,\n                116658\n            ],\n            \"audience\": [\n                3,\n                4,\n                6,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-05-15T14:20:15.526565+02:00\",\n            \"created\": \"2025-05-06T07:55:07.922099+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"e40fea42-15eb-11f0-a7e9-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Wir wünschen frohe Ostern!\",\n            \"text\": \"<p><strong>Im Namen des gesamten Teams der Immobilienverwaltung ABC wünschen wir Ihnen frohe Ostern und erholsame, sonnige Feiertage!</strong></p>\\n<p> </p>\\n<p><strong>https://best-practices.idwell.com/</strong></p>\\n<p> </p>\\n<p><span style=\\\"font-weight: 400;\\\">Unser Büro ist in der Zeit von 18.04.2025 bis 21.04.2025 geschlossen.</span></p>\\n<p><span style=\\\"font-weight: 400;\\\">Ab 22.04.2025 stehen wir Ihnen wieder wie gewohnt zur Verfügung! </span></p>\\n<p> </p>\\n<p><span style=\\\"font-weight: 400;\\\">Ihr Team der Immobilienverwaltung ABC</span></p>\",\n            \"files\": [\n                112083759\n            ],\n            \"buildings\": [],\n            \"audience\": [\n                3,\n                4,\n                6,\n                7\n            ],\n            \"date_from\": \"2025-04-18T08:00:00.009000+02:00\",\n            \"date_to\": \"2025-04-21T12:00:00.190000+02:00\",\n            \"created_by\": 117223,\n            \"updated\": \"2025-05-05T19:11:52.179266+02:00\",\n            \"created\": \"2025-04-10T11:12:13.623485+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"577f822b-6e9c-11f0-a1ef-45f1dc79fc5f\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1364578, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-06-30T12:30:00+02:00\\\", \\\"owner\\\": 117288, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-08-01T05:57:00.854267+00:00\\\", \\\"updated\\\": \\\"2025-08-01T05:57:00.927194+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-08-01T07:57:01.041913+02:00\",\n            \"created\": \"2025-08-01T07:57:01.041901+02:00\",\n            \"request\": 1364578\n        },\n        {\n            \"uuid\": \"ccc13e5e-6e9b-11f0-b872-f30f7bd59ffc\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1364571, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-06-30T12:30:00+02:00\\\", \\\"owner\\\": 117288, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-08-01T05:53:07.612838+00:00\\\", \\\"updated\\\": \\\"2025-08-01T05:53:07.967154+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-08-01T07:53:08.269661+02:00\",\n            \"created\": \"2025-08-01T07:53:08.269647+02:00\",\n            \"request\": 1364571\n        },\n        {\n            \"uuid\": \"d174f295-6e08-11f0-a6c3-c3c44b54c9d5\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1363342, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Paletzgasse 35, 1160 Wien, Österreich gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck an der Wand im Badezimmer</p>\\\\n<p><strong>Anmerkungen</strong>: Siehe Beschreibung</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Andre Adler</p>\\\\n<p><strong>Adresse</strong>: Paletzgasse 35, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\\\n<p><strong>Telefon</strong>: 4704175297</p>\\\\n<p><strong>E-Mail</strong>: joshua33@example.net</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 117648, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-07-31T12:13:56.319876+00:00\\\", \\\"updated\\\": \\\"2025-07-31T12:21:00.070829+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117648,\n            \"updated\": \"2025-07-31T14:21:00.138810+02:00\",\n            \"created\": \"2025-07-31T14:21:00.138798+02:00\",\n            \"request\": 1363342\n        },\n        {\n            \"uuid\": \"021c3563-6e08-11f0-88a8-668f6cef264c\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1363348, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: Siehe oben</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Andre Adler</p>\\\\n<p><strong>Adresse</strong>: MIET Abelegasse 18, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\\\n<p><strong>Telefon</strong>: 4989794079815</p>\\\\n<p><strong>E-Mail</strong>: kevinestrada@example.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-31T12:15:12.078601+00:00\\\", \\\"updated\\\": \\\"2025-07-31T12:15:12.144263+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-07-31T14:15:12.268616+02:00\",\n            \"created\": \"2025-07-31T14:15:12.268604+02:00\",\n            \"request\": 1363348\n        },\n        {\n            \"uuid\": \"d504fde3-6e07-11f0-9e03-b3c0fcefdc8e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1363342, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Paletzgasse 35, 1160 Wien, Österreich gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck an der Wand im Badezimmer</p>\\\\n<p><strong>Anmerkungen</strong>: Siehe Beschreibung</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Andre Adler</p>\\\\n<p><strong>Adresse</strong>: Paletzgasse 35, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 20</p>\\\\n<p><strong>Telefon</strong>: 4704175297</p>\\\\n<p><strong>E-Mail</strong>: joshua33@example.net</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117648, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-31T12:13:56.319876+00:00\\\", \\\"updated\\\": \\\"2025-07-31T12:13:56.470471+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117648,\n            \"updated\": \"2025-07-31T14:13:56.619293+02:00\",\n            \"created\": \"2025-07-31T14:13:56.619280+02:00\",\n            \"request\": 1363342\n        },\n        {\n            \"uuid\": \"a3ac2c8a-6934-11f0-9ad9-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:05.315521+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853117,\n            \"updated\": \"2025-07-25T10:52:05.367495+02:00\",\n            \"created\": \"2025-07-25T10:52:05.367483+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"a385f447-6934-11f0-9ad8-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:05.065055+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853114,\n            \"updated\": \"2025-07-25T10:52:05.117184+02:00\",\n            \"created\": \"2025-07-25T10:52:05.117172+02:00\",\n            \"request\": 1271375\n        },\n        {\n            \"uuid\": \"a35bc42a-6934-11f0-9ad7-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:04.791351+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853023,\n            \"updated\": \"2025-07-25T10:52:04.840554+02:00\",\n            \"created\": \"2025-07-25T10:52:04.840543+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"a32c90f0-6934-11f0-9ad6-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:04.471254+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-07-25T10:52:04.531236+02:00\",\n            \"created\": \"2025-07-25T10:52:04.531226+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"a2f86198-6934-11f0-9ad5-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1270603, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T09:06:03.140745+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:04.147731+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-07-25T10:52:04.189270+02:00\",\n            \"created\": \"2025-07-25T10:52:04.189258+02:00\",\n            \"request\": 1270603\n        },\n        {\n            \"uuid\": \"a27d701b-6934-11f0-9ad4-a5eba252204e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164889, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:47:12.287564+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:03.319036+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-25T10:52:03.383920+02:00\",\n            \"created\": \"2025-07-25T10:52:03.383903+02:00\",\n            \"request\": 1164889\n        },\n        {\n            \"uuid\": \"a246c7fb-6934-11f0-8331-66097976ebd3\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-07-25T08:52:02.978467+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853018,\n            \"updated\": \"2025-07-25T10:52:03.025342+02:00\",\n            \"created\": \"2025-07-25T10:52:03.025333+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"4a2999b5-6863-11f0-8893-f4c4f88f5008\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 622104, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-03T08:16:50.566773+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:53:30.363117+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-07-24T09:53:30.377922+02:00\",\n            \"created\": \"2025-07-24T09:53:30.377916+02:00\",\n            \"request\": 622104\n        },\n        {\n            \"uuid\": \"4a24dfe0-6863-11f0-8892-f4c4f88f5008\",\n            \"type\": 5,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 622104, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-03T08:16:50.566773+00:00\\\", \\\"updated\\\": \\\"2025-07-17T12:38:58.463749+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-24T09:53:30.359187+02:00\",\n            \"created\": \"2025-07-24T09:53:30.347984+02:00\",\n            \"request\": 622104\n        },\n        {\n            \"uuid\": \"4a123c22-6863-11f0-8891-f4c4f88f5008\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 620110, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Sehr geehrte Damen und Herren, </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">hiermit erteilen wir Ihnen den Auftrag für die Wohnung Nr. xx im Objekt Y, um einen neuen Mieter zu finden. </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Folgende Informationen sind dabei zu berücksichtigen: </span></p>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Vermietung soll zum </span><strong>TT.MM.JJJJ</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> beginnen. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnfläche beträgt </span><strong>xx </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">m</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">2</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnung ist voll möbliert.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Ein Garagen-Stellplatz ist inkludiert. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Warmmiete soll brutto € </span><strong>xxx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 betragen, welche sich in folgende Kostenpositionen aufschlüsseln lässt: </span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Kaltmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Garagenmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Möbelmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Nebenkosten: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">USt: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit vermietet. Die Kontaktdaten des aktuellen Mieters lauten:</span></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Name</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Telefonnummer</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>E-Mail</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit nicht vermietet.</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Für Rückfragen stehen wir Ihnen gerne zur Verfügung. </span></p>\\\\n<p><strong> </strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-01T14:00:09.278891+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:53:30.187398+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-07-24T09:53:30.224829+02:00\",\n            \"created\": \"2025-07-24T09:53:30.224821+02:00\",\n            \"request\": 620110\n        },\n        {\n            \"uuid\": \"4a095621-6863-11f0-8890-f4c4f88f5008\",\n            \"type\": 5,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 620110, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Sehr geehrte Damen und Herren, </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">hiermit erteilen wir Ihnen den Auftrag für die Wohnung Nr. xx im Objekt Y, um einen neuen Mieter zu finden. </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Folgende Informationen sind dabei zu berücksichtigen: </span></p>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Vermietung soll zum </span><strong>TT.MM.JJJJ</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> beginnen. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnfläche beträgt </span><strong>xx </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">m</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">2</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnung ist voll möbliert.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Ein Garagen-Stellplatz ist inkludiert. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Warmmiete soll brutto € </span><strong>xxx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 betragen, welche sich in folgende Kostenpositionen aufschlüsseln lässt: </span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Kaltmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Garagenmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Möbelmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Nebenkosten: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">USt: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit vermietet. Die Kontaktdaten des aktuellen Mieters lauten:</span></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Name</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Telefonnummer</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>E-Mail</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit nicht vermietet.</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Für Rückfragen stehen wir Ihnen gerne zur Verfügung. </span></p>\\\\n<p><strong> </strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-01T14:00:09.278891+00:00\\\", \\\"updated\\\": \\\"2025-07-17T12:38:59.935563+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-24T09:53:30.182489+02:00\",\n            \"created\": \"2025-07-24T09:53:30.167611+02:00\",\n            \"request\": 620110\n        },\n        {\n            \"uuid\": \"49e3564d-6863-11f0-ba19-1beca863b799\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 619867, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Sehr geehrte Damen und Herren, </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">hiermit erteilen wir Ihnen den Auftrag für die Wohnung Nr. xx im Objekt Y, um einen neuen Mieter zu finden. </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Folgende Informationen sind dabei zu berücksichtigen: </span></p>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Vermietung soll zum </span><strong>TT.MM.JJJJ</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> beginnen. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnfläche beträgt </span><strong>xx </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">m</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">2</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnung ist voll möbliert.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Ein Garagen-Stellplatz ist inkludiert. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Warmmiete soll brutto € </span><strong>xxx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 betragen, welche sich in folgende Kostenpositionen aufschlüsseln lässt: </span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Kaltmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Garagenmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Möbelmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Nebenkosten: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">USt: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit vermietet. Die Kontaktdaten des aktuellen Mieters lauten:</span></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Name</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Telefonnummer</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>E-Mail</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit nicht vermietet.</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Für Rückfragen stehen wir Ihnen gerne zur Verfügung. </span></p>\\\\n<p><strong> </strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-01T12:17:40.326060+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:53:29.887134+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-07-24T09:53:29.917517+02:00\",\n            \"created\": \"2025-07-24T09:53:29.917509+02:00\",\n            \"request\": 619867\n        },\n        {\n            \"uuid\": \"49da88eb-6863-11f0-ba18-1beca863b799\",\n            \"type\": 5,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 619867, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Sehr geehrte Damen und Herren, </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">hiermit erteilen wir Ihnen den Auftrag für die Wohnung Nr. xx im Objekt Y, um einen neuen Mieter zu finden. </span></p>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Folgende Informationen sind dabei zu berücksichtigen: </span></p>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Vermietung soll zum </span><strong>TT.MM.JJJJ</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> beginnen. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnfläche beträgt </span><strong>xx </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">m</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">2</span><span style=\\\\\\\"font-weight: 400;\\\\\\\">.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Wohnung ist voll möbliert.</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><strong> </strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">Ein Garagen-Stellplatz ist inkludiert. </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Die Warmmiete soll brutto € </span><strong>xxx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 betragen, welche sich in folgende Kostenpositionen aufschlüsseln lässt: </span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Kaltmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Garagenmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Möbelmiete: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00 </span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">Nebenkosten: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><span style=\\\\\\\"font-weight: 400;\\\\\\\">USt: € </span><strong>xx</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\">,00</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<ul>\\\\n<li style=\\\\\\\"font-weight: 400;\\\\\\\"><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit vermietet. Die Kontaktdaten des aktuellen Mieters lauten:</span></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Name</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>Telefonnummer</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>E-Mail</strong></li>\\\\n</ul>\\\\n<ul>\\\\n<li><strong>(Gegebenenfalls streichen)</strong><span style=\\\\\\\"font-weight: 400;\\\\\\\"> Die Wohnung ist zurzeit nicht vermietet.</span></li>\\\\n</ul>\\\\n<p><strong> </strong></p>\\\\n<p><span style=\\\\\\\"font-weight: 400;\\\\\\\">Für Rückfragen stehen wir Ihnen gerne zur Verfügung. </span></p>\\\\n<p><strong> </strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117288, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2024-07-01T12:17:40.326060+00:00\\\", \\\"updated\\\": \\\"2025-07-17T12:39:00.698100+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-24T09:53:29.878791+02:00\",\n            \"created\": \"2025-07-24T09:53:29.861549+02:00\",\n            \"request\": 619867\n        },\n        {\n            \"uuid\": \"c2b93b3b-6862-11f0-89c6-e71e931cd2b5\",\n            \"type\": 3,\n            \"title\": \"Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1347716, \\\"title\\\": \\\"Test\\\", \\\"text\\\": \\\"<p>Test</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2026-07-24T10:00:00.916925+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-24T07:49:42.944016+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:49:43.012070+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-24T09:49:43.149417+02:00\",\n            \"created\": \"2025-07-24T09:49:43.149405+02:00\",\n            \"request\": 1347716\n        },\n        {\n            \"uuid\": \"aab63fab-6860-11f0-90ae-37b6ea54af17\",\n            \"type\": 3,\n            \"title\": \"Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1347660, \\\"title\\\": \\\"Test\\\", \\\"text\\\": \\\"<p>Test</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2026-07-24T09:45:00.546514+02:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-24T07:34:43.585507+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:34:43.682374+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-07-24T09:34:43.870865+02:00\",\n            \"created\": \"2025-07-24T09:34:43.870856+02:00\",\n            \"request\": 1347660\n        },\n        {\n            \"uuid\": \"79f391d4-6860-11f0-8388-7f3178aad216\",\n            \"type\": 3,\n            \"title\": \"\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1347654, \\\"title\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-24T07:33:21.923640+00:00\\\", \\\"updated\\\": \\\"2025-07-24T07:33:21.999320+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-07-24T09:33:22.064629+02:00\",\n            \"created\": \"2025-07-24T09:33:22.064617+02:00\",\n            \"request\": 1347654\n        },\n        {\n            \"uuid\": \"07c11bad-67a3-11f0-84f9-5dd7becb09de\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1345484, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> MIET Abelegasse 18, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>20</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Adler</p>\\\\n<p><strong>E-Mail: </strong>kevinestrada@example.com</p>\\\\n<p><strong>Telefon-Nr.:</strong> 4989794079815</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>{{Mietkündigung - Kündigungsdatum}}</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> {{Mietkündigung - Kündigungsfrist}}</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>{{Mietkündigung - Vermieterin}}</p>\\\\n<p><strong>Termin Rücknahme:</strong> {{Mietkündigung - Rücknahme}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-08-22T11:00:00.164771+02:00\\\", \\\"owner\\\": 117288, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-23T08:57:14.225985+00:00\\\", \\\"updated\\\": \\\"2025-07-23T08:57:14.647118+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-07-23T10:57:15.591643+02:00\",\n            \"created\": \"2025-07-23T10:57:15.591630+02:00\",\n            \"request\": 1345484\n        },\n        {\n            \"uuid\": \"286ea856-66e1-11f0-bd03-80dd5d1ade1e\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1343124, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Sautergasse 86, 1170 Wien, Österreich gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden  - Tiefgarage</p>\\\\n<p><strong>Anmerkungen</strong>: Sehr geehrte Hausverwaltung!\\\\n\\\\n\\\\nAls ich gerade von der Tiefgarage durch die Schleuse ins Treppenhaus gelaufen bin, ist mir aufgefallen, dass in der Schleuse an der Wand das Wasser von oben nach unten läuft, der Boden ist ganz nass. Ich denke, dass hier irgendwo eine Leitung ein Leck hat. Woher das Wasser herkommt, kann ich aber leider nicht feststellen. \\\\n\\\\n\\\\nBitte beachten Sie das Foto im Anhang.</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Anna Franke</p>\\\\n<p><strong>Adresse</strong>: Sautergasse 86, 1170 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 0</p>\\\\n<p><strong>Telefon</strong>: 5761181331645</p>\\\\n<p><strong>E-Mail</strong>: jjones@example.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117482, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-22T09:49:27.775974+00:00\\\", \\\"updated\\\": \\\"2025-07-22T09:49:27.886591+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117482,\n            \"updated\": \"2025-07-22T11:49:28.050771+02:00\",\n            \"created\": \"2025-07-22T11:49:28.050750+02:00\",\n            \"request\": 1343124\n        },\n        {\n            \"uuid\": \"fafe90a8-63ae-11f0-904c-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Aufzugsstörung: Test\",\n            \"text\": \"<p>Sehr geehrte Bewohner der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich,</p>\\n<p> </p>\\n<p>wir möchten Sie darüber informieren, dass wir über eine Aufzugsstörung in Ihrem Hause informiert wurden und bereits die Firma Schindler mit der Behebung beauftragt haben!</p>\\n<p> </p>\\n<p>Wir bitten um Verständnis.</p>\\n<p> </p>\\n<p>Mit besten Grüßen,</p>\\n<p>Ihre Hausverwaltung</p>\",\n            \"files\": [],\n            \"buildings\": [\n                5087\n            ],\n            \"audience\": [\n                3,\n                4,\n                6,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-18T10:12:43.494228+02:00\",\n            \"created\": \"2025-07-18T10:12:43.494180+02:00\",\n            \"request\": 1335425\n        },\n        {\n            \"uuid\": \"f4a4b193-63ae-11f0-87e8-27d610b49155\",\n            \"type\": 3,\n            \"title\": \"Aufzugsstörung: Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1335425, \\\"title\\\": \\\"Aufzugsstörung: Test\\\", \\\"text\\\": \\\"<p>Greta Schuster hat unter Bezugnahme der Liegenschaft MIET Abelegasse 18, 1160 Wien, Österreich eine Aufzugsstörung gemeldet.</p>\\\\n<p>--</p>\\\\n<p><strong>Anmerkungen: </strong>{{Beschreibung}}</p>\\\\n<p>--</p>\\\\n<p><strong><u>Daten vom Schadensmelder: </u></strong></p>\\\\n<p><strong>Name</strong>: Greta Schuster</p>\\\\n<p><strong>Adresse:</strong> MIET Abelegasse 18, 1160 Wien, Österreich<strong> </strong></p>\\\\n<p><strong>Top-Nr.: </strong>{{flat_number}}</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-19T10:15:00.171253+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-18T08:12:32.227705+00:00\\\", \\\"updated\\\": \\\"2025-07-18T08:12:32.655975+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-18T10:12:32.838345+02:00\",\n            \"created\": \"2025-07-18T10:12:32.838334+02:00\",\n            \"request\": 1335425\n        },\n        {\n            \"uuid\": \"244e694f-6316-11f0-85e1-9a88983b1435\",\n            \"type\": 3,\n            \"title\": \"Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1333946, \\\"title\\\": \\\"Test\\\", \\\"text\\\": \\\"<p>Betrifft das Objekt: Donaufelder Str. 181, 1220 Wien, Österreich</p>\\\\n<p> </p>\\\\n<p><strong><u>Kundendaten:</u></strong></p>\\\\n<p><strong>Name</strong>: Kathi Strobl</p>\\\\n<p><strong>Adresse:</strong> Donaufelder Str. 181, 1220 Wien, Österreich</p>\\\\n<p><strong>Top-Nr.: </strong>10</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>katharina.strobl+1@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 3130481, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-17T13:58:39.608209+00:00\\\", \\\"updated\\\": \\\"2025-07-17T13:58:39.751154+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 3130481,\n            \"updated\": \"2025-07-17T15:58:39.803932+02:00\",\n            \"created\": \"2025-07-17T15:58:39.803919+02:00\",\n            \"request\": 1333946\n        },\n        {\n            \"uuid\": \"adc68746-6307-11f0-9842-6a760fc935cc\",\n            \"type\": 3,\n            \"title\": \"Sanierung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1333646, \\\"title\\\": \\\"Sanierung\\\", \\\"text\\\": \\\"<p><strong>Objekt</strong>:<strong> </strong></p><p><strong>Gegenstand der Sanierung</strong>: {{Sanierung - Ort und Gegenstand}}</p><p><strong>Zeitraum der Sanierung:</strong> {{Sanierung - Zeitraum}}</p><p><strong>Anmerkungen:</strong> {{Sanierung - Anmerkungen}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-20T12:15:06.641948+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-07-17T12:15:06.665386+00:00\\\", \\\"updated\\\": \\\"2025-07-17T12:15:06.661373+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-17T14:15:07.988148+02:00\",\n            \"created\": \"2025-07-17T14:15:07.988135+02:00\",\n            \"request\": 1333646\n        },\n        {\n            \"uuid\": \"5d43208d-5d83-11f0-ba79-1229d90a534e\",\n            \"type\": 3,\n            \"title\": \"Schädlingsbefall\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1321139, \\\"title\\\": \\\"Schädlingsbefall\\\", \\\"text\\\": \\\"<p>Der Schadensmelder Mike Diekmann hat unter Bezugnahme der Liegenschaft Bachgasse 42, 1160 Wien, Österreich einen Schädlingsbefall gemeldet.</p>\\\\n<p>--</p>\\\\n<p><strong>Problembeschreibung</strong>: \\\\\\\"Du Ratte 🐀🐀🐀🐀🐀\\\\\\\"</p>\\\\n<p><strong>Ortsangabe</strong>: \\\\\\\"{{Schädlingsmeldung - Ort}}\\\\\\\"</p>\\\\n<p>--</p>\\\\n<p><strong><u>Daten vom Schadensmelder: </u></strong></p>\\\\n<p><strong>Name</strong>: Mike Diekmann</p>\\\\n<p><strong>Adresse:</strong> Bachgasse 42, 1160 Wien, Österreich<strong> </strong></p>\\\\n<p><strong>Top-Nr.: </strong>11</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>mike.diekmann+3@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 2807641, \\\"created_by\\\": 2807641, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-10T11:45:23.161497+00:00\\\", \\\"updated\\\": \\\"2025-07-10T11:45:23.219051+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2807641,\n            \"updated\": \"2025-07-10T13:45:23.526769+02:00\",\n            \"created\": \"2025-07-10T13:45:23.526762+02:00\",\n            \"request\": 1321139\n        },\n        {\n            \"uuid\": \"365455c0-5d83-11f0-918c-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Aufzugsstörung\",\n            \"text\": \"<p>Sehr geehrte Damen und Herren,</p>\\n<p> </p>\\n<p>uns wurde eine Störung des Aufzugs <strong style=\\\"color: #444444;\\\">in der Stiege / im Stock xx</strong> gemeldet. Wir erlauben uns zu informieren, dass die Firma <strong style=\\\"color: #444444;\\\">Name</strong><span style=\\\"color: #444444;\\\"> </span>bereits mit der Störungsbehebung beauftragt wurde. Wir halten Sie hierzu weiter auf dem Laufenden.</p>\\n<p> </p>\\n<p>Mit freundlichen Grüßen</p>\\n<p>Ihre Hausverwaltung</p>\",\n            \"files\": [],\n            \"buildings\": [\n                5088\n            ],\n            \"audience\": [\n                3,\n                4,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-10T13:44:18.208445+02:00\",\n            \"created\": \"2025-07-10T13:44:18.208433+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"9cf264fe-5d82-11f0-8b58-2c3ddf5c6837\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1321123, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Bachgasse 42, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>{{flat_number}}</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Greta Schuster</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\\n<p><strong>Telefon-Nr.:</strong> {{profile_phone}}</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>{{Mietkündigung - Kündigungsdatum}}</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> {{Mietkündigung - Kündigungsfrist}}</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>{{Mietkündigung - Vermieterin}}</p>\\\\n<p><strong>Termin Rücknahme:</strong> {{Mietkündigung - Rücknahme}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-08-09T13:45:00.386470+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-10T11:40:00.415214+00:00\\\", \\\"updated\\\": \\\"2025-07-10T11:40:00.525000+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-10T13:40:00.875129+02:00\",\n            \"created\": \"2025-07-10T13:40:00.875121+02:00\",\n            \"request\": 1321123\n        },\n        {\n            \"uuid\": \"fe8b6eec-5d7b-11f0-99bf-720a23b7cc79\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1321023, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Bachgasse 42, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>{{flat_number}}</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Greta Schuster</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\\n<p><strong>Telefon-Nr.:</strong> {{profile_phone}}</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>{{Mietkündigung - Kündigungsdatum}}</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> {{Mietkündigung - Kündigungsfrist}}</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>{{Mietkündigung - Vermieterin}}</p>\\\\n<p><strong>Termin Rücknahme:</strong> {{Mietkündigung - Rücknahme}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-08-09T13:00:00.830887+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-10T10:52:36.909966+00:00\\\", \\\"updated\\\": \\\"2025-07-10T10:52:37.056948+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-10T12:52:38.140268+02:00\",\n            \"created\": \"2025-07-10T12:52:38.140255+02:00\",\n            \"request\": 1321023\n        },\n        {\n            \"uuid\": \"ecf47aa1-5d7a-11f0-80b9-4b52c0856e37\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1320996, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Bachgasse 42, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>{{flat_number}}</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Greta Schuster</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\\n<p><strong>Telefon-Nr.:</strong> {{profile_phone}}</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>{{Mietkündigung - Kündigungsdatum}}</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> {{Mietkündigung - Kündigungsfrist}}</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>{{Mietkündigung - Vermieterin}}</p>\\\\n<p><strong>Termin Rücknahme:</strong> {{Mietkündigung - Rücknahme}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-08-09T12:45:00.465662+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-10T10:44:58.508919+00:00\\\", \\\"updated\\\": \\\"2025-07-10T10:44:58.579274+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-10T12:44:59.133140+02:00\",\n            \"created\": \"2025-07-10T12:44:59.133127+02:00\",\n            \"request\": 1320996\n        },\n        {\n            \"uuid\": \"c31ecf79-5d7a-11f0-b972-217c0b5fe3d1\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1320991, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Bachgasse 42, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>{{flat_number}}</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Greta Schuster</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\\n<p><strong>Telefon-Nr.:</strong> {{profile_phone}}</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>{{Mietkündigung - Kündigungsdatum}}</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> {{Mietkündigung - Kündigungsfrist}}</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>{{Mietkündigung - Vermieterin}}</p>\\\\n<p><strong>Termin Rücknahme:</strong> {{Mietkündigung - Rücknahme}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-08-09T12:45:00.839282+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-10T10:43:47.899916+00:00\\\", \\\"updated\\\": \\\"2025-07-10T10:43:48.062512+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-10T12:43:48.945961+02:00\",\n            \"created\": \"2025-07-10T12:43:48.945949+02:00\",\n            \"request\": 1320991\n        },\n        {\n            \"uuid\": \"ea7bff72-5bd4-11f0-87d3-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Aufzugsstörung\",\n            \"text\": \"<p>Sehr geehrte Damen und Herren,</p>\\n<p> </p>\\n<p>uns wurde eine Störung des Aufzugs <strong style=\\\"color: #444444;\\\">in der Stiege / im Stock xx</strong> gemeldet. Wir erlauben uns zu informieren, dass die Firma <strong style=\\\"color: #444444;\\\">Name</strong><span style=\\\"color: #444444;\\\"> </span>bereits mit der Störungsbehebung beauftragt wurde. Wir halten Sie hierzu weiter auf dem Laufenden.</p>\\n<p> </p>\\n<p>Mit freundlichen Grüßen</p>\\n<p>Ihre Hausverwaltung</p>\",\n            \"files\": [\n                124982832\n            ],\n            \"buildings\": [\n                279149\n            ],\n            \"audience\": [\n                3,\n                6\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-08T10:24:07.368244+02:00\",\n            \"created\": \"2025-07-08T10:24:07.368225+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"f219bcac-5b25-11f0-8a01-b70501952002\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1314159, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Bachgasse 42, 1160 Wien, Österreich gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Test</p>\\\\n<p><strong>Anmerkungen</strong>: {{WS - Art}}</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Sandra Schuster</p>\\\\n<p><strong>Adresse</strong>: Bachgasse 42, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 11</p>\\\\n<p><strong>Telefon</strong>: {{profile_phone}}</p>\\\\n<p><strong>E-Mail</strong>: kontakt+210@idwell.at</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-07T11:31:37.975372+00:00\\\", \\\"updated\\\": \\\"2025-07-07T11:31:38.101114+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-07T13:31:38.218100+02:00\",\n            \"created\": \"2025-07-07T13:31:38.218086+02:00\",\n            \"request\": 1314159\n        },\n        {\n            \"uuid\": \"da25aa4f-5b0b-11f0-aac5-73c2f79b7e71\",\n            \"type\": 3,\n            \"title\": \"Sanierung: {{Sanierung - Titel}}\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1313400, \\\"title\\\": \\\"Sanierung: {{Sanierung - Titel}}\\\", \\\"text\\\": \\\"<p><strong>Objekt</strong>:<strong> </strong>MIET Abelegasse 18, 1160 Wien, Österreich</p>\\\\n<p><strong>Gegenstand der Sanierung</strong>: {{Sanierung - Ort und Gegenstand}}</p>\\\\n<p><strong>Zeitraum der Sanierung:</strong> {{Sanierung - Zeitraum}}</p>\\\\n<p><strong>Anmerkungen:</strong> {{Sanierung - Anmerkungen}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-07T08:24:50.839145+00:00\\\", \\\"updated\\\": \\\"2025-07-07T08:24:50.912341+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-07-07T10:24:51.116003+02:00\",\n            \"created\": \"2025-07-07T10:24:51.115990+02:00\",\n            \"request\": 1313400\n        },\n        {\n            \"uuid\": \"a4ad2d0f-5727-11f0-b4ff-8c8af909928f\",\n            \"type\": 3,\n            \"title\": \"Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1305414, \\\"title\\\": \\\"Test\\\", \\\"text\\\": \\\"<p>Betrifft das Objekt: Rosenweg 8, 23456 Blumenau</p>\\\\n<p> </p>\\\\n<p><strong><u>Kundendaten:</u></strong></p>\\\\n<p><strong>Name</strong>: Amelie Wolf</p>\\\\n<p><strong>Adresse:</strong> Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Top-Nr.: </strong>039</p>\\\\n<p><strong>Telefon: </strong>434916155566677</p>\\\\n<p><strong>E-Mail: </strong>noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 2853054, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-02T09:33:42.517998+00:00\\\", \\\"updated\\\": \\\"2025-07-02T09:33:42.594758+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853054,\n            \"updated\": \"2025-07-02T11:33:42.664494+02:00\",\n            \"created\": \"2025-07-02T11:33:42.664480+02:00\",\n            \"request\": 1305414\n        },\n        {\n            \"uuid\": \"285eb9d9-5667-11f0-9f75-9df8363f3dab\",\n            \"type\": 3,\n            \"title\": \"Telefonnotiz: Wird der Mieter übertragen im Status blockiert?\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1303483, \\\"title\\\": \\\"Telefonnotiz: Wird der Mieter übertragen im Status blockiert?\\\", \\\"text\\\": \\\"<p><strong>Anmerkungen:</strong> {{Telefonnotiz Anmerkungen}}</p>\\\\n<p> </p>\\\\n<p><strong>Datum:</strong> {{Telefonnotiz Datum}}</p>\\\\n<p> </p>\\\\n<p><strong><u>Kundendaten:</u></strong></p>\\\\n<p><strong>Name:</strong> Ela Lein</p>\\\\n<p><strong>Adresse:</strong> 10 WEG Brunhildenstraße 10, 65189 Wiesbaden, Deutschland</p>\\\\n<p><strong>Einheiten-Nr.: </strong>1</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>ela@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 2598542, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-07-01T10:35:50.325968+00:00\\\", \\\"updated\\\": \\\"2025-07-01T10:35:50.400955+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2598542,\n            \"updated\": \"2025-07-01T12:35:50.740911+02:00\",\n            \"created\": \"2025-07-01T12:35:50.740897+02:00\",\n            \"request\": 1303483\n        },\n        {\n            \"uuid\": \"27ccee9d-5597-11f0-b446-870dd2cf74ec\",\n            \"type\": 3,\n            \"title\": \"\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1301053, \\\"title\\\": \\\"\\\", \\\"text\\\": \\\"\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T09:46:54.395913+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:46:54.432998+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:46:54.465296+02:00\",\n            \"created\": \"2025-06-30T11:46:54.465289+02:00\",\n            \"request\": 1301053\n        },\n        {\n            \"uuid\": \"279b1105-5597-11f0-b445-870dd2cf74ec\",\n            \"type\": 3,\n            \"title\": \"2/3 Wartung technische Anlage: Serverraum, halbjährlich\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1301052, \\\"title\\\": \\\"2/3 Wartung technische Anlage: Serverraum, halbjährlich\\\", \\\"text\\\": \\\"<p><strong>Wartung wird durchgeführt im Objekt:</strong> Adlerstraße 28, 90403 Nürnberg, Deutschland</p>\\\\n<p> </p>\\\\n<p><strong>Intervall</strong>: 2 x jährlich </p>\\\\n<p> </p>\\\\n<p><strong>Art der TA:</strong> Serverraum</p>\\\\n<p> </p>\\\\n<p><strong>Anmerkungen</strong>: {{Wartung-Anmerkungen2}}</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-12-27T11:00:00.981973+01:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T09:46:54.018845+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:46:54.060843+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:46:54.138501+02:00\",\n            \"created\": \"2025-06-30T11:46:54.138494+02:00\",\n            \"request\": 1301052\n        },\n        {\n            \"uuid\": \"275805ab-5597-11f0-b444-870dd2cf74ec\",\n            \"type\": 3,\n            \"title\": \"1/3 Wartung technische Anlage: Serverraum, halbjährlich\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1301051, \\\"title\\\": \\\"1/3 Wartung technische Anlage: Serverraum, halbjährlich\\\", \\\"text\\\": \\\"<p><strong>Wartung wird durchgeführt im Objekt:</strong> Adlerstraße 28, 90403 Nürnberg, Deutschland</p>\\\\n<p> </p>\\\\n<p><strong>Intervall</strong>: 2 x jährlich </p>\\\\n<p> </p>\\\\n<p><strong>Art der TA:</strong> Serverraum</p>\\\\n<p> </p>\\\\n<p><strong>Anmerkungen</strong>: {{Wartung-Anmerkungen2}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-01T12:00:00.391649+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T09:46:53.435672+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:46:53.489774+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:46:53.699140+02:00\",\n            \"created\": \"2025-06-30T11:46:53.699131+02:00\",\n            \"request\": 1301051\n        },\n        {\n            \"uuid\": \"3137055b-5596-11f0-ae12-8b787543cee8\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300921, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 117324, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T09:17:58.309284+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:40:00.727308+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117324,\n            \"updated\": \"2025-06-30T11:40:00.763354+02:00\",\n            \"created\": \"2025-06-30T11:40:00.763345+02:00\",\n            \"request\": 1300921\n        },\n        {\n            \"uuid\": \"b1bd87c6-5593-11f0-92d5-c7ff73805507\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300868, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Oberlaaer Str. 192, 1100 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>0</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Geisinger</p>\\\\n<p><strong>E-Mail: </strong>paulcaleb@example.com</p>\\\\n<p><strong>Telefon-Nr.:</strong> 2033407242</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> 30.11.2025</p>\\\\n<p><strong>Anmerkungen: </strong>Infos</p>\\\\n<p><strong>Vermieter: </strong>Immo Fond</p>\\\\n<p><strong>Termin Rücknahme:</strong> August wegen Urlaub</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-30T09:15:00.914418+00:00\\\", \\\"owner\\\": 117324, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T09:06:10.970706+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:22:07.884889+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117324,\n            \"updated\": \"2025-06-30T11:22:07.903133+02:00\",\n            \"created\": \"2025-06-30T11:22:07.903122+02:00\",\n            \"request\": 1300868\n        },\n        {\n            \"uuid\": \"b1b792b4-5593-11f0-92d4-c7ff73805507\",\n            \"type\": 5,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300868, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Oberlaaer Str. 192, 1100 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>0</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Geisinger</p>\\\\n<p><strong>E-Mail: </strong>paulcaleb@example.com</p>\\\\n<p><strong>Telefon-Nr.:</strong> 2033407242</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> 30.11.2025</p>\\\\n<p><strong>Anmerkungen: </strong>Infos</p>\\\\n<p><strong>Vermieter: </strong>Immo Fond</p>\\\\n<p><strong>Termin Rücknahme:</strong> August wegen Urlaub</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-30T09:15:00.914418+00:00\\\", \\\"owner\\\": 117324, \\\"created_by\\\": 117223, \\\"updated_by\\\": 1743841, \\\"created\\\": \\\"2025-06-30T09:06:10.970706+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:06:11.919864+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:22:07.879833+02:00\",\n            \"created\": \"2025-06-30T11:22:07.865935+02:00\",\n            \"request\": 1300868\n        },\n        {\n            \"uuid\": \"b199b9a3-5593-11f0-92d3-c7ff73805507\",\n            \"type\": 3,\n            \"title\": \"Sanierung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300898, \\\"title\\\": \\\"Sanierung\\\", \\\"text\\\": \\\"<p><strong>Objekt</strong>:<strong> </strong></p><p><strong>Gegenstand der Sanierung</strong>: {{Sanierung - Ort und Gegenstand}}</p><p><strong>Zeitraum der Sanierung:</strong> {{Sanierung - Zeitraum}}</p><p><strong>Anmerkungen:</strong> {{Sanierung - Anmerkungen}}</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T09:13:17.820389+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T09:13:17.828529+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:22:07.632821+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:22:07.668692+02:00\",\n            \"created\": \"2025-06-30T11:22:07.668681+02:00\",\n            \"request\": 1300898\n        },\n        {\n            \"uuid\": \"b1714971-5593-11f0-a7a2-226e433559de\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300921, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117324, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T09:17:58.309284+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:22:07.379433+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117324,\n            \"updated\": \"2025-06-30T11:22:07.403364+02:00\",\n            \"created\": \"2025-06-30T11:22:07.403355+02:00\",\n            \"request\": 1300921\n        },\n        {\n            \"uuid\": \"b16a9883-5593-11f0-a7a1-226e433559de\",\n            \"type\": 5,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300921, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 3, \\\"due_date\\\": null, \\\"owner\\\": 117324, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 1743841, \\\"created\\\": \\\"2025-06-30T09:17:58.309284+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:17:58.306923+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:22:07.374065+02:00\",\n            \"created\": \"2025-06-30T11:22:07.360932+02:00\",\n            \"request\": 1300921\n        },\n        {\n            \"uuid\": \"1d233851-5593-11f0-9b3b-aee75bba74ad\",\n            \"type\": 3,\n            \"title\": \"Neuvermietung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300921, \\\"title\\\": \\\"Neuvermietung\\\", \\\"text\\\": \\\"<p><strong>Mietobjekt: </strong>, Wohnungsnummer </p><p><strong>Wohnung wird frei am: </strong></p><p><strong>Anmerkungen:</strong></p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 117324, \\\"created_by\\\": 1743841, \\\"updated_by\\\": 1743841, \\\"created\\\": \\\"2025-06-30T09:17:58.309284+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:17:58.306923+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117324,\n            \"updated\": \"2025-06-30T11:17:58.589054+02:00\",\n            \"created\": \"2025-06-30T11:17:58.589043+02:00\",\n            \"request\": 1300921\n        },\n        {\n            \"uuid\": \"761f715b-5592-11f0-8117-ed7db595ec46\",\n            \"type\": 3,\n            \"title\": \"Sanierung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300898, \\\"title\\\": \\\"Sanierung\\\", \\\"text\\\": \\\"<p><strong>Objekt</strong>:<strong> </strong></p><p><strong>Gegenstand der Sanierung</strong>: {{Sanierung - Ort und Gegenstand}}</p><p><strong>Zeitraum der Sanierung:</strong> {{Sanierung - Zeitraum}}</p><p><strong>Anmerkungen:</strong> {{Sanierung - Anmerkungen}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T09:13:17.820389+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T09:13:17.828529+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:13:17.826125+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T11:13:18.384786+02:00\",\n            \"created\": \"2025-06-30T11:13:18.384774+02:00\",\n            \"request\": 1300898\n        },\n        {\n            \"uuid\": \"77d69819-5591-11f0-8509-6e935f8f00c2\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300868, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Oberlaaer Str. 192, 1100 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>0</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Geisinger</p>\\\\n<p><strong>E-Mail: </strong>paulcaleb@example.com</p>\\\\n<p><strong>Telefon-Nr.:</strong> 2033407242</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> 30.11.2025</p>\\\\n<p><strong>Anmerkungen: </strong>Infos</p>\\\\n<p><strong>Vermieter: </strong>Immo Fond</p>\\\\n<p><strong>Termin Rücknahme:</strong> August wegen Urlaub</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-30T11:15:00.914418+02:00\\\", \\\"owner\\\": 117324, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T09:06:10.970706+00:00\\\", \\\"updated\\\": \\\"2025-06-30T09:06:11.148511+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117324,\n            \"updated\": \"2025-06-30T11:06:11.766203+02:00\",\n            \"created\": \"2025-06-30T11:06:11.766190+02:00\",\n            \"request\": 1300868\n        },\n        {\n            \"uuid\": \"b3c7fbbf-5584-11f0-adbc-31e02f24e979\",\n            \"type\": 3,\n            \"title\": \"Sanierung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300447, \\\"title\\\": \\\"Sanierung\\\", \\\"text\\\": \\\"<p><strong>Objekt</strong>:<strong> </strong></p><p><strong>Gegenstand der Sanierung</strong>: {{Sanierung - Ort und Gegenstand}}</p><p><strong>Zeitraum der Sanierung:</strong> {{Sanierung - Zeitraum}}</p><p><strong>Anmerkungen:</strong> {{Sanierung - Anmerkungen}}</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-03T07:34:47.814570+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-30T07:34:47.826811+00:00\\\", \\\"updated\\\": \\\"2025-06-30T07:34:47.822209+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-30T09:34:48.876821+02:00\",\n            \"created\": \"2025-06-30T09:34:48.876804+02:00\",\n            \"request\": 1300447\n        },\n        {\n            \"uuid\": \"641d6a12-5584-11f0-b98a-0c6c7a5b77e2\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300437, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> Paletzgasse 35, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>20</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Adler</p>\\\\n<p><strong>E-Mail: </strong>joshua33@example.net</p>\\\\n<p><strong>Telefon-Nr.:</strong> 4704175297</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> 31.10.2025</p>\\\\n<p><strong>Anmerkungen: </strong>{{Mietkündigung - Anmerkungen}}</p>\\\\n<p><strong>Vermieter: </strong>Meier Fond</p>\\\\n<p><strong>Termin Rücknahme:</strong> Juli</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-30T09:45:00.734953+02:00\\\", \\\"owner\\\": 117648, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T07:32:34.764589+00:00\\\", \\\"updated\\\": \\\"2025-06-30T07:32:34.820287+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117648,\n            \"updated\": \"2025-06-30T09:32:35.218321+02:00\",\n            \"created\": \"2025-06-30T09:32:35.218310+02:00\",\n            \"request\": 1300437\n        },\n        {\n            \"uuid\": \"89060704-5580-11f0-9c8d-9070a56f991e\",\n            \"type\": 3,\n            \"title\": \"Mietkündigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1300295, \\\"title\\\": \\\"Mietkündigung\\\", \\\"text\\\": \\\"<p><strong>Objekt:</strong> MIET Abelegasse 18, 1160 Wien, Österreich</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>20</p>\\\\n<p> </p>\\\\n<p><strong>Auszuziehender Mieter: </strong>Andre Adler</p>\\\\n<p><strong>E-Mail: </strong>kevinestrada@example.com</p>\\\\n<p><strong>Telefon-Nr.:</strong> 4989794079815</p>\\\\n<p> </p>\\\\n<p><strong>Kündigungsdatum: </strong>31.07.2025</p>\\\\n<p><strong>Kündigungsfrist bis zum:</strong> 30.11.2025</p>\\\\n<p><strong>Anmerkungen: </strong>keine</p>\\\\n<p><strong>Vermieter: </strong>Immofond</p>\\\\n<p><strong>Termin Rücknahme:</strong> 08.07.2025</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-07-30T09:15:00.743255+02:00\\\", \\\"owner\\\": 117288, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-30T07:04:56.845229+00:00\\\", \\\"updated\\\": \\\"2025-06-30T07:04:57.100567+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117288,\n            \"updated\": \"2025-06-30T09:04:59.153970+02:00\",\n            \"created\": \"2025-06-30T09:04:59.153958+02:00\",\n            \"request\": 1300295\n        },\n        {\n            \"uuid\": \"0cc7b4d3-5333-11f0-8d53-5df7a1adcd5b\",\n            \"type\": 3,\n            \"title\": \"Telefonnotiz: Test\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1297920, \\\"title\\\": \\\"Telefonnotiz: Test\\\", \\\"text\\\": \\\"<p><strong>Anmerkungen:</strong> Danke</p>\\\\n<p> </p>\\\\n<p><strong>Datum:</strong> {{Telefonnotiz Datum}}</p>\\\\n<p> </p>\\\\n<p><strong><u>Kundendaten:</u></strong></p>\\\\n<p><strong>Name:</strong> Sandra Schuster</p>\\\\n<p><strong>Adresse:</strong> {{building_address}}</p>\\\\n<p><strong>Einheiten-Nr.: </strong>{{flat_number}}</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>kontakt+210@idwell.at</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-27T08:45:16.892489+00:00\\\", \\\"updated\\\": \\\"2025-06-27T08:45:16.999600+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-27T10:45:17.134062+02:00\",\n            \"created\": \"2025-06-27T10:45:17.134053+02:00\",\n            \"request\": 1297920\n        },\n        {\n            \"uuid\": \"cd511f71-5295-11f0-83b6-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1270603, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T09:06:03.140745+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:39.522901+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-26T15:59:39.674026+02:00\",\n            \"created\": \"2025-06-26T15:59:39.674015+02:00\",\n            \"request\": 1270603\n        },\n        {\n            \"uuid\": \"cd33e0b6-5295-11f0-83b5-d34342f6f315\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1270603, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T09:06:03.140745+00:00\\\", \\\"updated\\\": \\\"2025-06-10T09:06:04.719247+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:39.514278+02:00\",\n            \"created\": \"2025-06-26T15:59:39.484774+02:00\",\n            \"request\": 1270603\n        },\n        {\n            \"uuid\": \"ccda8e0c-5295-11f0-83b4-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164889, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:47:12.287564+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:38.814269+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:38.896941+02:00\",\n            \"created\": \"2025-06-26T15:59:38.896930+02:00\",\n            \"request\": 1164889\n        },\n        {\n            \"uuid\": \"cc996380-5295-11f0-83b3-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:38.409287+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853018,\n            \"updated\": \"2025-06-26T15:59:38.469868+02:00\",\n            \"created\": \"2025-06-26T15:59:38.469858+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"cc85e148-5295-11f0-83b2-d34342f6f315\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-23T10:03:06.934672+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:38.395515+02:00\",\n            \"created\": \"2025-06-26T15:59:38.344382+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"cc2e229e-5295-11f0-83b1-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:37.647403+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-26T15:59:37.767050+02:00\",\n            \"created\": \"2025-06-26T15:59:37.767038+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"cc122e51-5295-11f0-83b0-d34342f6f315\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-06-23T10:03:07.050792+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:37.638724+02:00\",\n            \"created\": \"2025-06-26T15:59:37.587615+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"cbde9f41-5295-11f0-83af-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:37.196800+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853023,\n            \"updated\": \"2025-06-26T15:59:37.245864+02:00\",\n            \"created\": \"2025-06-26T15:59:37.245853+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"cbcc303b-5295-11f0-83ae-d34342f6f315\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-23T10:03:07.135085+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:37.185850+02:00\",\n            \"created\": \"2025-06-26T15:59:37.128949+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"cb9d95d0-5295-11f0-83ad-d34342f6f315\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:36.752508+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853114,\n            \"updated\": \"2025-06-26T15:59:36.819641+02:00\",\n            \"created\": \"2025-06-26T15:59:36.819631+02:00\",\n            \"request\": 1271375\n        },\n        {\n            \"uuid\": \"cb83473f-5295-11f0-83ac-d34342f6f315\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-06-23T10:03:08.113546+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:36.739089+02:00\",\n            \"created\": \"2025-06-26T15:59:36.650442+02:00\",\n            \"request\": 1271375\n        },\n        {\n            \"uuid\": \"cabfb28f-5295-11f0-8def-a9b3a225c7a4\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:59:35.332012+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853117,\n            \"updated\": \"2025-06-26T15:59:35.365574+02:00\",\n            \"created\": \"2025-06-26T15:59:35.365560+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"cab55ede-5295-11f0-8dee-a9b3a225c7a4\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-03T20:15:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:58:43.120226+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-26T15:59:35.326515+02:00\",\n            \"created\": \"2025-06-26T15:59:35.299227+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"1bb49aa7-5292-11f0-abd0-da2ce035aafd\",\n            \"type\": 3,\n            \"title\": \"Beauftragung Energieausweis - {{Erneuerbare _Energie}}\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1296714, \\\"title\\\": \\\"Beauftragung Energieausweis - {{Erneuerbare _Energie}}\\\", \\\"text\\\": \\\"<p>Mike Diekmann hat unter Bezugnahme der Liegenschaft {{building_address}} einen Energieverbrauchsausweis angefordert.</p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><strong>Gebäudetyp</strong>: \\\\\\\"{{Gebäudetyp}}\\\\\\\"</p>\\\\n<p><strong>Baujahr</strong>: \\\\\\\"{{Baujahr}}\\\\\\\"</p>\\\\n<p><strong>Wohnfläche:</strong> \\\\\\\"{{{Wohnfläche}}\\\\\\\"</p>\\\\n<p><strong>erneuerbare Energie in Verwendung?: </strong>\\\\\\\"{{Erneuerbare _Energie}}\\\\\\\"</p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><strong><u>Daten vom Auftraggeber:</u></strong></p>\\\\n<p><strong>Name</strong>: Mike Diekmann</p>\\\\n<p><strong>Adresse:</strong> {{building_address}}</p>\\\\n<p><strong>Wohnungs-Nr.: </strong>{{flat_number}}</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>mike.diekmann+1@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 2842734, \\\"created_by\\\": 2842734, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-26T13:33:13.108837+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:33:13.159048+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2842734,\n            \"updated\": \"2025-06-26T15:33:13.201236+02:00\",\n            \"created\": \"2025-06-26T15:33:13.201228+02:00\",\n            \"request\": 1296714\n        },\n        {\n            \"uuid\": \"fa8a7b1d-5291-11f0-8d1e-06fdebf6f563\",\n            \"type\": 3,\n            \"title\": \"Einzugsermächtigung\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1296709, \\\"title\\\": \\\"Einzugsermächtigung\\\", \\\"text\\\": \\\"<p>Der Kunde Mike Diekmann hat unter Bezugnahme der Liegenschaft {{building_address}} eine Einzugsermächtigung abgegeben:</p><p>--</p><p><strong>Name: </strong>{{Einzugsermächtigung - Name}}</p><p><strong>IBAN: {</strong>{Einzugsermächtigung - IBAN}}</p><p><strong>BIC: </strong>{{Einzugsermächtigung - BIC}}</p><p><strong>Adresse: </strong>{{Einzugsermächtigung - Liegenschaft_Top}}</p><p><strong>E-Mail Adresse: </strong>{{Einzugsermächtigung - E-Mail}}</p><p><strong>Einzugsermächtigung beginnend mit: </strong>{{Einzugsermächtigung - Beginn}}</p><p><strong>Kommentar:</strong> \\\\\\\"{{Einzugsermächtigung-Kommentar}}\\\\\\\"</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": null, \\\"owner\\\": 2842734, \\\"created_by\\\": 2842734, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-26T13:32:17.340678+00:00\\\", \\\"updated\\\": \\\"2025-06-26T13:32:17.476476+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2842734,\n            \"updated\": \"2025-06-26T15:32:17.560854+02:00\",\n            \"created\": \"2025-06-26T15:32:17.560840+02:00\",\n            \"request\": 1296709\n        },\n        {\n            \"uuid\": \"f417a028-51f0-11f0-a487-800d9f88a673\",\n            \"type\": 3,\n            \"title\": \"Wasserschaden - Aus der Wand\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1294731, \\\"title\\\": \\\"Wasserschaden - Aus der Wand\\\", \\\"text\\\": \\\"<p>Der Schadensmelder Anika Szokoll hat unter Bezugnahme der Liegenschaft WEG Meidlinger Hauptstraße 9, 1120 Wien, Österreich einen Wasserschaden gemeldet.</p>\\\\n<p>--</p>\\\\n<p><strong>Problembeschreibung</strong>: \\\\\\\"Wasserfleck\\\\\\\"</p>\\\\n<p><strong>Ortsangabe</strong>: \\\\\\\"Im Badezimmer\\\\\\\"</p>\\\\n<p><strong>Ursache des Wasserschadens:</strong> \\\\\\\"{{WasserschadenWand - Ursache}}\\\\\\\"</p>\\\\n<p><strong>Weitere betroffene Tops: </strong>Nein</p>\\\\n<p>--</p>\\\\n<p><strong><u>Daten vom Schadensmelder: </u></strong></p>\\\\n<p><strong>Name</strong>: Anika Szokoll</p>\\\\n<p><strong>Adresse:</strong> WEG Meidlinger Hauptstraße 9, 1120 Wien, Österreich<strong> </strong></p>\\\\n<p><strong>Top-Nr.: </strong>13</p>\\\\n<p><strong>Telefon: </strong>{{profile_phone}}</p>\\\\n<p><strong>E-Mail: </strong>anika.szokoll@hotmail.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-26T20:30:00.769539+02:00\\\", \\\"owner\\\": 1714317, \\\"created_by\\\": 1714317, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-25T18:19:36.816769+00:00\\\", \\\"updated\\\": \\\"2025-06-25T18:19:36.952961+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 1714317,\n            \"updated\": \"2025-06-25T20:19:37.768043+02:00\",\n            \"created\": \"2025-06-25T20:19:37.768030+02:00\",\n            \"request\": 1294731\n        },\n        {\n            \"uuid\": \"a2b2d0c3-5046-11f0-96f3-a00eda085ed5\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1290190, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck an der Wand</p>\\\\n<p><strong>Anmerkungen</strong>: {{WS - Art}}</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: adrian.kurz@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-23T15:27:55.395621+00:00\\\", \\\"updated\\\": \\\"2025-06-23T15:27:55.501261+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-23T17:27:55.604952+02:00\",\n            \"created\": \"2025-06-23T17:27:55.604944+02:00\",\n            \"request\": 1290190\n        },\n        {\n            \"uuid\": \"0b990149-5045-11f0-acd0-c16634f29e50\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1290173, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden - es tropft von der Decke</p>\\\\n<p><strong>Anmerkungen</strong>: {{WS - Art}}</p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Alexander Koch</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 014</p>\\\\n<p><strong>Telefon</strong>: 43494315556667</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241423@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": null, \\\"owner\\\": 2853029, \\\"created_by\\\": 117223, \\\"updated_by\\\": null, \\\"created\\\": \\\"2025-06-23T15:16:32.240202+00:00\\\", \\\"updated\\\": \\\"2025-06-23T15:16:32.475214+00:00\\\"}, \\\"old_status\\\": null, \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853029,\n            \"updated\": \"2025-06-23T17:16:32.603201+02:00\",\n            \"created\": \"2025-06-23T17:16:32.603192+02:00\",\n            \"request\": 1290173\n        },\n        {\n            \"uuid\": \"3fa29916-4b4f-11f0-8b6e-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Test der Benachrichtigungsfrequenz Schwarzes Brett\",\n            \"text\": \"<span class=\\\"bar__title-text\\\">Test der Benachrichtigungsfrequenz Schwarzes Brett</span>\",\n            \"files\": [],\n            \"buildings\": [\n                240902\n            ],\n            \"audience\": [\n                4,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-17T09:46:59.060925+02:00\",\n            \"created\": \"2025-06-17T09:46:59.060913+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"d16ae152-4b4d-11f0-b25b-0a58a9feac02\",\n            \"type\": 1,\n            \"title\": \"Test der Benachrichtigungsfrequenz Schwarzes Brett\",\n            \"text\": \"<p>Test</p>\",\n            \"files\": [],\n            \"buildings\": [\n                240902\n            ],\n            \"audience\": [\n                4,\n                7\n            ],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-17T09:46:19.356270+02:00\",\n            \"created\": \"2025-06-17T09:36:44.649824+02:00\",\n            \"request\": null\n        },\n        {\n            \"uuid\": \"765283c8-4abd-11f0-b9a2-0a2dc0c63316\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:24.235573+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853023,\n            \"updated\": \"2025-06-16T16:23:24.288578+02:00\",\n            \"created\": \"2025-06-16T16:23:24.288565+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"761c03cb-4abd-11f0-b9a1-0a2dc0c63316\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:23.860697+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-16T16:23:23.931298+02:00\",\n            \"created\": \"2025-06-16T16:23:23.931284+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"75ecc69d-4abd-11f0-b9a0-0a2dc0c63316\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:23.567505+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853117,\n            \"updated\": \"2025-06-16T16:23:23.621721+02:00\",\n            \"created\": \"2025-06-16T16:23:23.621706+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"75b59645-4abd-11f0-b99f-0a2dc0c63316\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164889, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:47:12.287564+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:23.205284+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:23:23.259893+02:00\",\n            \"created\": \"2025-06-16T16:23:23.259881+02:00\",\n            \"request\": 1164889\n        },\n        {\n            \"uuid\": \"75864f05-4abd-11f0-b99e-0a2dc0c63316\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:22.885114+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853018,\n            \"updated\": \"2025-06-16T16:23:22.950546+02:00\",\n            \"created\": \"2025-06-16T16:23:22.950531+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"754c97e0-4abd-11f0-88c4-a0b18ab1b120\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 2, \\\"due_date\\\": \\\"2025-06-23T12:00:00+02:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:23:22.517876+00:00\\\"}, \\\"old_status\\\": \\\"opened\\\", \\\"new_status\\\": \\\"scheduled\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853114,\n            \"updated\": \"2025-06-16T16:23:22.571958+02:00\",\n            \"created\": \"2025-06-16T16:23:22.571945+02:00\",\n            \"request\": 1271375\n        },\n        {\n            \"uuid\": \"d50b729e-4abc-11f0-855a-78f3cbc6f681\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:53.685461+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853114,\n            \"updated\": \"2025-06-16T16:18:53.709405+02:00\",\n            \"created\": \"2025-06-16T16:18:53.709391+02:00\",\n            \"request\": 1271375\n        },\n        {\n            \"uuid\": \"d4ef7328-4abc-11f0-8559-78f3cbc6f681\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:53.501799+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853018,\n            \"updated\": \"2025-06-16T16:18:53.525896+02:00\",\n            \"created\": \"2025-06-16T16:18:53.525884+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"d4d29c07-4abc-11f0-8558-78f3cbc6f681\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164889, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:47:12.287564+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:53.310112+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:18:53.337067+02:00\",\n            \"created\": \"2025-06-16T16:18:53.337051+02:00\",\n            \"request\": 1164889\n        },\n        {\n            \"uuid\": \"d4b47054-4abc-11f0-8557-78f3cbc6f681\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:53.112324+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853117,\n            \"updated\": \"2025-06-16T16:18:53.139192+02:00\",\n            \"created\": \"2025-06-16T16:18:53.139177+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"d4962641-4abc-11f0-8556-78f3cbc6f681\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:52.902733+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-16T16:18:52.940919+02:00\",\n            \"created\": \"2025-06-16T16:18:52.940907+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"d44921ea-4abc-11f0-8fdd-57fda9d6a61f\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 1, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:18:52.407141+00:00\\\"}, \\\"old_status\\\": \\\"completed\\\", \\\"new_status\\\": \\\"opened\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853023,\n            \"updated\": \"2025-06-16T16:18:52.435953+02:00\",\n            \"created\": \"2025-06-16T16:18:52.435943+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"307976c6-4abc-11f0-9feb-88999f4b1a60\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:17.573859+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853098,\n            \"updated\": \"2025-06-16T16:14:17.606387+02:00\",\n            \"created\": \"2025-06-16T16:14:17.606375+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"306e20ac-4abc-11f0-9fea-88999f4b1a60\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1078611, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: </p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853098, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-03-02T14:47:41.124922+00:00\\\", \\\"updated\\\": \\\"2025-04-09T16:09:32.618021+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:14:17.567726+02:00\",\n            \"created\": \"2025-06-16T16:14:17.533720+02:00\",\n            \"request\": 1078611\n        },\n        {\n            \"uuid\": \"3049d5bc-4abc-11f0-9fe9-88999f4b1a60\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:17.262185+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853023,\n            \"updated\": \"2025-06-16T16:14:17.295443+02:00\",\n            \"created\": \"2025-06-16T16:14:17.295432+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"30418ad7-4abc-11f0-9fe8-88999f4b1a60\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164705, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserfleck</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853023, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T09:33:54.092413+00:00\\\", \\\"updated\\\": \\\"2025-06-12T14:07:35.387763+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:14:17.256453+02:00\",\n            \"created\": \"2025-06-16T16:14:17.241513+02:00\",\n            \"request\": 1164705\n        },\n        {\n            \"uuid\": \"301ee987-4abc-11f0-9fe7-88999f4b1a60\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:16.975238+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853117,\n            \"updated\": \"2025-06-16T16:14:17.013167+02:00\",\n            \"created\": \"2025-06-16T16:14:17.013155+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"30160b8f-4abc-11f0-9fe6-88999f4b1a60\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-12T14:07:36.646366+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:14:16.969647+02:00\",\n            \"created\": \"2025-06-16T16:14:16.956585+02:00\",\n            \"request\": 1164883\n        },\n        {\n            \"uuid\": \"2fefc0cb-4abc-11f0-9fe5-88999f4b1a60\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164889, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 117223, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:47:12.287564+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:16.663716+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:14:16.703879+02:00\",\n            \"created\": \"2025-06-16T16:14:16.703867+02:00\",\n            \"request\": 1164889\n        },\n        {\n            \"uuid\": \"2fca759e-4abc-11f0-9fe4-88999f4b1a60\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:16.378468+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853018,\n            \"updated\": \"2025-06-16T16:14:16.459523+02:00\",\n            \"created\": \"2025-06-16T16:14:16.459510+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"2fb521d9-4abc-11f0-9fe3-88999f4b1a60\",\n            \"type\": 5,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164872, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853018, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:40:40.634882+00:00\\\", \\\"updated\\\": \\\"2025-06-12T14:07:38.386056+00:00\\\"}, \\\"rating\\\": null}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 117223,\n            \"updated\": \"2025-06-16T16:14:16.361480+02:00\",\n            \"created\": \"2025-06-16T16:14:16.326435+02:00\",\n            \"request\": 1164872\n        },\n        {\n            \"uuid\": \"2f7d76a5-4abc-11f0-a671-27f97229c04c\",\n            \"type\": 3,\n            \"title\": \"Versicherung: Wasserschaden\",\n            \"text\": \"{\\\"request\\\": {\\\"id\\\": 1271375, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Amelie Wolf</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 039</p>\\\\n<p><strong>Telefon</strong>: 434916155566677</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241451@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853114, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-06-10T13:30:01.020188+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:15.897728+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n            \"files\": [],\n            \"buildings\": [],\n            \"audience\": [],\n            \"date_from\": null,\n            \"date_to\": null,\n            \"created_by\": 2853114,\n            \"updated\": \"2025-06-16T16:14:15.954843+02:00\",\n            \"created\": \"2025-06-16T16:14:15.954832+02:00\",\n            \"request\": 1271375\n        }\n    ]\n}"}],"_postman_id":"73a27302-4cd8-4700-9b93-0ccf7ee3bd33"},{"name":"Create a post","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"7d56ba7c-7b76-4e43-bc2e-8dfe93d98b43"}}],"id":"e3502521-bba3-4fa2-ac7c-3a8ad33b9c6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"title\":\"string\",\"text\":\"string\",\"audience\":\"array\",\"buildings\":\"array\",\"files\":\"array or null\"}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/","description":"<h4 id=\"description\">Description</h4>\n<p>To create a post you have to provide the following data:</p>\n<ul>\n<li><p>Post title;</p>\n</li>\n<li><p>Post content;</p>\n</li>\n<li><p>Audience (limit post visibility to a group of users);</p>\n</li>\n<li><p>Building (limit post visibility to buildings);</p>\n</li>\n<li><p>Attachments (files)</p>\n</li>\n</ul>\n<h4 id=\"endpoint\"><strong>Endpoint:</strong></h4>\n<p><code>POST /api/rest/v1/posts/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>title</code> (string, <strong>required</strong>) — Post title.</p>\n</li>\n<li><p><code>text</code> (string, optional) — Post content. Supports HTML formatting.</p>\n</li>\n<li><p><code>audience</code> (array of integers, optional) — List of audience identifiers the post is targeted to.</p>\n</li>\n<li><p><code>buildings</code> (array of integers, optional) — List of building identifiers. If the list is empty, the post applies to all buildings</p>\n</li>\n<li><p><code>files</code> (array or null, optional) — List of file identifiers attached to the post.</p>\n</li>\n<li><p><code>request</code> (integer, optional) — Identifier of the related request.</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>uuid</code> (string) — Unique identifier of the post.</p>\n</li>\n<li><p><code>type</code> (integer) — Type of the post. Possible values:</p>\n<ul>\n<li><p><code>1</code> — post</p>\n</li>\n<li><p><code>3</code> — request status changed</p>\n</li>\n<li><p><code>4</code> — digital board post</p>\n</li>\n<li><p><code>5</code> — feedback post</p>\n</li>\n<li><p><code>6</code> — feedback</p>\n</li>\n<li><p><code>7</code> — ticker</p>\n</li>\n</ul>\n</li>\n<li><p><code>text</code> (string) — Post content. Supports HTML formatting.</p>\n</li>\n<li><p><code>title</code> (string) — Post title</p>\n</li>\n<li><p><code>files</code> (array of integers) — List of file identifiers attached to the post.</p>\n</li>\n<li><p><code>audience</code> (array of integers) — Target audience identifiers.</p>\n</li>\n<li><p><code>buildings</code> (array of integers) — List of building identifiers. If the list is empty, the post applies to all buildings.</p>\n</li>\n<li><p><code>date_from</code> (string or null) — Start date and time when the post becomes active.</p>\n</li>\n<li><p><code>date_to</code> (string or null) — End date and time when the post expires.</p>\n</li>\n<li><p><code>created_by</code> (integer) — Identifier of the user who created the post.</p>\n</li>\n<li><p><code>updated</code> (string) — Date and time when the post was last updated.</p>\n</li>\n<li><p><code>created</code> (string) — Date and time when the post was created.</p>\n</li>\n<li><p><code>request</code> (integer) — Identifier of the related request.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","posts",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"9f2ac992-6485-4aca-9565-f5911ff8b6b7","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"buildings\": [12900],\n    \"files\": [],\n    \"audience\": [5],\n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"title\": \"Post for employers \"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"uuid\": \"de1c9882-5322-11f0-a988-0242ac120008\",\n    \"type\": 1,\n    \"title\": \"Post for employers\",\n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"files\": [],\n    \"buildings\": [\n        12900\n    ],\n    \"audience\": [\n        5\n    ],\n    \"date_from\": null,\n    \"date_to\": null,\n    \"created_by\": 55637,\n    \"updated\": \"2025-06-27T08:49:26.889977+02:00\",\n    \"created\": \"2025-06-27T08:49:26.889960+02:00\",\n    \"request\": null\n}"}],"_postman_id":"e3502521-bba3-4fa2-ac7c-3a8ad33b9c6a"},{"name":"Retrieve one post by ID","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"fdb9aab6-ee6e-42a9-915c-f9fcc8ba0b2a"}}],"id":"19dc6f81-a2ff-40fe-9ec2-b1804af48db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/{post_uuid}/","description":"<p>Post details.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/posts/{post_uuid}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><code>post_uuid</code>(string, <strong>required</strong>)</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>uuid</code> (string) — Unique identifier of the post.</p>\n</li>\n<li><p><code>type</code> (integer) — Type of the post.</p>\n<ul>\n<li>Possible values:<code>1</code> — post<code>3</code> — request status changed<code>4</code> — digital board post<code>5</code> — feedback post<code>6</code> — feedback<code>7</code> — ticker<code>title</code> (string) — Post title</li>\n</ul>\n</li>\n<li><p><code>text</code> (string) — Post content. Supports HTML formatting.</p>\n</li>\n<li><p><code>files</code> (array of integers) — List of file identifiers attached to the post.</p>\n</li>\n<li><p><code>audience</code> (array of integers) — Target audience identifiers.</p>\n</li>\n<li><p><code>buildings</code> (array of integers) — List of building identifiers. If the list is empty, the post applies to all buildings.</p>\n</li>\n<li><p><code>date_from</code> (string or null) — Start date and time when the post becomes active.</p>\n</li>\n<li><p><code>date_to</code> (string or null) — End date and time when the post expires.</p>\n</li>\n<li><p><code>created_by</code> (integer) — Identifier of the user who created the post.</p>\n</li>\n<li><p><code>updated</code> (string) — Date and time when the post was last updated.</p>\n</li>\n<li><p><code>created</code> (string) — Date and time when the post was created.</p>\n</li>\n<li><p><code>request</code> (integer) — Identifier of the related request.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","posts","{post_uuid}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"8309e8ca-3703-47ac-9144-241de853b38b","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/301ee987-4abc-11f0-9fe7-88999f4b1a60/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"uuid\": \"301ee987-4abc-11f0-9fe7-88999f4b1a60\",\n    \"type\": 3,\n    \"title\": \"Versicherung: Wasserschaden\",\n    \"text\": \"{\\\"request\\\": {\\\"id\\\": 1164883, \\\"title\\\": \\\"Versicherung: Wasserschaden\\\", \\\"text\\\": \\\"<p>Ein Wasserschaden wurde in der Liegenschaft Rosenweg 8, 23456 Blumenau gemeldet:</p>\\\\n<p> </p>\\\\n<p><strong>Art des Schadens</strong>: Wasserschaden</p>\\\\n<p><strong>Anmerkungen</strong>: </p>\\\\n<p><strong>Schadennummer</strong>: </p>\\\\n<p> </p>\\\\n<p>--</p>\\\\n<p><span style=\\\\\\\"text-decoration: underline;\\\\\\\"><strong>Daten vom Schadensmelder: </strong></span></p>\\\\n<p>Name: Adrian Kurz</p>\\\\n<p><strong>Adresse</strong>: Rosenweg 8, 23456 Blumenau</p>\\\\n<p><strong>Wohnungs-Nr</strong>.: 078</p>\\\\n<p><strong>Telefon</strong>: 43494313344556</p>\\\\n<p><strong>E-Mail</strong>: noreply+1812241494@idwell.com</p>\\\", \\\"status\\\": 3, \\\"due_date\\\": \\\"2025-07-28T10:00:00+00:00\\\", \\\"owner\\\": 2853117, \\\"created_by\\\": 117223, \\\"updated_by\\\": 117223, \\\"created\\\": \\\"2025-04-11T10:43:46.683739+00:00\\\", \\\"updated\\\": \\\"2025-06-16T14:14:16.975238+00:00\\\"}, \\\"old_status\\\": \\\"scheduled\\\", \\\"new_status\\\": \\\"completed\\\"}\",\n    \"files\": [],\n    \"buildings\": [],\n    \"audience\": [],\n    \"date_from\": null,\n    \"date_to\": null,\n    \"created_by\": 2853117,\n    \"updated\": \"2025-06-16T16:14:17.013167+02:00\",\n    \"created\": \"2025-06-16T16:14:17.013155+02:00\",\n    \"request\": 1164883\n}"}],"_postman_id":"19dc6f81-a2ff-40fe-9ec2-b1804af48db5"},{"name":"Get a list of available post audience","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"e3312607-0acb-4220-905b-071cac284fc1"}}],"id":"72b2a5a9-798d-4d93-ac2e-323eb5fc61c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/audience/","description":"<p>Paginated list of available post audience.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/posts/audience/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code>(integer)</p>\n</li>\n<li><p><code>pages</code>(integer)</p>\n</li>\n<li><p><code>results</code>(array[object])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>title</code>(string) 1 - to all friends, 2 - to all colleagues, 3 - to signed up dwellers, 4 - to not signed up dwellers, 5 - to digital board, 6 - to signed up landlords, 7 - to not signed up landlords.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","posts","audience",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"815340ea-8db9-4ab2-a888-c2a1d04b8237","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/posts/audience/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 7,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 1,\n            \"title\": \"ToAllFriends\"\n        },\n        {\n            \"id\": 2,\n            \"title\": \"ToAllColleagues\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"ToSignedUpDwellers\"\n        },\n        {\n            \"id\": 4,\n            \"title\": \"ToNotSignedUpDwellers\"\n        },\n        {\n            \"id\": 5,\n            \"title\": \"ToDigitalBoard\"\n        },\n        {\n            \"id\": 6,\n            \"title\": \"ToSignedUpLandlords\"\n        },\n        {\n            \"id\": 7,\n            \"title\": \"ToNotSignedUpLandlords\"\n        }\n    ]\n}"}],"_postman_id":"72b2a5a9-798d-4d93-ac2e-323eb5fc61c1"}],"id":"1ce9545f-c393-4fff-a775-a6705319fde1","description":"<h2 id=\"description\">Description</h2>\n<p>The post contains an informational message from one user to other users. Posts can be generated automatically by the system (System Posts).</p>\n<h4 id=\"types-of-posts\">Types of posts</h4>\n<p>User posts are created by users in the system:</p>\n<ul>\n<li><p><strong>Posts</strong> — posts that are displayed in the feed in the system, and can also be broadcast on TV screens.</p>\n</li>\n<li><p><strong>TV ticker</strong> — posts of limited length that are used as a running line on the TV screen</p>\n</li>\n</ul>\n<p>System posts are generated automatically by the system when a certain event occurs.:</p>\n<ul>\n<li><p><strong>Welcome post</strong> — the user is registered</p>\n</li>\n<li><p><strong>Service request status post</strong> — the status of the request has been changed</p>\n</li>\n<li><p><strong>Rating post</strong> — the status of the terminal application has been changed and a rating is required (for residents)</p>\n</li>\n</ul>\n<h5 id=\"types-of-posts-in-the-database\">Types of posts in the database</h5>\n<ul>\n<li><p><strong>Post</strong> — [1] post — a post to display in the users' news feed in the system [by default]</p>\n</li>\n<li><p><strong>Service request post</strong> — [3] request_status_changed — posts automatically generated when the request status changes</p>\n</li>\n<li><p><strong>TV post</strong> — [4] digital_board_post — a post to display on the Digital board (TV screens located directly in buildings)</p>\n</li>\n<li><p><strong>TV ticker</strong> — [7] ticker — a ticker post on the Digital board</p>\n</li>\n</ul>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get list of created posts</td>\n<td><code>/api/rest/v1/posts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to available posts</td>\n</tr>\n<tr>\n<td>Create a post</td>\n<td><code>/api/rest/v1/posts/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Create posts only for assigned building groups and buildings</td>\n</tr>\n<tr>\n<td>Retrieve one post by ID</td>\n<td><code>/api/rest/v1/posts/{post_uuid}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access to posts related to assigned building groups and buildings only</td>\n</tr>\n<tr>\n<td>Get a list of available post audience</td>\n<td><code>/api/rest/v1/posts/audience/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Read access</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><code>post_uuid</code></li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p>get a list of posts</p>\n</li>\n<li><p>get a specific one by a unique identifier <code>post_uuid</code></p>\n</li>\n<li><p>create a post</p>\n</li>\n<li><p>get the audience directory</p>\n</li>\n</ul>\n","_postman_id":"1ce9545f-c393-4fff-a775-a6705319fde1"},{"name":"Files(v1)","item":[{"name":"Get a list of files","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"12428c30-2474-491c-9abb-471c50108b79"}}],"id":"e108e237-a705-474d-a00f-1bb765b4552f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/?parent={{parent}}&external_id=some_external_id_1002","description":"<blockquote>\n<p><strong>⚠️ Deprecation notice:</strong> This endpoint will be deprecated soon and replaced with an updated version. </p>\n</blockquote>\n<p>Get a list of files</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/files/?parent={{parent_id}}</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li><p><code>parent_id</code> (string) – Parent directory ID.</p>\n</li>\n<li><p><code>external_id</code> (string) – External identifier to filter files. Parameter for searching by external_id</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>count</code> (number, <strong>required</strong>) — Total number of objects.</p>\n</li>\n<li><p><code>pages</code> (number, <strong>required</strong>) — Total number of pages.</p>\n</li>\n<li><p><code>results</code> (array of objects, <strong>required</strong>) — &gt;=1 oblects. List of directory content. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>origin</code> (string)</p>\n</li>\n<li><p><code>filename</code> (string)</p>\n</li>\n<li><p><code>mime_type</code> (string)</p>\n</li>\n<li><p><code>size</code> (integer)</p>\n</li>\n<li><p><code>width</code> (integer)</p>\n</li>\n<li><p><code>height</code> (integer)</p>\n</li>\n<li><p><code>parent_id</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>available_to_dweller</code> (boolean) Default:true</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Parent directory ID.</p>\n","type":"text/plain"},"key":"parent","value":"{{parent}}"},{"description":{"content":"<p>Parameter for searching by external_id</p>\n","type":"text/plain"},"key":"external_id","value":"some_external_id_1002"}],"variable":[]}},"response":[{"id":"a06c9656-af25-4165-a61b-dd05f9608011","name":"Get a list of files","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/?parent=905332","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","files",""],"query":[{"key":"parent","value":"905332","description":"Parent directory ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 16,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 322644,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2020/01/Nutzwertgutachten.pdf?Expires=1754029702&Signature=sQrHwvLFPxpUHKUuez3KXQRYBKyzlHPCsQT5OhIo3UWZzDO13HSgF~vrx2EpBMmZREcBCwlEYiMVuPrgQ01eGN-Wp0Zel~8QzccT1GB~k83s6zup3Ot7fS0SKD5LK0yQpJB6pQ1Ew95MFc7VUsbim~bkZ0NtiyK3NrO7kD52KCCaTMJfbiEziWrtxVz3CjlXMIUnqL1pnQV-WNJB~qbGmSYkO1zUuv-N~Mij4hkfcXclRDJ-Q-oUjZg5naBiVoGXwLbNhfAHqo4PEJ-QP0Wrp1QVCkj9VvDAVo4ng2PdByKgXgvPZueemLKBd2s1SpUuLiz~-EC2adyFq1rvoEh4rw__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Nutzwertgutachten.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 322646,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2020/01/Wohnungseigentumsvertrag.pdf?Expires=1754029702&Signature=aTlRa8aBOhZ1ZMdcY2QdIFdJFG2vUIWu~OnZ6OaUUVo3t4-dlSm7RjVCeDnsQg3V5Do1DRWjaMFANvGNoK4V5jwCN~nIPdSJOPfER0rkWNfPXLan97f~n3HV8PGg0nqjTNwlobFKSmd3yT1ikWX6YJ8ACFr-AaDbsTtGjJOpW5aR8cNw3OM~MqcYnDoLFkkpwqPg5MU5o0kXZuL-A-edijGdtbFOBfkdkVoT4m~s6-TgDb2PUo-GSZkNWALvbO19gzC-oW4Z7ZbT38d6ogVmr~94ZeJW9HdMKJgpnipZJh1uuSsF~DepFmmyQxghiix9SLWtTa1T9xMf7kDdYLimIA__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Wohnungseigentumsvertrag.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 322647,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2020/01/Vorausschau_Kurzfassung.pdf?Expires=1754029702&Signature=fgrhFucdve1FGeD~F-Taz9EeRwwP8NQ3~fr34Eo2HWHryVv7gDqwbj64IFDaDBzhQ7Cpcs1XyykKM0wbvDlXKw7bR5U6osKU3LH-E~Nh2GDSI2hNB7rj37svTi8jGolrqnMB5kxn8~chXShmCX3Cl53M8GR96G2Puf~HjjhmVxQL1qACLEySEvFabU4yuvO1pKRDw2x0wBWH6fTTVEcNnB5FEKc72cHJ02r5ON1kv0KsI~b71jUVQLBkVqaoM3i-Vga5Lkmcq8iwIF6uaAV7BYcJRM2mSq30QzLoW4RwdAEd6Z7Cmk4GQ-Ek9d7dUNkXgU62Nirprsnx7igWrZxgJQ__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Vorausschau_Kurzfassung.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 322648,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2020/01/Wartungsvertrag_irkKRFX.pdf?Expires=1754029702&Signature=N4jQhuwED6AqcBTOYU1bqnJsjZxL5~b2eR3msEc56xTEaHbhUZH0HEMPx-Wy6ZKOwDnVHt8lhqOIt01hC6tACpFEdhSzkGarn9sOnljqopuZm0edb~9Xb2lGM9bH4lt9eD-b6dzYahrV21EP39vsMPsv7FtKK5CR4WM-~wkwOjbXyS1Li~YCLK4cgNW~mcwgrQNZruNM6HVWdPKOOgQ-sh5eDFnZBhY0EtJxnluv6PkTq2ga9g~ltPKyYBWXdoaib3vizVj-OmGaNU4r8e6Xjbuy3ibidyEGWiQYzQFHeohBWuRDLFxbRR-FUPG7s0EPQeC4kP1oNI9XhfX9js07~A__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Wartungsvertrag.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 2354577,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2021/03/Muster-Tagesordnungspunkte-au%C3%9Ferordentliche-Eigent%C3%BCmerversammlung.png?Expires=1754029702&Signature=rcn2O3Dihn6sj6ZZRArwwBcR1foXM6-3EEoYuWLuIO7hfRu7b72pvanghd6hsK4EwNU4K6POXmp63ipbzZaVBeUzDNTR4YLnKUvtWGKQFspGD4oJCvYoCFoMfw8cBHUXUSWXzzl9q1k4IlwAvjhcIrFjMzQOTJihlH4YHB6lnjQ7k4eooqBRgU3OVfX3Pw7ph-UDmw0rn3L9qEu3QJnF3307TE74qsTitYN2ej8duQpGTWbVsQv7zMu1OftkNsmatslnEOmZcZXldiNYZYaUls-gVfOb7GNc-CWsSf97~iLrkwUAPQuriJiZabZXfi5Js-HPdWSvJfDVFa98z1735w__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Muster-Tagesordnungspunkte-außerordentliche-Eigentümerversammlung.png\",\n            \"mime_type\": \"image/png\",\n            \"size\": 60306,\n            \"width\": 724,\n            \"height\": 1024,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 6702821,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2022/03/Z%C3%A4hlerwechsel_nfjyyrO.pdf?Expires=1754029702&Signature=hw2qmKXnMlIVBc52977WkPbLjPxgrAxWZM~04ate~gjAMq25-CEqA0oY3TunKqlFCaSh7qgiLFnUXYhcwjpipoRD14xxoHw1PolA59zAKXujv1S9IrxbF59QCTraVk9oLI9XuPom3Kr8noCcAtd4nhFcJjvydFZhYaC0OYcnzeGdRKJfYhcgwlcG4S-qiD4sGu3cFsnAj8abWALey3GXe05uhY6Qn7dKORA4cE4g0Cu-FstcgxjMRjWjfQjcG8L3t-mwdFy0NzVfG0kIb8k0VDE92s6J1RiYyIkQPox14Jj2bipEu74iQ4~w4EYRWOMUJy1-tUG2aAuNpwnm~2U8-g__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Zählerwechsel.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 570252,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175676,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Energieausweis.pdf?Expires=1754029702&Signature=lmLRFvSAy0nQPHqcZhCkAG-xUYCSk5OXa7K0oXZQxBpVvBWVrGkUIV8~OTQpxOyZNsEGa4FgmoFl5YURD2ccphulpimCDT1CphcrsbaUtRBBTFNaWh~h8PUvy1UWt9w9NqTGxbFhhbZFdf~MDqsnmKd0uPRpbSaYvirTgoTSD8Ipv~UuheSS9VY9e~JJ0BKxi3N9q-QyTM0vBujngktnpp3Ytd9s9KWPxGPOeKKdvjvIEhN40WCDN1I62TUXEMsXa7h~2Zb93fr6OkNsh4luXECDbkrj1pL1xJj7dGxUp-q3Pr-IZqPREHpIKTEPO0OmrKkRGhWmpaS9G~AyqJfsQQ__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Energieausweis.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175677,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Notfallnummern.pdf?Expires=1754029702&Signature=Ts1uisPpiYE8~iglBhZP6SmUwlX9FYuhFW11144T0HBSDP-Iol7upLAMb1TRvttRbZUPnzsTylZv9lAZHutFRcrL8YJszT3EJlTOEDDx9VKVG~LhmsfddcgPZc2tPBZPl0vXkYqHy5w96UxndsUoYeOcjZrRnqlbSgqHYB9U~KoFD4u6H09CoNEWEXVAbIp0H5w2V6Se6b3b4x~osmoo2p5jwXUYrWjmefNIpSt2NGdrMK~y5V67FymhqJZ-ifyFRjgDYCQw3MpON~pCPQUEKCaBl7bHzFI0jG7JtaQ6jmdNv34USQzKZu0zRCOV5Le2fefjhdZfUc~D99pY~d2iEA__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Notfallnummern.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175683,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Nutzwertgutachten.pdf?Expires=1754029702&Signature=cXDojcjILE~hQNBwcsMwOyG-e2FRuU-8JE-Js5Sdt8Ovx~Hm8pUmF~86atwp2uDlhOOa1AWlCf6HhGmfd4L~BizJfqxya1W0ribvXLYLqILFWH5txSCdU9fSSHy8ELbftuvA-ZVtWuGlGfVJfnA-BYmsR-yVqV1yIl858TOGp48FeDP-62T5iP4kY~0~uXtbQsnxzNeO2r4o3PKK6TtgGySQO~e1leth2xa9uTLYuC5GnGASayhthdt41vV5j0YOEwH1V5I--A7rUMKF665~sHe72zZPkSRZhBdRaDBec1K14uChHbVR0XFPvFCJfg~sswJe-3aMjv-oHHJCKey5LA__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Nutzwertgutachten.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175684,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Wartungsvertrag.pdf?Expires=1754029702&Signature=dELGN~k2hJBa7isgT9kwix3XWTwElc54vUziENsKldK-7L0sQ1L~CAqKuSVtD-miZmsvc~uABZHNCW7cR7cxd-8RKmOMaEikmBLUNyDlU~oJ5p7Nca0CbJV420NpUZU2hefBiOARh4Ya3gZZModStraZ6GtHCwF-2TbJU75oWptRLLtGy-Ni1y0Kq4i7rgL4CQH55HXGQhMzzf73OKjrnnh1Zw8bzEAM1LH6b9symOI4mzYTIXH9xbrxQfRBFhxafXlp2pUDYuyOHr5l1a4Yjx~rnxSHJKYFB1RermrGt80BPHoqtpwC0IO5q7KAwIAipKg8CBf1MRSHbxf76fOx5A__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Wartungsvertrag.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175685,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Muster-Tagesordnungspunkte-au%C3%9Ferordentliche-Eigentumerversammlung.png?Expires=1754029702&Signature=l0eymIkafF8m~Qz1d2u-skBZHJWKrEEV3nu-OpceBG0vMb~9BLMNmx7Lf5DAEeoK5bsDGDp0XWqlWvUZepbkvywhIGAprbcVX6j95v6gDV3vA8aOlWkWOjwoAPVtmqS3HYz3eI-S9rDZ4i~Wk68qo-exMU8IwCb-K518bRAUPjqIS~eFU39ZNO~Hpu~SYk0QB2HwPDcFYnwpVjwxT~0I83FBFTEphjYVWMXQCsJvIKyeTOCWfJvOeI5Vnyqsi2-c17gHefUxvmEswInHfhCi0Lg4rDvblixemr3Vv0pWkOs0S2l9kRq9zJkUadnJOSzLcuMPjwjJ7GYfr5fGQB0abw__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Muster-Tagesordnungspunkte-außerordentliche-Eigentümerversammlung.png\",\n            \"mime_type\": \"image/png\",\n            \"size\": 60306,\n            \"width\": 724,\n            \"height\": 1024,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175689,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Wohnungseigentumsvertrag.pdf?Expires=1754029702&Signature=EQp0TcOlrFDAZW~9XiE0dlSZIE9GabQAQxn7kqnLvFn4O0XgFk2kHkAYqfNYhEBGwePfNI0zBXWEqltxXsP2OWh7UmgPEHTHBKw-dtKcCrYYCi1wY0J44A4dc5ha0ABvOhcOUX33EjWeglRDR4MHmIi-nJyLJLpXohjMN8pMtN-pGlQrGMT-X9gqMKhCUKYbS3nGYsq3E3FVlKu5KbZU4noMbszgLOgJGGJoDrUNsM4TSS8IedUzHFh0leqTj21-fKGv~t2VMjwCuQC3P-bpwHxQv7HsYxli6WAmKTUJ-lycvZAowuIUjC12RMQZGXt6GyuRwMTayzeGuWcze8~lig__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Wohnungseigentumsvertrag.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 25733,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175690,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Versicherungspolizze_MUSTER.png?Expires=1754029703&Signature=GVS-03Bu-D6EOyhRXTPipcM9YzcApeSl-yBH5zHzrxLUA5dK~~i2~Rlop59GSzesszRaSxNcfBBOwlNNDv0uMNjEFNx-bCnQ6kfV2LOzONfjtmhZ6UUix7iwWsyXW01t1Gzme6LHjTOJj9yFZDHVF5KoeRdpdE42U6QVPm6l8lyuXL5n9xaXPHdZwG4FosDGb5767T3RY9qij58sEyYi73iIw9v~pHlQm6Ljj5BjOWENMKtCvCCRznQgArwqrvHq9s8EfubWokDdctcfbfqzfy-XOCZp8gHMFcmTWluE4yNvePoN84jXM4Fs0Ulvg4o1PmAo3Td6-jNZl7s-jPDy4g__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Versicherungspolizze_MUSTER.png\",\n            \"mime_type\": \"image/png\",\n            \"size\": 221460,\n            \"width\": 705,\n            \"height\": 940,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 32175691,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/Verwaltervertrag_MUSTER.png?Expires=1754029703&Signature=il2G3GtzKHhWQDHt7uXzaP4bZnWAwCT1r8RG5wfSCWNhQVz9CQp84WhnxlCH2B3V9meeGlzq1FQV81QfbzpR-fmWMjTN-vmjpPJMdFjUOVDIcRvBVAlgc6qzVSUsy7YUyEgiQ3w3z~1vTULBfmpxcu-2XLFTKtAFzVTXmmDSmUXdTSmqpOoFV6D6gy28QJkFKBwFqg61xDBNEHPa7S5L8HhhPxMJtDCyaAGxT1u08Z4xFvLGMXW5jBY4GeyMleicf~aH30XBWN~jHk3KYl04r85IC~5KMbIZMRAApZX88fk615jP4ZVSx1DkBxmcu2~i8Mg4ylpzavdxoE7CLSiSGg__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Verwaltervertrag_MUSTER.png\",\n            \"mime_type\": \"image/png\",\n            \"size\": 186447,\n            \"width\": 435,\n            \"height\": 632,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 33193242,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2023/04/BWS_Schadensanierung_Rechnung_JU7vNAK.pdf?Expires=1754029703&Signature=QxlNN9l5osYQII863tXqCIbPivsAaAKtWhMjXZvQzAix~IhbEE2V6eJ7JKr72sJ6e8r6TiIIQggd-1duMPTUfuIqogqekI5miqYoj~jQF0utZFwzPTF8BVWF1mQUSp3A9333B4P5aGiFUhackiX610kTrsrXNCdSHFOB3InsfOi2g0sJR8dPLA2kFTXwSZKfItSxoutTswtFe9XykYxUyRSJ0~d9x9njEM4lg3n5RWbXbqTA0jdqjRX8ZpgwOG4gpGNvInCunRDGctBiFbcIpvsUAG8AJV5zloY04SX7d~rqz8Yw0gyQtMr-SR71bGUDZ0pbGLSJ5a2teUXzINbYHA__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"BWS Schadensanierung Rechnung.pdf\",\n            \"mime_type\": \"application/pdf\",\n            \"size\": 93095,\n            \"width\": null,\n            \"height\": null,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        },\n        {\n            \"id\": 113814271,\n            \"origin\": \"https://files.idwell.com/demo.idwell.at/private/default/building/9057/2025/4/Idwell%2BApp%20(2)_kignS6E.png?Expires=1754029703&Signature=d8Pchd0-8o6hRpg-bd9VVIkkcIj9230K7fxpUaGi97P5zbQMAiV86bRZ700F6sJF2V1TaQuxNpWvpQVFrqiyOOQpXjkigV-Bf0cBeTrYRrXxLPN7KnB8wjecTXXWTdMrCrkxLHU-y7Ja1uV59d-n3pAHv0KOPaGASzaF3EKTu4bkxri5GWjXy-3v~yN3akFALM5wDtkSP-oRMCwqt-U7FuAmkGwgc3h7Gk9adXEjCELB6T0ro~w~Fuss~frC20wb~l89S2BdhacAdWMqONhn9g2Mek60FFdsW4L9Q-oVon~ac3aBT0uqE1i6ZAijD9D0mBWPtjGJbspScyyAwYLRVQ__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n            \"filename\": \"Idwell+App (2).png\",\n            \"mime_type\": \"image/png\",\n            \"size\": 21345,\n            \"width\": 1247,\n            \"height\": 480,\n            \"parent_id\": 905332,\n            \"external_id\": null,\n            \"available_to_dweller\": false,\n            \"available_to_landlord\": false\n        }\n    ]\n}"}],"_postman_id":"e108e237-a705-474d-a00f-1bb765b4552f"},{"name":"Upload a file","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"f7fbfcf1-e577-4d82-b0c8-fb00eb94e618"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"8ca2ce56-3ae1-46e3-a07e-0242ad940a57"}}],"id":"8ee7a0d0-fed1-4850-bb80-cbf1fa4d9c85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"multipart/form-data","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"{{parent}}","type":"text"},{"key":"name","value":"Test_file_1123","type":"text"},{"key":"path","value":"[[\"lvl6\", false]]","type":"text"},{"key":"origin","type":"file","src":"postman-cloud:///1ef2d5d2-88c0-4c50-94c5-4ae2b50c4055"},{"key":"available_to_dweller","value":"false","type":"text"},{"key":"external_id","value":"some_external_id_1007","type":"text"},{"key":"action_if_exists","value":"overwrite_metadata","type":"text","uuid":"dc9a6406-f49a-4640-9b64-b6fc1e948ab6"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/","description":"<p>File Upload Documentation</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/files/</code></p>\n<p><strong>Description:</strong></p>\n<p>To use a file in further requests (POST, PUT), you must first upload it to iDWELL using this endpoint.</p>\n<p><strong>File Size Limits:</strong></p>\n<ul>\n<li><p>User avatar or building picture: up to 2.5 MB</p>\n</li>\n<li><p>Other files: up to 100 MB</p>\n</li>\n</ul>\n<p><strong>Authorization:</strong></p>\n<p>Use token-based authorization:<br /><code>Authorization: Token</code></p>\n<p><strong>Sample cURL Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -i -X POST \\\n   -H \"Authorization:Token a5bf52dbc0e636b030c30775e1504726849aa4e2\" \\\n   -H \"Content-Type:multipart/form-data\" \\\n   -F \"origin=@\\\"./important-data.xlsx\\\";type=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;filename=\\\"important-data.xlsx\\\"\" \\\n   \"https://&lt;PMC_DOMAIN&gt;/api/rest/v1/files/\"\n\n</code></pre>\n<p><strong>Request Body Parameters (form-data):</strong></p>\n<ul>\n<li><p><code>parent_id</code>: (optional) ID of the parent item.</p>\n</li>\n<li><p><code>name</code>: file name, e.g. <code>Test_file_1123</code>.</p>\n</li>\n<li><p><code>path</code>: internal file structure path, e.g. <code>[[\"lvl6\", false]]</code>.</p>\n</li>\n<li><p><code>origin</code>: path to the file (local or URL), e.g. <code>postman-cloud:///1ef9de14-ba45-4cc0-b9da-1dd23f6e4f1f</code>.</p>\n</li>\n<li><p><code>available_to_dweller</code>: Default true. whether the file is visible to the dweller (<code>true</code> / <code>false</code>).</p>\n</li>\n<li><p><code>available_to_landlord</code>: Default true. whether the file is visible to the landlord (<code>true</code> / <code>false</code>).</p>\n</li>\n<li><p><code>external_id</code>: external identifier, e.g. <code>some_external_id_100246</code>.</p>\n</li>\n<li><p><code>action_if_exists</code>: default 'skip'. conflict resolution strategy if a file with the same external_id exists. Possible values:</p>\n<ul>\n<li><p><code>overwrite</code>: fully overwrite</p>\n</li>\n<li><p><code>overwrite_data</code>: overwrite only data</p>\n</li>\n<li><p><code>overwrite_metadata</code>: overwrite only metadata</p>\n</li>\n<li><p><code>skip</code>: skip upload if file exists</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"51660006-4a3f-4141-8e0d-b69454118de5","name":"Upload a file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":""},{"key":"Content-Type","value":"multipart/form-data","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"414504","type":"text"},{"key":"name","value":"Test_file_1123","type":"text"},{"key":"path","value":"[[\"lvl6\", false]]","type":"text"},{"key":"origin","type":"file","src":["postman-cloud:///1ef2d5d2-88c0-4c50-94c5-4ae2b50c4055"]},{"key":"available_to_dweller","value":"false","type":"text"},{"key":"external_id","value":"some_external_id_1007","type":"text"},{"key":"action_if_exists","value":"overwrite_metadata","type":"text","uuid":"dc9a6406-f49a-4640-9b64-b6fc1e948ab6"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 539546,\n    \"origin\": \"https://files.idwell.at/kittensbeer.qa.idwell.at/private/default/uk/1738/image_9MAdpUx.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=%2F20250619%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20250619T123558Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaDGV1LWNlbnRyYWwtMSJHMEUCIB%2FjPBVnlXnWPS8dyG2MWYood%2BNcrtIemNKJ%2BSnuiG5uAiEA55HKILhlgXJz2%2Bo3CEj1ZnmWAT%2FAVTxtgvbd08l9uKEqxAUIpP%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAGGgw5MzgzMzMzMTUwMTEiDKrAMPJF2GtuPg6MLyqYBQt9jQXkmAMRcWS00ehwekqg07svJNsofkyHvplX4YEPwbRWYDUiaeby5ztZsaj7hLHygRfir1x6bmN6i%2FWWc0%2FTnzL1%2Bs%2BrXZ8ImkwqKqPD9fHj27%2FrKS2ofpO8hXp7QC4mTWqMAllYgyxyTUIVvoSvsMTB%2Fz%2B60WT4gJYaWI0mM5wlqu6zJE3qaKBuPNig%2BpCsBL%2FhNi5N4%2Ffz5V0w8g0rpheVK%2FvJAi9xex14SATRfi3f75JgLWyRt2KkYicx5tfKPgrFwwomRKCg2fCMm%2BX1XYGw%2BUUFt1U07y9kfxUKXUgpuWBzHy6y%2BXZD2hLeJxMyToIjQaza8K0dSVLEC3z%2BbF1CxVmdiJckJ8yolW1p6KEBDNxYbTq0zFTKxxQOa6UraSl5u3AhvsomSodM87aXMOca%2FuXPC920hEImGNyHHc%2FoKRO%2FvUxYWrccl8mp5glbnsRdjpAy0U%2F%2BxymqG33ukBTFzz5CFZocS6nHtZhY%2Fpb3O%2Bpv%2FxohzqZ4U2WvNhJv5pASwfX%2BqMcazhcfTp3NTKP%2F2tymin3An303b1mHm0aQXEvK43ej8UdT81evzthYBK%2B3hAA3Zs8VLq%2Fr1onZ1WcTbngK4xX9q0xGH5teMU0lm472IYxuxe23FEyFiLq%2F4mt7mSpSuYb91lwkIqGE3tlInD2iF0%2BoUuRZd2VGgiZn%2FFw2DPuLgwr%2F8D4J8SQOmSCxioV5CXLDKxWsPwlCZ5xCBtuS86vEEob8nsi8e90R8JhInThm6OPgrDOR2UMIFopHoJI%2BX4t3gC%2FlCr1Nor7iBFJRFcOfLyXlSE7HG8ARiXKFNjNhyqrpvT3DC1WZNgHFPLV7TG1VL3u1ZxZd4a5Fija%2B7p%2F8XrhEtg%2Ff8a9NNFbHBJowytHPwgY6sQFpTrrsGvft2epz9aW4EexAgfYl6YCGxzbA%2BhuJrKxXa58Xd%2F6w%2BZXjnfCZ%2FbBrEf4xfAAb%2FA71sM1Cv9cnNEh0WAdF39joUR5MDBSnfDrDXFj7vpZaKFVnExm9EO2xbTCWZPsYuC9OHquMZMeQM2CjglZtz5vteJH5c0qHTPRGXXC4rAI3p0dA2C8%2Btz%2F5xSArDL57r9Rw0Q4tzNkiaIRnZCis4YJjevX0AoyiE383RZo%3D&X-Amz-Signature=59c2021bbc00afbdd6eddd91c023b6e19330fe278e513267cd9dd9f2af621681\",\n    \"filename\": \"Test_file_1123\",\n    \"mime_type\": \"image/png\",\n    \"size\": 45503,\n    \"width\": 773,\n    \"height\": 604,\n    \"parent_id\": 539545,\n    \"external_id\": null,\n    \"available_to_dweller\": false,\n    \"available_to_landlord\": true\n}"}],"_postman_id":"8ee7a0d0-fed1-4850-bb80-cbf1fa4d9c85"},{"name":"Attach file to building","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"dc25a634-3a05-41e6-8548-49c8e40d1593"}}],"id":"82c32133-bb60-4944-b4ed-143d6d9e3729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"text","value":"{{file_id}}"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/{{building_id}}/files/","description":"<p>Attach file to building.</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/buildings/{{building_id}}/files/</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li><code>building_id</code> (string) – Building ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>file</code> (integer) File ID</p>\n</li>\n<li><p><code>staff</code> (boolean)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","buildings","{{building_id}}","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"64b2b153-34a9-4db0-bbb6-6dca53ffaeb2","name":"Attach file to building","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":""}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"text","value":"2354577"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/buildings/290864/files/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"82c32133-bb60-4944-b4ed-143d6d9e3729"},{"name":"Attach file to flat","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"d6344341-d0fc-4279-b7ec-7aac2068a1b1"}}],"id":"c6f05e05-763a-4cc1-8b77-afa44e601149","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","value":"{{file_id}}","type":"text"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/{{flat_id}}/files/","description":"<p>Attach file to flat.</p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/flats/{{flat_id}}/files/</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li><code>flat_id</code> (string) – Flat ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>file</code> (integer) File ID</p>\n</li>\n<li><p><code>staff</code> (boolean)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","flats","{{flat_id}}","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"4415c621-7fd8-4ffa-a231-e93171056c9d","name":"Attach file to flat","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","value":"115416","type":"text"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/flats/24929/files/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"c6f05e05-763a-4cc1-8b77-afa44e601149"},{"name":"Attach file to user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"123d111d-6836-486c-87b0-9d9276dacb53"}}],"id":"2a7bd8e5-7a39-47cf-b10a-2491f94b9160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","value":"{{file_id}}","type":"text"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/{{user_id}}/files/","description":"<p>Attach file to user.</p>\n<p><strong>Endpoint:</strong><br /><code>POST</code> /api/rest/v1/users/{{user_id}}/files/</p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li>user_id (string) – User ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>file</code> (integer) File ID</p>\n</li>\n<li><p><code>staff</code> (boolean)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","users","{{user_id}}","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"dcf4ec43-0df0-46b2-9c50-c6e35a8bbd74","name":"Attach file to user","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","value":"539546","type":"text"},{"key":"staff","value":"true","type":"text"}]},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/users/32397/files/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"2a7bd8e5-7a39-47cf-b10a-2491f94b9160"},{"name":"Get file","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"6c163fee-f888-49c4-8177-cdf551d3ea89"}}],"id":"dcc2c9fa-814e-4a3c-96c1-fc578135cea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/{{file_id}}/","description":"<p>Get file detail info by file id.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/files/{{file_id}}/</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li><code>file_id</code> (string) – File ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>origin</code> (string)</p>\n</li>\n<li><p><code>filename</code> (string)</p>\n</li>\n<li><p><code>mime_type</code> (string)</p>\n</li>\n<li><p><code>size</code> (integer)</p>\n</li>\n<li><p><code>width</code> (integer)</p>\n</li>\n<li><p><code>height</code> (integer)</p>\n</li>\n<li><p><code>parent_id</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>available_to_dweller</code> (boolean) Default:true</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","files","{{file_id}}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"997c5e3d-90df-41e6-ae35-81a50900f692","name":"Get file","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/2354577/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 2354577,\n    \"origin\": \"https://files.idwell.com/demo.idwell.at/private/2021/03/Muster-Tagesordnungspunkte-au%C3%9Ferordentliche-Eigent%C3%BCmerversammlung.png?Expires=1754029892&Signature=T7tjwT1Q1vvDWDPF4YQbCBvFSdLKFF2gQJUtB6CdKc46~k0NMkc68gqOfTPZfeRbtStnrxXBkeU4v9RLgwnyccEzEqmFHiuyaKuyZViOu3uUUIGWpBdmicG0VDm9kj2DGKmwCuwY0XjGnYfYdPeLHbAdfN0GJsKMVwOLyQ3YEHOFptJMIqcFWVEZO3-bYjkNqszJKRYEUXI1c7pHdNQC65mMRfRMH7WyDuvzc~kkfJiqf539EJDQ5~dFqfE7gZQEAgaE-pcHiIZSRC8t~ZRY-CEpt~x01InK9pUEzjc7AiST1-KCSlGvCy6kmjBs0sZBNeIn38gHAGKkpo5F~hGanQ__&Key-Pair-Id=APKAJR3NXAIAR76HPMQQ\",\n    \"filename\": \"Muster-Tagesordnungspunkte-außerordentliche-Eigentümerversammlung.png\",\n    \"mime_type\": \"image/png\",\n    \"size\": 60306,\n    \"width\": 724,\n    \"height\": 1024,\n    \"parent_id\": 114830120,\n    \"external_id\": null,\n    \"available_to_dweller\": false,\n    \"available_to_landlord\": false\n}"}],"_postman_id":"dcc2c9fa-814e-4a3c-96c1-fc578135cea7"},{"name":"Update file","id":"3bc33243-6c30-4ead-b347-c72701ca0433","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/{{file_id}}/","description":"<p>Update file detail info by file id.</p>\n<p><strong>Endpoint:</strong><br /><code>PATCH /api/rest/v1/files/{{file_id}}/</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters:</strong></h3>\n<ul>\n<li><code>file_id</code> (string) – File ID.</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<p><strong>For rename file:</strong></p>\n<ul>\n<li><code>name</code> (string)- new name file</li>\n</ul>\n<p><strong>For change parent_id:</strong></p>\n<ul>\n<li><code>parent_id</code> (int)- directory_id to transfer the file to</li>\n</ul>\n<p><strong>For change external_id:</strong></p>\n<ul>\n<li><code>external_id</code> (string)- new external_id</li>\n</ul>\n<p><strong>For update files and create a path relative to parent_id:</strong></p>\n<ul>\n<li><p><code>parent_id</code> (int)- the parent_id for which new directories are being created</p>\n</li>\n<li><p><code>path</code>(string) - the file path being created</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>origin</code> (string)</p>\n</li>\n<li><p><code>filename</code> (string)</p>\n</li>\n<li><p><code>mime_type</code> (string)</p>\n</li>\n<li><p><code>size</code> (integer)</p>\n</li>\n<li><p><code>width</code> (integer)</p>\n</li>\n<li><p><code>height</code> (integer)</p>\n</li>\n<li><p><code>parent_id</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n<li><p><code>available_to_dweller</code> (boolean) Default:true</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","files","{{file_id}}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"3560c05e-e609-4cbf-937c-4bb7680fd69f","name":"Update file","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 123","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent_id\": 98545\n}","options":{"raw":{"language":"json"}}},"url":"https://api.demo.idwell.at/api/rest/v1/files/587960/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 587960,\n    \"origin\": \"https://files.idwell.com/demo.idwell.at/private/default/building/20179/2025/10/dd241efd-9fe7-4a18-b575-0ea0f047e282_tEo1RIT.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=%2F20251017%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20251017T144955Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEP7%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaDGV1LWNlbnRyYWwtMSJHMEUCIBLEuxUAMH%2FcmoAo%2FMDiUcYm5DXakgu5IySzP%2BCYK5L9AiEA77pduiOQIbUDziQCBT%2Bmk8mZXKM3m%2FhR3tewTxh%2BLS8qxAUIp%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAGGgw5MzgzMzMzMTUwMTEiDP%2BHuROM4cuDG9FLtiqYBT0ggIA58Ma%2FSXls%2FzTzbwMalytXvNIY6LN227gPN7dJ448RxjLvRurJxqmWxpHzHtpZQBSGfcUsNh8I7dFqc6TrDa1wTrhkTyCOw8VL8oP36yCES9wRiCTXyE%2BXdG1u2TudEfb9%2FAhKlXCLkz3RJqTYz2oV1flVu2qfUUucOKGoBxs8m7sy3KdwtJln0bjebY%2FCHhpYJho7tI8cTin0fbmTRR9pCJ1m7sQAUGvxWFK%2FOLYzOnv4ZrtO0BPLCcoX%2FqhEY6xzzWhCO%2F9F34kI%2FbTl95M0TWbdPk8NKIplgtcd%2FpmwNnXYjHWoXuOdODOStTiui7QtaIKhrT73r%2BGTByGM%2BJ6CDvQ7y3q3S81tboU4FWoEBZte9jcnsWcY0UmAiTlvtibu8ccC6b1UDFtjD72vPi0WK6CYkS9RtTcdPuBuSBUibhRmJVw%2BF%2BjmdutUope%2BSURJHrGZzIAFn%2FJqtU74Nt0LLgK9HXT7uwGTCyCzt%2F5MlA0PESiD3frHZzJFxT3NSsWEJPgGtMwvceQu0GumPEmUJNg5wIApPcyocd9NI68uZ1nhZcOM27520%2F5kGKdSf%2FcV0SWCse6A5JKeYz2T0JkWRDE5by254zHD7cl%2Bo4HzBZKO7CQeeFm27mggF1EnVI3tCTqhXakW3WjIO0U2ck2Z6xlYk5EY01u%2FvkPco4dOBpJ%2BYi3utpJNe0Mw6uMSfQuimWv7f9Ne0q6GXno4clM%2FRJy7V93yvmLIvyt6Us%2FzX98lAVA3EMa5ZOPl9SmIK5W79pEzMdpNo1gHWLqGZ8fgNeTlTmCLJqMdoXrDmZBbEbU%2BB11Znx8JSa5Q2HAwHZ%2FguK2ukG6ctW3FnzS6wjIBYrDZkfQXAA%2B0YT4uxGzd24mgShww%2Fp7JxwY6sQGLMSO5uOjeqYC9E%2BVv9HEBsrDtP45snUusQG5d3RkwqKYCOCqUSZnT%2FFJ11bUFHcAdgJwYj8mc12NFXIxnfMgmh%2Bico6izbpvQcWEroooZwS61NjwZRIPO5YEMbMp4Kd7qKbZSUa32A%2FDAqxwWgFLoWAFnUTkmJuQn2two0iYnyYvppHT0d5x3jajrY7XqtKitoYhDDlGNkBtc9DgrutRS0j2qTymdkm%2BODELPLd33HKM%3D&X-Amz-Signature=fd62ae0ceffb18f3dd0d0aed356bb81778146e9b3254b17ae2691e2312d479f0\",\n    \"filename\": \"new_name.png\",\n    \"mime_type\": \"image/png\",\n    \"size\": 1295675,\n    \"width\": 2592,\n    \"height\": 1084,\n    \"parent_id\": 568299,\n    \"external_id\": null,\n    \"available_to_dweller\": false,\n    \"available_to_landlord\": false\n}"},{"id":"49e2f163-5c98-4a04-80e6-9ef309a8aa1d","name":"Update external id","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"no_123\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.demo.idwell.at/api/rest/v1/files/587960/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 587960,\n    \"origin\": \"https://files.idwell.com/demo.idwell.at/private/default/building/20179/2025/10/dd241efd-9fe7-4a18-b575-0ea0f047e282_tEo1RIT.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=%2F20251017%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20251017T144955Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEP7%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaDGV1LWNlbnRyYWwtMSJHMEUCIBLEuxUAMH%2FcmoAo%2FMDiUcYm5DXakgu5IySzP%2BCYK5L9AiEA77pduiOQIbUDziQCBT%2Bmk8mZXKM3m%2FhR3tewTxh%2BLS8qxAUIp%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAGGgw5MzgzMzMzMTUwMTEiDP%2BHuROM4cuDG9FLtiqYBT0ggIA58Ma%2FSXls%2FzTzbwMalytXvNIY6LN227gPN7dJ448RxjLvRurJxqmWxpHzHtpZQBSGfcUsNh8I7dFqc6TrDa1wTrhkTyCOw8VL8oP36yCES9wRiCTXyE%2BXdG1u2TudEfb9%2FAhKlXCLkz3RJqTYz2oV1flVu2qfUUucOKGoBxs8m7sy3KdwtJln0bjebY%2FCHhpYJho7tI8cTin0fbmTRR9pCJ1m7sQAUGvxWFK%2FOLYzOnv4ZrtO0BPLCcoX%2FqhEY6xzzWhCO%2F9F34kI%2FbTl95M0TWbdPk8NKIplgtcd%2FpmwNnXYjHWoXuOdODOStTiui7QtaIKhrT73r%2BGTByGM%2BJ6CDvQ7y3q3S81tboU4FWoEBZte9jcnsWcY0UmAiTlvtibu8ccC6b1UDFtjD72vPi0WK6CYkS9RtTcdPuBuSBUibhRmJVw%2BF%2BjmdutUope%2BSURJHrGZzIAFn%2FJqtU74Nt0LLgK9HXT7uwGTCyCzt%2F5MlA0PESiD3frHZzJFxT3NSsWEJPgGtMwvceQu0GumPEmUJNg5wIApPcyocd9NI68uZ1nhZcOM27520%2F5kGKdSf%2FcV0SWCse6A5JKeYz2T0JkWRDE5by254zHD7cl%2Bo4HzBZKO7CQeeFm27mggF1EnVI3tCTqhXakW3WjIO0U2ck2Z6xlYk5EY01u%2FvkPco4dOBpJ%2BYi3utpJNe0Mw6uMSfQuimWv7f9Ne0q6GXno4clM%2FRJy7V93yvmLIvyt6Us%2FzX98lAVA3EMa5ZOPl9SmIK5W79pEzMdpNo1gHWLqGZ8fgNeTlTmCLJqMdoXrDmZBbEbU%2BB11Znx8JSa5Q2HAwHZ%2FguK2ukG6ctW3FnzS6wjIBYrDZkfQXAA%2B0YT4uxGzd24mgShww%2Fp7JxwY6sQGLMSO5uOjeqYC9E%2BVv9HEBsrDtP45snUusQG5d3RkwqKYCOCqUSZnT%2FFJ11bUFHcAdgJwYj8mc12NFXIxnfMgmh%2Bico6izbpvQcWEroooZwS61NjwZRIPO5YEMbMp4Kd7qKbZSUa32A%2FDAqxwWgFLoWAFnUTkmJuQn2two0iYnyYvppHT0d5x3jajrY7XqtKitoYhDDlGNkBtc9DgrutRS0j2qTymdkm%2BODELPLd33HKM%3D&X-Amz-Signature=fd62ae0ceffb18f3dd0d0aed356bb81778146e9b3254b17ae2691e2312d479f0\",\n    \"filename\": \"new_name.png\",\n    \"mime_type\": \"image/png\",\n    \"size\": 1295675,\n    \"width\": 2592,\n    \"height\": 1084,\n    \"parent_id\": 568299,\n    \"external_id\": \"no_123\",\n    \"available_to_dweller\": false,\n    \"available_to_landlord\": false\n}"},{"id":"a49ee6cd-ec35-4a6c-9118-b95f2c71e84f","name":"Update file","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"path\": \"[[\\\"documents\\\", true], [\\\"2024\\\", true], [\\\"reports\\\", true]]\", \n  \"parent_id\": 568299\n}","options":{"raw":{"language":"json"}}},"url":"https://api.demo.idwell.at/api/rest/v1/files/587960/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 587960,\n    \"origin\": \"https://files.idwell.com/demo.idwell.at/private/default/building/20179/2025/10/dd241efd-9fe7-4a18-b575-0ea0f047e282_tEo1RIT.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=%2F20251017%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20251017T144955Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEP7%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaDGV1LWNlbnRyYWwtMSJHMEUCIBLEuxUAMH%2FcmoAo%2FMDiUcYm5DXakgu5IySzP%2BCYK5L9AiEA77pduiOQIbUDziQCBT%2Bmk8mZXKM3m%2FhR3tewTxh%2BLS8qxAUIp%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAGGgw5MzgzMzMzMTUwMTEiDP%2BHuROM4cuDG9FLtiqYBT0ggIA58Ma%2FSXls%2FzTzbwMalytXvNIY6LN227gPN7dJ448RxjLvRurJxqmWxpHzHtpZQBSGfcUsNh8I7dFqc6TrDa1wTrhkTyCOw8VL8oP36yCES9wRiCTXyE%2BXdG1u2TudEfb9%2FAhKlXCLkz3RJqTYz2oV1flVu2qfUUucOKGoBxs8m7sy3KdwtJln0bjebY%2FCHhpYJho7tI8cTin0fbmTRR9pCJ1m7sQAUGvxWFK%2FOLYzOnv4ZrtO0BPLCcoX%2FqhEY6xzzWhCO%2F9F34kI%2FbTl95M0TWbdPk8NKIplgtcd%2FpmwNnXYjHWoXuOdODOStTiui7QtaIKhrT73r%2BGTByGM%2BJ6CDvQ7y3q3S81tboU4FWoEBZte9jcnsWcY0UmAiTlvtibu8ccC6b1UDFtjD72vPi0WK6CYkS9RtTcdPuBuSBUibhRmJVw%2BF%2BjmdutUope%2BSURJHrGZzIAFn%2FJqtU74Nt0LLgK9HXT7uwGTCyCzt%2F5MlA0PESiD3frHZzJFxT3NSsWEJPgGtMwvceQu0GumPEmUJNg5wIApPcyocd9NI68uZ1nhZcOM27520%2F5kGKdSf%2FcV0SWCse6A5JKeYz2T0JkWRDE5by254zHD7cl%2Bo4HzBZKO7CQeeFm27mggF1EnVI3tCTqhXakW3WjIO0U2ck2Z6xlYk5EY01u%2FvkPco4dOBpJ%2BYi3utpJNe0Mw6uMSfQuimWv7f9Ne0q6GXno4clM%2FRJy7V93yvmLIvyt6Us%2FzX98lAVA3EMa5ZOPl9SmIK5W79pEzMdpNo1gHWLqGZ8fgNeTlTmCLJqMdoXrDmZBbEbU%2BB11Znx8JSa5Q2HAwHZ%2FguK2ukG6ctW3FnzS6wjIBYrDZkfQXAA%2B0YT4uxGzd24mgShww%2Fp7JxwY6sQGLMSO5uOjeqYC9E%2BVv9HEBsrDtP45snUusQG5d3RkwqKYCOCqUSZnT%2FFJ11bUFHcAdgJwYj8mc12NFXIxnfMgmh%2Bico6izbpvQcWEroooZwS61NjwZRIPO5YEMbMp4Kd7qKbZSUa32A%2FDAqxwWgFLoWAFnUTkmJuQn2two0iYnyYvppHT0d5x3jajrY7XqtKitoYhDDlGNkBtc9DgrutRS0j2qTymdkm%2BODELPLd33HKM%3D&X-Amz-Signature=fd62ae0ceffb18f3dd0d0aed356bb81778146e9b3254b17ae2691e2312d479f0\",\n    \"filename\": \"new_name.png\",\n    \"mime_type\": \"image/png\",\n    \"size\": 1295675,\n    \"width\": 2592,\n    \"height\": 1084,\n    \"parent_id\": 590869,\n    \"external_id\": \"no_123\",\n    \"available_to_dweller\": false,\n    \"available_to_landlord\": false\n}"}],"_postman_id":"3bc33243-6c30-4ead-b347-c72701ca0433"},{"name":"Delete file","id":"ae6c5fe8-2fbd-4b50-a008-6c08534ed0a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/{{file_id}}/","description":"<p>Delete file.</p>\n<p><strong>Endpoint</strong>:</p>\n<p><code>DELETE /api/rest/v1/files/{file_id}/</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>file_id</code> (string, <strong>required</strong>) – File ID.</li>\n</ul>\n<h4 id=\"response-body-parameters\">Response body parameters:</h4>\n<p>Without body</p>\n","urlObject":{"path":["api","rest","v1","files","{{file_id}}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"1c835a55-d33a-4c3f-8692-a29b15f6338e","name":"Delete file","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer 123","type":"text"}],"url":"https://api.demo.idwell.at/api/rest/v1/files/582787/"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"ae6c5fe8-2fbd-4b50-a008-6c08534ed0a3"},{"name":"Get file download URL","id":"bfa8b4fa-2b40-4d88-b031-5da2ca2c23e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/files/{id}/download/","description":"<p>Returns a signed CloudFront URL to download a file.</p>\n<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/files/{file_id}/download/</code></p>\n<h4 id=\"path-parameters\"><strong>Path Parameters:</strong></h4>\n<ul>\n<li><code>id</code> (integer) — Unique identifier of the file.</li>\n</ul>\n<h4 id=\"response\"><strong>Response</strong></h4>\n<p><strong>200 OK</strong> — Successfully generated download URL</p>\n<p>Returns a signed URL string that can be used to download the file.</p>\n<p><strong>202 Accepted</strong> — File is not ready yet</p>\n<p>Returned in the following cases:</p>\n<ul>\n<li><p><code>\"Generate in progress\"</code> — File is not yet created.</p>\n</li>\n<li><p><code>\"Scan in progress\"</code> — File is undergoing antivirus scan (scan task will be triggered).</p>\n</li>\n<li><p><code>\"File is still uploading\"</code> — File upload to storage (S3) is not completed.</p>\n</li>\n</ul>\n<p><strong>401 Unauthorized</strong> — Download is forbidden</p>\n<ul>\n<li>The user does not have permission to access the file.</li>\n</ul>\n<p><strong>404 Not Found</strong> — File not found</p>\n<ul>\n<li>File does not exist or belongs to another management company.</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","files","{id}","download",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"54479456-4269-48cd-86de-89cac4686ec1","name":"Get file download URL","originalRequest":{"method":"GET","header":[],"url":"https://api.demo.idwell.at/api/rest/v1/files/123/download/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"\"https://files.idwell.com/demo.idwell.at/private/default/uk/1157957/65a05c18-9531-4110-bd49-4ed7dd6eafb9_m0UBiFp.png\""}],"_postman_id":"bfa8b4fa-2b40-4d88-b031-5da2ca2c23e9"}],"id":"e113da56-73a5-4cff-b62f-1cdc5bb243de","description":"<h2 id=\"description\">Description</h2>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get a list of files</td>\n<td><code>/api/rest/v1/files/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Read access to files related to available objects only</td>\n</tr>\n<tr>\n<td>Upload a file</td>\n<td><code>/api/rest/v1/files/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Upload files for available objects only</td>\n</tr>\n<tr>\n<td>Attach file to building</td>\n<td><code>/api/rest/v1/buildings/{building_id}/files/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Attach files to assigned buildings only</td>\n</tr>\n<tr>\n<td>Attach file to flat</td>\n<td><code>/api/rest/v1/flats/{flat_id}/files/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Attach files to flats in assigned buildings only</td>\n</tr>\n<tr>\n<td>Attach file to user</td>\n<td><code>/api/rest/v1/users/{user_id}/files/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Attach files to users related to assigned buildings only</td>\n</tr>\n<tr>\n<td>Get a file</td>\n<td><code>/api/rest/v1/files/{file_id}/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Read access to files related to available objects only</td>\n</tr>\n<tr>\n<td>Delete a file</td>\n<td><code>/api/rest/v1/files/{file_id}/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Delete files related to available objects only</td>\n</tr>\n<tr>\n<td>Get file download URL</td>\n<td><code>/api/rest/v1/files/{file_id}/download/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Get download URLs for files related to available objects only</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e113da56-73a5-4cff-b62f-1cdc5bb243de"},{"name":"Files(v3)","item":[{"name":"Upload a file","id":"414eff04-e9d0-450a-ba15-055407b3e1ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v3/files/","description":"<p>Create (or skip/overwrite) a file record and get a signed upload link (valid for 1 hour) to upload the binary with a <code>PUT</code>.</p>\n<p><strong>Endpoint:</strong><br />POST <code>/api/rest/v3/files/</code></p>\n<p><strong>Notes:</strong></p>\n<ul>\n<li><p><code>parent</code> and <code>parent_id</code> are synonyms. Use either one. If <code>parent</code> / <code>parent_id</code> is not specified, the file will be uploaded to the hidden <code>.default</code> folder (under the УК directory), which is not visible in the UI. Therefore, it is strongly recommended to always provide <code>parent</code> or <code>parent_id</code> explicitly.</p>\n</li>\n<li><p>File size limits:</p>\n<ul>\n<li><p>Avatars and building pictures: <strong>2.5 MB</strong></p>\n</li>\n<li><p>Other files: <strong>100 MB</strong></p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request body parameters:</h4>\n<ul>\n<li><p><code>name</code>(string, <strong>required</strong>): File name (e.g., <code>report.pdf</code>)</p>\n</li>\n<li><p><code>parent</code>(integer): Parent directory ID. Same as <code>parent_id</code>.</p>\n</li>\n<li><p><code>parent_id</code>(integer): Parent directory ID. Same as <code>parent</code>.</p>\n</li>\n<li><p><code>size</code>(integer): File size in bytes. Used by some conflict strategies.</p>\n</li>\n<li><p><code>mime_type</code>(string): MIME type (e.g., <code>image/png</code>, <code>application/pdf</code>).</p>\n</li>\n<li><p><code>width</code>(integer): Image width in px. Processed only for images.</p>\n</li>\n<li><p><code>height</code>(integer): Image height in px. Processed only for images.</p>\n</li>\n<li><p><code>meta</code>(object): Arbitrary metadata JSON.</p>\n</li>\n<li><p><code>type</code>(integer): File kind: <code>0=image</code>, <code>1=file</code>, <code>2=UK logo</code>, <code>3=avatar</code>, <code>4=video</code>, <code>5=UK background</code>, <code>6=email signature</code>.</p>\n</li>\n<li><p><code>set_permission_groups</code>(<strong>array</strong> of strings <strong>or</strong> <strong>object</strong>):</p>\n<ul>\n<li><p><strong>Array form:</strong> any of <code>[\"admin\",\"manager\",\"landlord\",\"dweller\"]</code> → grants maximum available permissions to listed roles and revokes all permissions from roles not included in the array.</p>\n</li>\n<li><p><strong>Object form</strong> — e.g. <code>{ \"admin\": \"allow\" }</code>. Supported values: <code>deny</code>, <code>readonly</code>, <code>allow</code>.If a role is present in the array, it is granted maximum available permissions; if absent, all permissions are revoked.Admin always retains the highest effective permission level. A manager cannot have lower permissions than a landlord or dweller — permission hierarchy consistency is automatically enforced by the system.</p>\n<ul>\n<li><p>{\"admin\": \"readonly\", \"manager\": \"readonly\"} - Admin and manager will have readonly permissions, dweller and landlord will have no permissions.</p>\n</li>\n<li><p>{\"dweller\": \"allow\"} - Admin, manager and dweller will have full permissions, landlord will have no permissions.</p>\n</li>\n<li><p>{\"admin\": \"allow\", \"manager\": \"allow\", \"landlord\": \"readonly\", \"dweller\": \"deny\"} - Admin and manager will have full permissions, landlord will have read-only permissions, dweller will have no permissions.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>storage_type</code>(string): Storage backend. One of: <code>default</code> (default), <code>saperion</code>, <code>aareon</code>.</p>\n</li>\n<li><p><code>external_id</code>(string): ID from outside IDWELL. Stored in the DB, as well as used for <code>action_if_exists</code> parameter, by which it is determined how to treat new file if same <code>external_id</code> is already in IDWELL DB. Also used to resolve conflicts via <code>action_if_exists.</code></p>\n</li>\n<li><p><code>path</code>(array): Virtual subpath under <code>parent</code> directory. Can have 2 or 3 elements in each sub-element.If sub-elements have 2 elements, then first element is the folder name, second - availability to both landlords and dwellers.If sub-elements have 3 elements, then first element is the folder name, second - availability to landlord, third - availability to dweller.</p>\n<ul>\n<li><p>Example (2-item tuples): <code>[[\"documents\", true], [\"2025\", false]]</code> → creates <code>documents/2025</code>; visibility set for users accordingly.</p>\n</li>\n<li><p>Example (3-item tuples): <code>[[\"documents\", true, true], [\"2025\", true, false]]</code> → separate landlord/dweller visibility.</p>\n</li>\n</ul>\n</li>\n<li><p><code>action_if_exists</code>(string): Applies <strong>only if</strong> <code>external_id</code> is set <strong>and matches an existing file</strong>. Options: <code>skip</code> (default) — do nothing; <code>overwrite</code> — replace file + metadata; <code>overwrite_data</code> — replace file only; <code>overwrite_metadata</code> — replace metadata only.</p>\n</li>\n<li><p><code>action_if_same_name</code>(string):Applies when creating a new file (after <code>action_if_exists</code> is processed). Accounts for <code>path</code>. Options:</p>\n<ul>\n<li><p><code>create</code> (default) — creates file with the same name in the selected directory. Default behavior.</p>\n</li>\n<li><p><code>check_size_and_create</code> — creates file if a file with the same name and size exists in the selected directory. If the size is not in `request` data - this behavior is treated just like normal <code>create</code>.</p>\n</li>\n<li><p><code>overwrite</code> — overwrites existing file (new file object is not created, but there will still be a link in response to upload new data).</p>\n</li>\n<li><p><code>skip</code> — file is not created, metadata of existing file is not changed.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"200-ok--creation-skipped\">200 OK — creation skipped</h3>\n<p>Returned when creation was skipped because:</p>\n<ul>\n<li><p><code>action_if_exists=skip</code> and <code>external_id</code> matched an existing file; <strong>or</strong></p>\n</li>\n<li><p><code>action_if_same_name=skip</code> (after <code>action_if_exists</code> logic).</p>\n</li>\n</ul>\n<p><strong>Response body:</strong> <strong>File</strong> object</p>\n<p><strong>File object fields:</strong></p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>origin</code> (string) — Public/secured URL to the stored file.</p>\n</li>\n<li><p><code>filename</code> (string)</p>\n</li>\n<li><p><code>mime_type</code> (string)</p>\n</li>\n<li><p><code>size</code> (integer)</p>\n</li>\n<li><p><code>width</code> (integer)</p>\n</li>\n<li><p><code>height</code> (integer)</p>\n</li>\n<li><p><code>parent_id</code> (integer)</p>\n</li>\n<li><p><code>external_id</code> (string)</p>\n</li>\n</ul>\n<h3 id=\"201-created--new-file-or-overwrite-and-signed-upload-link\">201 Created — new file (or overwrite) and signed upload link</h3>\n<p>Returned when a file record was created or overwritten (<code>action_if_exists</code> = <code>overwrite</code> / <code>overwrite_data</code> / <code>overwrite_metadata</code>, or <code>action_if_same_name</code> = <code>create</code> / <code>overwrite</code>).</p>\n<p><strong>Response body:</strong></p>\n<ul>\n<li><p><code>id</code> (integer) — Created/updated file ID.</p>\n</li>\n<li><p><code>signed_link</code> (string) — Time-limited link (valid <strong>1 hour</strong>) to upload the binary contents.</p>\n</li>\n</ul>\n<p><strong>How to upload the binary:</strong><br />Send a <code>PUT</code> request to the presigned URL with the raw file as the request body.<br />Example:<br /><code>curl -X PUT -T \"path/to/your/local/file\" \"generated-presigned-url\"</code></p>\n","urlObject":{"path":["api","rest","v3","files",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"c439f544-b6ce-4764-878d-adfdba1d5128","name":"Upload a file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"important-data.xlsx\",\n    \"parent_id\": 75706,\n    \"size\": 451587,\n    \"mime_type\": \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\n    \"external_id\": \"1a2b3c4d\",\n    \"action_if_exists\": \"overwrite\",\n    \"action_if_same_name\": \"create\",\n    \"storage_type\": \"default\",\n    \"meta\": {\n        \"department\": \"finance\",\n        \"year\": 2025\n    },\n    \"path\": [\n        [\n            \"documents\",\n            true,\n            true\n        ],\n        [\n            \"2025\",\n            true,\n            false\n        ]\n    ],\n    \"set_permission_groups\": [\n        \"admin\",\n        \"manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v3/files/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 12345,\n    \"signed_link\": \"https://upload.files.idwell.at/...&X-Amz-Expires=3600&...\"\n}"}],"_postman_id":"414eff04-e9d0-450a-ba15-055407b3e1ce"}],"id":"8297838e-a08b-414c-9107-db3cdb0fa338","description":"<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create file object</td>\n<td>POST /api/rest/v3/files/</td>\n<td>Create file object. Retirn signed_link</td>\n</tr>\n<tr>\n<td>Upload file content</td>\n<td>PUT signed_link</td>\n<td>Upload file content</td>\n</tr>\n<tr>\n<td>Finalize upload</td>\n<td>POST /api/v3/file/{file_id}/callback_on_upload/</td>\n<td>Finalize upload (optional but recommended)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<p>The file upload process consists of <strong>three sequential methods</strong>.<br />Depending on the integration scenario, some steps may be optional.</p>\n<h2 id=\"step-1---initialize-file-metadata--creation-rules\">Step 1 - Initialize File (Metadata &amp; Creation Rules)</h2>\n<p>POST /api/rest/v3/files/</p>\n<p><strong>Purpose:</strong><br />Create or register a file record in the system before uploading its binary content.</p>\n<p>This method:</p>\n<ul>\n<li><p>Creates a new file entry</p>\n</li>\n<li><p>Or updates an existing one (depending on provided parameters)</p>\n</li>\n<li><p>Returns a <code>file_id</code></p>\n</li>\n<li><p>Returns an upload URL (e.g., signed link)</p>\n</li>\n</ul>\n<h3 id=\"what-can-be-controlled-at-this-step\">What can be controlled at this step:</h3>\n<ul>\n<li><p>Whether to:</p>\n<ul>\n<li><p>Always create a new file</p>\n</li>\n<li><p>Update an existing file</p>\n</li>\n<li><p>Ignore creation if a duplicate exists</p>\n</li>\n</ul>\n</li>\n<li><p>Deduplication rules (e.g., prevent duplicates during import)</p>\n</li>\n<li><p>Import strategies (useful for migrations, batch uploads, sync processes)</p>\n</li>\n<li><p>File visibility or ownership rules (if applicable)</p>\n</li>\n<li><p>Custom metadata (if supported)</p>\n</li>\n</ul>\n<h3 id=\"typical-use-cases\">Typical Use Cases:</h3>\n<ul>\n<li><p>Bulk import scripts</p>\n</li>\n<li><p>File synchronization between systems</p>\n</li>\n<li><p>Preventing duplicate uploads</p>\n</li>\n<li><p>Replacing existing files</p>\n</li>\n<li><p>Controlled update logic during data migration</p>\n</li>\n</ul>\n<p>This step defines the <strong>behavioral logic</strong> of how the file should be handled in the system.</p>\n<h2 id=\"step-2---upload-file-content-binary-upload\">Step 2 - Upload File Content (Binary Upload)</h2>\n<p><strong>Purpose:</strong><br />Upload the actual binary content of the file. This can be done in two ways:</p>\n<h3 id=\"option-a-direct-upload-via-api\">Option A: Direct Upload via API</h3>\n<ul>\n<li><p>Using the upload endpoint returned in Step 1</p>\n</li>\n<li><p>Usually performed via HTTP <code>PUT</code></p>\n</li>\n<li><p>Sends raw binary data</p>\n</li>\n<li><p>Typically does not require authentication if using a signed URL</p>\n</li>\n</ul>\n<h3 id=\"option-b-upload-via-script--external-client\">Option B: Upload via Script / External Client</h3>\n<ul>\n<li><p>Using curl, Postman, backend service, or automation script</p>\n</li>\n<li><p>Suitable for:</p>\n<ul>\n<li><p>Large imports</p>\n</li>\n<li><p>Background jobs</p>\n</li>\n<li><p>CI/CD pipelines</p>\n</li>\n<li><p>Migration tools</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>This step uploads the <strong>actual file data</strong> to storage (e.g., S3 or another storage provider).</p>\n<h2 id=\"step-3---check-upload-optional\">Step 3 - Check upload (Optional)</h2>\n<p><strong>Purpose:</strong><br />Confirm that the file upload has been completed and trigger post-processing. This step may:</p>\n<ul>\n<li><p>Mark the file as fully uploaded</p>\n</li>\n<li><p>Trigger metadata extraction</p>\n</li>\n<li><p>Start antivirus scanning</p>\n</li>\n<li><p>Generate thumbnails/previews</p>\n</li>\n<li><p>Activate the file in the system</p>\n</li>\n</ul>\n<h2 id=\"usage-scenarios-example\">Usage Scenarios Example</h2>\n<p><strong>Scenario 1. Upload file to default directory (main directory Company)</strong></p>\n<p>Step 1: Create file object</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"name\": \"contract.pdf\",\n  \"type\": 1\n}\n\n</code></pre><p><em>Response</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": 1234,\n  \"signed_link\": \"https://s3-upload-link\"\n}\n\n</code></pre><p>Step 2: Upload file content</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X PUT \"SIGNED_LINK\" \\\n  -H \"Content-Type: application/pdf\" \\\n  --data-binary @contract.pdf\n\n</code></pre><p><strong>Scenario 2. Upload file into folder structure</strong></p>\n<p>Step 1: Create file object:</p>\n<ul>\n<li><p>This creates:</p>\n<ul>\n<li><p>documents/<br />  └── 2026/Permissions:</p>\n<ul>\n<li><p>landlords → true</p>\n</li>\n<li><p>dwellers → true (first level)</p>\n</li>\n<li><p>dwellers → false (second level)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"name\": \"report.pdf\",\n  \"parent\": 29047868,\n  \"path\": [\n    [\"documents\", true, true],\n    [\"2026\", true, false]\n  ]\n}\n\n</code></pre><p>Step 2: Upload file content (api)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request PUT 'https://upload.files.idwell.at/your_company_name.idwell.at/private/default/uk/1157957/311db08d-f59f-4664-afce-1c1c4b6b0cbe_f32docX.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=/20260223/eu-central-1/s3/aws4_request&amp;X-Amz-Date=20260223T064748Z&amp;X-Amz-Expires=3600&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=d9e91355625b15313a0b98a8c9070a2ba6d6b454ae89830a1ead6ab4724b3a0d' \\\n--header 'Content-Type: application/pdf' \\\n--data-binary '@Qyy-1TheJ/report.pdf'\n\n</code></pre><p><strong>Scenario 3. Upload file for all management company users</strong></p>\n<p>Step 1: Create file object:</p>\n<ul>\n<li><p>Admin and Manager are granted full permissions (<code>allow</code>).</p>\n</li>\n<li><p>Landlord is granted read-only access (<code>readonly</code>).</p>\n</li>\n<li><p>Dweller has no access (<code>deny</code>).</p>\n</li>\n</ul>\n<p>The system enforces role hierarchy consistency:</p>\n<ul>\n<li><p>Admin cannot have lower permissions than Manager.</p>\n</li>\n<li><p>Manager cannot have lower permissions than Landlord or Dweller.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"name\": \"announcement.pdf\",\n  \"set_permission_groups\": {\n    \"admin\": \"allow\",\n    \"manager\": \"allow\",\n    \"landlord\": \"readonly\",\n    \"dweller\": \"deny\"\n  }\n}\n\n</code></pre><p><strong>Scenario 4. Prevent duplicate file creation</strong></p>\n<p>If a file with the same name already exists in the folder, no new file is created.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"name\": \"report.pdf\",\n  \"action_if_same_name\": \"skip\"\n}\n\n</code></pre><p><strong>Scenario 5. Overwrite existing file</strong></p>\n<p>Existing file with same <code>external_id</code> will be replaced.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"name\": \"logo.png\",\n  \"external_id\": \"company_logo\",\n  \"action_if_exists\": \"overwrite\"\n}\n\n</code></pre><h1 id=\"important-notes\">Important Notes</h1>\n<ul>\n<li><p>File upload is a two-step process.</p>\n</li>\n<li><p><code>action_if_exists</code> has higher priority than <code>action_if_same_name</code>.</p>\n</li>\n<li><p>When overwriting, the old S3 file is deleted in a background task.</p>\n</li>\n<li><p>If overwrite fails, the system restores the previous file.</p>\n</li>\n</ul>\n","_postman_id":"8297838e-a08b-414c-9107-db3cdb0fa338"},{"name":"Labels","item":[{"name":"Get label list","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"97248e15-aab2-43df-b9d5-78a55e90ab24"}}],"id":"3f0c7c25-c0ca-4cbb-9b12-d8da45dab863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/labels/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>GET/api/rest/v1/labels/</code></p>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>count</code> (number) — Total number of objects.</p>\n</li>\n<li><p><code>page</code> (number) — Current page number.</p>\n</li>\n<li><p><code>pages</code> (number) — Total number of pages.</p>\n</li>\n<li><p><code>links</code> (object)</p>\n<ul>\n<li><p><code>next</code> (string or null) — Next page URL.</p>\n</li>\n<li><p><code>previous</code> (string or null) — Previous page URL.</p>\n</li>\n<li><p><code>last</code> (string or null) — Last page URL.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of flats. Each object contains:</p>\n<ul>\n<li><p><code>id</code> (number)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>color</code> (string)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","labels",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"a2f9944f-43a9-4ed4-b6cd-c93ce593803f","name":"Get label list","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/labels/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 60,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 1158,\n            \"name\": \"1 x monatlich\",\n            \"color\": \"#00bcdd\"\n        },\n        {\n            \"id\": 1163,\n            \"name\": \"4 x jährlich\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 1454,\n            \"name\": \"Termin vereinbart\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 1455,\n            \"name\": \"Prüfung anlassbezogen\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 1456,\n            \"name\": \"Prio A\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 1467,\n            \"name\": \"Prio 5\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 1491,\n            \"name\": \"Dienstleistung durchgeführt\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 1504,\n            \"name\": \"Fertig\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 1523,\n            \"name\": \"Priorität hoch\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 1524,\n            \"name\": \"Priorität hoch\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 1528,\n            \"name\": \"Sammelmappe\",\n            \"color\": \"#d46ce0\"\n        },\n        {\n            \"id\": 1572,\n            \"name\": \"BuHa\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 1957,\n            \"name\": \"Versicherung\",\n            \"color\": \"#d46ce0\"\n        },\n        {\n            \"id\": 1959,\n            \"name\": \"Objektbuchhaltung\",\n            \"color\": \"#ff75cb\"\n        },\n        {\n            \"id\": 1961,\n            \"name\": \"Warte auf KVA\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 2046,\n            \"name\": \"Versicherungsfall\",\n            \"color\": \"#3dcadd\"\n        },\n        {\n            \"id\": 2050,\n            \"name\": \"Abgerechnet\",\n            \"color\": \"#00e58a\"\n        },\n        {\n            \"id\": 4272,\n            \"name\": \"Prio hoch / dringend!\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 4301,\n            \"name\": \"Sanierung\",\n            \"color\": \"#006fbb\"\n        },\n        {\n            \"id\": 4302,\n            \"name\": \"Regress\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 4303,\n            \"name\": \"Regiekosten\",\n            \"color\": \"#d46ce0\"\n        },\n        {\n            \"id\": 4995,\n            \"name\": \"Schlüsselübergabe\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 8458,\n            \"name\": \"Webinar Speed Academy\",\n            \"color\": \"#00bcdd\"\n        },\n        {\n            \"id\": 10311,\n            \"name\": \"Priorität mittel\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 10478,\n            \"name\": \"App\",\n            \"color\": \"#006fbb\"\n        },\n        {\n            \"id\": 10997,\n            \"name\": \"REANOVO\",\n            \"color\": \"#5b6f80\"\n        },\n        {\n            \"id\": 11527,\n            \"name\": \"REA\",\n            \"color\": \"#00e58a\"\n        },\n        {\n            \"id\": 11759,\n            \"name\": \"APP\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 12122,\n            \"name\": \"Neuvermietung\",\n            \"color\": \"#3dcadd\"\n        },\n        {\n            \"id\": 12518,\n            \"name\": \"Terminvereinbarung\",\n            \"color\": \"#ffdf9b\"\n        },\n        {\n            \"id\": 16019,\n            \"name\": \"ETV 2024\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 16614,\n            \"name\": \"Vorbereitung\",\n            \"color\": \"#a9f6bc\"\n        },\n        {\n            \"id\": 16809,\n            \"name\": \"Winter School\",\n            \"color\": \"#3dcadd\"\n        },\n        {\n            \"id\": 16871,\n            \"name\": \"Reparaturauftrag\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 17729,\n            \"name\": \"Verkauf\",\n            \"color\": \"#5b6f80\"\n        },\n        {\n            \"id\": 18818,\n            \"name\": \"Heizung/Gas\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 18819,\n            \"name\": \"Sonstiges\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 18820,\n            \"name\": \"Feuerlöscher\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 18821,\n            \"name\": \"jährlich\",\n            \"color\": \"#d46ce0\"\n        },\n        {\n            \"id\": 18852,\n            \"name\": \"halbjährlich\",\n            \"color\": \"#00e58a\"\n        },\n        {\n            \"id\": 18853,\n            \"name\": \"Wasserleitung\",\n            \"color\": \"#3dcadd\"\n        },\n        {\n            \"id\": 18856,\n            \"name\": \"RWM\",\n            \"color\": \"#424242\"\n        },\n        {\n            \"id\": 19676,\n            \"name\": \"WASSERSCHADEN\",\n            \"color\": \"#00bcdd\"\n        },\n        {\n            \"id\": 19677,\n            \"name\": \"MELDUNG via APP\",\n            \"color\": \"#00b63b\"\n        },\n        {\n            \"id\": 21987,\n            \"name\": \"REA Vol.3 #8\",\n            \"color\": \"#ff75cb\"\n        },\n        {\n            \"id\": 22680,\n            \"name\": \"Priorität 1\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 24562,\n            \"name\": \"Automation\",\n            \"color\": \"#3dcadd\"\n        },\n        {\n            \"id\": 25682,\n            \"name\": \"Glasbruch\",\n            \"color\": \"#00bcdd\"\n        },\n        {\n            \"id\": 27761,\n            \"name\": \"Summer School\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 27762,\n            \"name\": \"Aufzugstörung\",\n            \"color\": \"#00bcdd\"\n        },\n        {\n            \"id\": 30566,\n            \"name\": \"quartalsweise\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 32480,\n            \"name\": \"Schaden Allgemein\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 33173,\n            \"name\": \"prio hoch\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 42216,\n            \"name\": \"Türen & Fenster\",\n            \"color\": \"#d46ce0\"\n        },\n        {\n            \"id\": 43670,\n            \"name\": \"Physischer Schlüssel\",\n            \"color\": \"#fcd100\"\n        },\n        {\n            \"id\": 45647,\n            \"name\": \"MIM\",\n            \"color\": \"#ffa238\"\n        },\n        {\n            \"id\": 46406,\n            \"name\": \"Priorität hoch\",\n            \"color\": \"#ff4f3b\"\n        },\n        {\n            \"id\": 51455,\n            \"name\": \"Warten auf Kundenantwort\",\n            \"color\": \"#b8b8b8\"\n        },\n        {\n            \"id\": 64656,\n            \"name\": \"Warten auf Kundenantwort\",\n            \"color\": \"#b8b8b8\"\n        },\n        {\n            \"id\": 69077,\n            \"name\": \"Hauptticket\",\n            \"color\": \"#ffa238\"\n        }\n    ]\n}"}],"_postman_id":"3f0c7c25-c0ca-4cbb-9b12-d8da45dab863"},{"name":"Get a label","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"0fca390d-b8dc-424f-a8c5-b05a159989cd"}}],"id":"4dd4b962-3670-4a47-b12a-54002a2c8a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Berarer {{token}}"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/labels/{label_id}/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>GET/api/rest/v1/labels/:label_id/</code></p>\n<h4 id=\"request-query-parameters\"><strong>Request Query Parameters:</strong></h4>\n<ul>\n<li><code>label_id</code>(number)</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code> (number)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>color</code> (string)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","labels","{label_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"f0868af9-f063-4fb7-a205-6e02007cce07","name":"Get a label","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Berarer mWZay0lV2leY4f1X9B9adYGemKz3ek"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/labels/22680/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 2570,\n    \"name\": \"Minor\",\n    \"color\": \"#00b63b\"\n}"}],"_postman_id":"4dd4b962-3670-4a47-b12a-54002a2c8a1f"}],"id":"128db9b9-4241-4d78-a060-ebd5b8c9eda2","description":"<h2 id=\"description\">Description</h2>\n<p>The color labels for Request objects</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get label list</td>\n<td><code>/v1/labels/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Only read</td>\n</tr>\n<tr>\n<td>Get a label</td>\n<td><code>/v1/labels/{label_id}/</code></td>\n<td><strong>Admin:</strong> Full access  <br /><strong>Manager:</strong> Only read</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><code>label_id</code> (path): The unique key of the label .</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li>Getting a list of labels in PMC</li>\n</ul>\n","_postman_id":"128db9b9-4241-4d78-a060-ebd5b8c9eda2"},{"name":"Budget-plan","item":[{"name":"Create budget plan","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"cffe4e62-493d-4120-8ff1-4dd29b88b24d"}}],"id":"4a5cf371-e88b-475a-8969-7825a170ed9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{}],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"integer\",\r\n    \"request\": \"integer\",\r\n    \"include_tax\": \"boolean\",\r\n    \"tax\": \"number\",\r\n    \"retained_amount_type\": null,\r\n    \"retained_amount_in_percent\": \"number\",\r\n    \"retained_amount_in_currency\": \"number\",\r\n    \"max_retained_amount\": \"number\",\r\n    \"min_retained_amount\": \"number\",\r\n    \"total_estimated_amount\": \"number\",\r\n    \"total_invoices_amount\": \"number\",\r\n    \"not_covered_amount\": \"number\",\r\n    \"covered_amount\": \"number\",\r\n    \"invoices\": \"array\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/budget-plans/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>request_id</code>(integer)</p>\n</li>\n<li><p><code>include_tax</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>retained_amount_type</code>(string) Allowed values:[<code>percent</code>, <code>currency</code>]</p>\n</li>\n<li><p><code>retained_amount_in_percent</code>(number)</p>\n</li>\n<li><p><code>retained_amount_in_currency</code>(number)</p>\n</li>\n<li><p><code>max_retained_amount</code>(number)</p>\n</li>\n<li><p><code>min_retained_amount</code>(number)</p>\n</li>\n<li><p><code>total_estimated_amount</code>(number)</p>\n</li>\n<li><p><code>total_invoices_amount</code>(number)</p>\n</li>\n<li><p><code>not_covered_amount</code>(number)</p>\n</li>\n<li><p><code>covered_amount</code>(number)</p>\n</li>\n<li><p><code>invoices</code>(array[Invoice])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>request_id</code>(integer)</p>\n</li>\n<li><p><code>include_tax</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>retained_amount_type</code>(string) Allowed values:[<code>percent</code>, <code>currency</code>]</p>\n</li>\n<li><p><code>retained_amount_in_percent</code>(number)</p>\n</li>\n<li><p><code>retained_amount_in_currency</code>(number)</p>\n</li>\n<li><p><code>max_retained_amount</code>(number)</p>\n</li>\n<li><p><code>min_retained_amount</code>(number)</p>\n</li>\n<li><p><code>total_estimated_amount</code>(number)</p>\n</li>\n<li><p><code>total_invoices_amount</code>(number)</p>\n</li>\n<li><p><code>not_covered_amount</code>(number)</p>\n</li>\n<li><p><code>covered_amount</code>(number)</p>\n</li>\n<li><p><code>invoices</code>(array[Invoice])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a5cf371-e88b-475a-8969-7825a170ed9a"},{"name":"Get budget plan","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"8b9dd0f7-acdf-45e6-94f7-f105a59fd8f7"}}],"id":"891762b0-8866-4bd5-9397-94ad02607fd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/{request_id}/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>GET /api/rest/v1/budget-plans/{request_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li>request_id(string)</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>request_id</code>(integer)</p>\n</li>\n<li><p><code>include_tax</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>retained_amount_type</code>(string) Allowed values:[<code>percent</code>, <code>currency</code>]</p>\n</li>\n<li><p><code>retained_amount_in_percent</code>(number)</p>\n</li>\n<li><p><code>retained_amount_in_currency</code>(number)</p>\n</li>\n<li><p><code>max_retained_amount</code>(number)</p>\n</li>\n<li><p><code>min_retained_amount</code>(number)</p>\n</li>\n<li><p><code>total_estimated_amount</code>(number)</p>\n</li>\n<li><p><code>total_invoices_amount</code>(number)</p>\n</li>\n<li><p><code>not_covered_amount</code>(number)</p>\n</li>\n<li><p><code>covered_amount</code>(number)</p>\n</li>\n<li><p><code>invoices</code>(array[Invoice])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans","{request_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"891762b0-8866-4bd5-9397-94ad02607fd8"},{"name":"Update budget plan","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"95585652-199f-41c9-936d-125bae8ff9c5"}}],"id":"8ed6db56-2221-47f1-b3bb-4abd1448468e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{}],"body":{"mode":"raw","raw":"{\"tax\":null,\"retained_amount_type\":\"string\",\"retained_amount_in_percent\":\"number\",\"retained_amount_in_currency\":null,\"max_retained_amount\":\"number\",\"min_retained_amount\":\"number\",\"total_estimated_amount\":null}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/{request_id}/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/budget-plans/{request_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li>request_id(string)</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>retained_amount_type</code>(string) Allowed values:[<code>percent</code>, <code>currency</code>]</p>\n</li>\n<li><p><code>retained_amount_in_percent</code>(number)</p>\n</li>\n<li><p><code>retained_amount_in_currency</code>(number)</p>\n</li>\n<li><p><code>max_retained_amount</code>(number)</p>\n</li>\n<li><p><code>min_retained_amount</code>(number)</p>\n</li>\n<li><p><code>total_estimated_amount</code>(number)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>request_id</code>(integer)</p>\n</li>\n<li><p><code>include_tax</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>retained_amount_type</code>(string) Allowed values:[<code>percent</code>, <code>currency</code>]</p>\n</li>\n<li><p><code>retained_amount_in_percent</code>(number)</p>\n</li>\n<li><p><code>retained_amount_in_currency</code>(number)</p>\n</li>\n<li><p><code>max_retained_amount</code>(number)</p>\n</li>\n<li><p><code>min_retained_amount</code>(number)</p>\n</li>\n<li><p><code>total_estimated_amount</code>(number)</p>\n</li>\n<li><p><code>total_invoices_amount</code>(number)</p>\n</li>\n<li><p><code>not_covered_amount</code>(number)</p>\n</li>\n<li><p><code>covered_amount</code>(number)</p>\n</li>\n<li><p><code>invoices</code>(array[Invoice])</p>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans","{request_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ed6db56-2221-47f1-b3bb-4abd1448468e"},{"name":"Create invoice","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"390df9ed-23cd-4e51-a9e2-9bc44b9bd6f9"}}],"id":"fe9acbc6-a070-495c-81b7-7f2622fc6580","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{}],"body":{"mode":"raw","raw":"{\"id\":\"integer\",\"number\":\"string\",\"type\":\"integer\",\"amount_due\":\"number\",\"iban\":\"string\",\"bic\":\"string\",\"payment_date\":\"string\",\"covered\":\"boolean\",\"tax\":\"number\",\"demand\":\"number\",\"notes\":\"string\",\"invoice_file\":\"integer\"}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/invoices/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>POST /api/rest/v1/budget-plans/invoices/</code></p>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans","invoices",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe9acbc6-a070-495c-81b7-7f2622fc6580"},{"name":"Update invoice","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"c1f1c226-043e-4697-a62b-9261bab3442a"}}],"id":"0e468eaa-2138-4a85-b389-3d2245397049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{}],"body":{"mode":"raw","raw":"{\"id\":\"integer\",\"number\":\"string\",\"type\":\"integer\",\"amount_due\":\"number\",\"iban\":\"string\",\"bic\":\"string\",\"payment_date\":\"string\",\"covered\":\"boolean\",\"tax\":\"number\",\"demand\":\"number\",\"notes\":\"string\",\"invoice_file\":\"integer\"}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/invoices/{invoice_id}/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>PATCH /api/rest/v1/budget-plans/invoices/{invoice_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><code>invoice_id</code>(string)</li>\n</ul>\n<h4 id=\"request-body-parameters\"><strong>Request Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n<h4 id=\"response-body-parameters\"><strong>Response Body Parameters:</strong></h4>\n<ul>\n<li><p><code>id</code>(integer)</p>\n</li>\n<li><p><code>number</code>(string)</p>\n</li>\n<li><p><code>type</code>(integer) InvoiceType ID.</p>\n</li>\n<li><p><code>amount_due</code>(number)</p>\n</li>\n<li><p><code>iban</code>(string)</p>\n</li>\n<li><p><code>bic</code>(string)</p>\n</li>\n<li><p><code>payment_date</code>(string)</p>\n</li>\n<li><p><code>covered</code>(boolean)</p>\n</li>\n<li><p><code>tax</code>(number)</p>\n</li>\n<li><p><code>demand</code>(number)</p>\n</li>\n<li><p><code>notes</code>(string)</p>\n</li>\n<li><p><code>invoice_file</code>(integer)</p>\n</li>\n<li><p><code>budget_plan</code>(integer)</p>\n</li>\n<li><p><code>request</code>(integer)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans","invoices","{invoice_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e468eaa-2138-4a85-b389-3d2245397049"},{"name":"Delete invoice","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"36963fd4-bc29-457b-8327-bd3369a479f1"}}],"id":"4c3fa4b2-4a80-4fa5-b258-7dbb5d30a52c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/budget-plans/invoices/{invoice_id}/","description":"<p><strong>Endpoint:</strong></p>\n<p><code>DELETE /api/rest/v1/budget-plans/invoices/{invoice_id}/</code></p>\n<h4 id=\"request-path-parameters\"><strong>Request Path Parameters:</strong></h4>\n<ul>\n<li><code>invoice_id</code>(string)</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","budget-plans","invoices","{invoice_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c3fa4b2-4a80-4fa5-b258-7dbb5d30a52c"}],"id":"4d81d2f1-0479-4389-87c3-426ef428978f","description":"<h2 id=\"description\">Description</h2>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create budget plan</td>\n<td>/api/rest/v1/budget-plans/</td>\n<td>Create budget plan</td>\n</tr>\n<tr>\n<td>Get budget plan</td>\n<td>/api/rest/v1/budget-plans/{request_id}/</td>\n<td>Get budget plan</td>\n</tr>\n<tr>\n<td>Update budget plan</td>\n<td>/api/rest/v1/budget-plans/{request_id}/</td>\n<td>Update budget plan</td>\n</tr>\n<tr>\n<td>Create invoice</td>\n<td>/api/rest/v1/budget-plans/invoices/</td>\n<td>Create invoice</td>\n</tr>\n<tr>\n<td>Update invoice</td>\n<td>/api/rest/v1/budget-plans/invoices/{invoice_id}/</td>\n<td>Update invoice</td>\n</tr>\n<tr>\n<td>Delete invoice</td>\n<td>/api/rest/v1/budget-plans/invoices/{invoice_id}/</td>\n<td>Delete invoice</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<h2 id=\"use-cases\">Use Cases</h2>\n","_postman_id":"4d81d2f1-0479-4389-87c3-426ef428978f"},{"name":"Chats","item":[{"name":"Get chatroom messages","id":"a1b15b6a-5dbb-4e24-a656-591d984a9703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/chatrooms/{chatroom_id}/messages/","description":"<h3 id=\"get-chatroom-messages\"><strong>Get chatroom messages</strong></h3>\n<p>Returns a paginated list of messages for the specified chatroom.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/chatrooms/{chatroom_id}/messages/</code></p>\n<hr />\n<h3 id=\"path-parameters\"><strong>Path Parameters</strong></h3>\n<ul>\n<li><code>chatroom_id</code> (string, <strong>required</strong>) — UUID of the chatroom.</li>\n</ul>\n<hr />\n<h3 id=\"response-body-parameters\"><strong>Response Body Parameters</strong></h3>\n<ul>\n<li><p><code>count</code> (integer) — Total number of messages in the chatroom.</p>\n</li>\n<li><p><code>pages</code> (integer) — Total number of pages.</p>\n</li>\n<li><p><code>page</code> (integer) — Current page number.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links.</p>\n<ul>\n<li><p><code>next</code> (string or null) — URL of the next page.</p>\n</li>\n<li><p><code>previous</code> (string or null) — URL of the previous page.</p>\n</li>\n<li><p><code>last</code> (string or null) — URL of the last page.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of chat messages.</p>\n</li>\n</ul>\n<h3 id=\"message-object-fields\"><strong>Message Object Fields</strong></h3>\n<p>Each <strong>message object</strong> includes:</p>\n<ul>\n<li><p><code>uuid</code> (string) — Unique identifier of the message.</p>\n</li>\n<li><p><code>chat</code> (string) — UUID of the chatroom the message belongs to.</p>\n</li>\n<li><p><code>text</code> (string) — Message text.</p>\n</li>\n<li><p><code>files</code> (array) — List of files attached to the message.</p>\n</li>\n<li><p><code>owner</code> (integer) — Identifier of the message author.</p>\n</li>\n<li><p><code>avatar</code> (string) — URL of the author’s avatar image.</p>\n</li>\n<li><p><code>like</code> (object) — Like and dislike information.</p>\n<ul>\n<li><p><code>like_count</code> (integer) — Total number of likes.</p>\n</li>\n<li><p><code>dislike_count</code> (integer) — Total number of dislikes.</p>\n</li>\n<li><p><code>liked</code> (boolean) — Whether the current user liked the message.</p>\n</li>\n<li><p><code>disliked</code> (boolean) — Whether the current user disliked the message.</p>\n</li>\n</ul>\n</li>\n<li><p><code>is_system</code> (boolean) — Indicates whether the message is a system message.</p>\n</li>\n<li><p><code>created</code> (string) — Message creation date and time in ISO 8601 format.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","chatrooms","{chatroom_id}","messages",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"6b889684-2bda-4035-b554-e33e0cb6e116","name":"Get chatroom messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://api.demo.idwell.at/api/rest/v1/chatrooms/1e156bfb-0373-464b-904d-66e1af840a24/messages/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 4,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"uuid\": \"809fb65b-06b0-4d74-8339-a1255be9331c\",\n            \"chat\": \"e8a812da-2c62-4c29-86af-e3ff1f5f4e73\",\n            \"text\": \"<ol>\\n<li>Donec vulputate mollis nisi, in scelerisque justo vehicula ut. Maecenas condimentum semper tellus, quis accumsan enim elementum et. Aliquam sed eros eu nulla sodales ultrices eu ut nisi.</li>\\n<li>Ut volutpat velit ac porttitor blandit. Aliquam vel mollis sapien. Phasellus elementum condimentum mauris at iaculis. Pellentesque lobortis diam quis nisl placerat volutpat.</li>\\n</ol>\\n<p>https://www.lipsum.com/feed/html </p>\\n<blockquote>\\n<p>Ut tristique et lacus id tincidunt. Quisque tincidunt, mauris id consectetur dignissim, diam est dapibus elit, vel rutrum augue erat ut purus. Nullam mattis leo tincidunt suscipit vestibulum. Quisque lacinia interdum nibh, id vestibulum odio ornare nec. Nullam fermentum ut metus eget fermentum. Sed ut ligula et metus efficitur consequat eu eu ligula. Vestibulum sit amet placerat erat. Etiam finibus libero eget lectus fringilla tempor. Donec iaculis maximus leo sit amet laoreet. Nulla nec justo lectus.</p>\\n</blockquote>\",\n            \"files\": [],\n            \"owner\": 13249,\n            \"avatar\": \"https://files.idwell.at/api.demo.idwell.at/v2/thumbnails/170X170/api.demo.idwell.at/private/2025/02/4d4a7a12-3ab2-4d35-94b7-7e7147aa5595_fl4S3rq.png\",\n            \"like\": {\n                \"like_count\": 0,\n                \"dislike_count\": 1,\n                \"liked\": false,\n                \"disliked\": true\n            },\n            \"is_system\": false,\n            \"created\": \"2026-01-05T11:40:00.371908+03:00\"\n        },\n        {\n            \"uuid\": \"d581005e-ccf8-475a-b206-01d2914ddf5c\",\n            \"chat\": \"e8a812da-2c62-4c29-86af-e3ff1f5f4e73\",\n            \"text\": \"<blockquote>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas scelerisque interdum nisl sollicitudin vulputate. Integer mollis eleifend aliquam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed consectetur tempus mollis. Ut sem nibh, vehicula a sollicitudin ut, commodo at magna. Nunc felis nulla, maximus quis pharetra at, facilisis sed enim. Morbi vel efficitur dolor, nec posuere turpis. Nulla eu odio et lacus eleifend aliquet quis non velit. Nullam tempus placerat ex eget fringilla. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam ultricies enim et condimentum sagittis. Suspendisse erat dui, finibus in porta non, facilisis at ante. In pellentesque tellus nec neque sollicitudin dignissim. Integer sodales libero id magna dignissim, in luctus odio vehicula.</p>\\n</blockquote>\",\n            \"files\": [],\n            \"owner\": 13249,\n            \"avatar\": \"https://files.idwell.at/api.demo.idwell.at/v2/thumbnails/170X170/api.demo.idwell.at/private/2025/02/4d4a7a12-3ab2-4d35-94b7-7e7147aa5595_fl4S3rq.png\",\n            \"like\": {\n                \"like_count\": 0,\n                \"dislike_count\": 1,\n                \"liked\": false,\n                \"disliked\": true\n            },\n            \"is_system\": false,\n            \"created\": \"2026-01-05T11:39:25.587107+03:00\"\n        },\n        {\n            \"uuid\": \"37cc3a42-c4ba-46f7-a5c0-4b8e82f5c2a2\",\n            \"chat\": \"e8a812da-2c62-4c29-86af-e3ff1f5f4e73\",\n            \"text\": \"<p>Nulla in ligula aliquam metus auctor feugiat. Mauris at dui in est posuere tincidunt. Proin euismod nibh vel dui imperdiet, sed ultricies nibh molestie. Quisque id tristique turpis. Sed urna quam, placerat eu porttitor sit amet, elementum in purus. Cras dapibus quam id sapien ultrices, tincidunt fermentum justo rutrum. Vestibulum porttitor ligula id lorem ultricies, facilisis maximus tellus euismod. Nulla vel est consectetur, viverra dui ac, vehicula nulla. Curabitur sollicitudin lacus ac nibh dictum, non vehicula orci commodo. Nam neque augue, dignissim non eleifend id, iaculis nec elit. Quisque non aliquam purus, sed iaculis lacus. Nulla quis accumsan magna, nec efficitur purus. Etiam odio diam, laoreet eget egestas quis, ultricies id nunc.</p>\",\n            \"files\": [],\n            \"owner\": 13249,\n            \"avatar\": \"https://files.idwell.at/api.demo.idwell.at/v2/thumbnails/170X170/api.demo.idwell.at/private/2025/02/4d4a7a12-3ab2-4d35-94b7-7e7147aa5595_fl4S3rq.png\",\n            \"like\": {\n                \"like_count\": 0,\n                \"dislike_count\": 1,\n                \"liked\": false,\n                \"disliked\": true\n            },\n            \"is_system\": false,\n            \"created\": \"2026-01-05T11:39:14.920818+03:00\"\n        },\n        {\n            \"uuid\": \"cf338591-9fee-4d2d-afce-250311c4c3ea\",\n            \"chat\": \"e8a812da-2c62-4c29-86af-e3ff1f5f4e73\",\n            \"text\": \"<p>Mauris pretium nibh a laoreet tincidunt. Aenean venenatis lorem non risus vulputate, hendrerit pulvinar ipsum tempus. Fusce placerat a dolor id sagittis. Donec vitae ex dictum, finibus justo in, consectetur diam. Vestibulum nec blandit dolor. Morbi sit amet sapien nisi. Ut lobortis enim sem, sit amet dapibus arcu aliquet congue.</p>\",\n            \"files\": [],\n            \"owner\": 13249,\n            \"avatar\": \"https://files.idwell.at/api.demo.idwell.at/v2/thumbnails/170X170/api.demo.idwell.at/private/2025/02/4d4a7a12-3ab2-4d35-94b7-7e7147aa5595_fl4S3rq.png\",\n            \"like\": {\n                \"like_count\": 1,\n                \"dislike_count\": 0,\n                \"liked\": true,\n                \"disliked\": false\n            },\n            \"is_system\": false,\n            \"created\": \"2026-01-05T11:39:05.058898+03:00\"\n        }\n    ]\n}"}],"_postman_id":"a1b15b6a-5dbb-4e24-a656-591d984a9703"},{"name":"Create chatroom message","id":"be1300cb-0576-4fba-9f22-53eff9b97b30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n    \"files\": [123, 456]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/chatrooms/{chatroom_id}/messages/","description":"<h3 id=\"create-chatroom-message\">Create chatroom message</h3>\n<p>Adds a new message to an existing chatroom (public or private) related to a request.</p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint allows sending messages to an existing chatroom (public and private) linked to a request.</p>\n<p>Messages can be added for requests in any status (rejected, completed, in progress, pending).<br />Messages <strong>cannot</strong> be added to chatrooms of archived requests.</p>\n<p>If a request is hidden for dwellers and a message is sent to a <strong>public chatroom</strong>, the API returns a <code>403 Forbidden</code> error.  </p>\n<p>In this case, the request must first be made visible to dwellers:</p>\n<p>To enable visibility for dwellers, update the request using:</p>\n<p><code>PATCH /api/rest/v1/requests/{request_id}</code> with parameter:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"visible_to_dwellers\": true\n}\n\n</code></pre><p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/chatrooms/{chatroom_id}/messages/</code></p>\n<hr />\n<h3 id=\"path-parameters\"><strong>Path Parameters</strong></h3>\n<ul>\n<li><code>chatroom_id</code> (string, <strong>required</strong>) — UUID of the chatroom.</li>\n</ul>\n<h3 id=\"request-body-parameters-json\"><strong>Request Body Parameters (JSON)</strong></h3>\n<ul>\n<li><p><code>text</code> (string, <strong>required</strong>) — Message text.<br />  Supports HTML formatting (for example: bold text, line breaks, spacing).</p>\n</li>\n<li><p><code>files</code> (array of integers, optional) — List of file identifiers to attach to the message.</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"response-body-parameters\"><strong>Response Body Parameters</strong></h3>\n<ul>\n<li><p><code>count</code> (integer) — Total number of messages in the chatroom.</p>\n</li>\n<li><p><code>pages</code> (integer) — Total number of pages.</p>\n</li>\n<li><p><code>page</code> (integer) — Current page number.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links.</p>\n<ul>\n<li><p><code>next</code> (string or null) — URL of the next page.</p>\n</li>\n<li><p><code>previous</code> (string or null) — URL of the previous page.</p>\n</li>\n<li><p><code>last</code> (string or null) — URL of the last page.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array of objects) — List of chat messages.</p>\n</li>\n</ul>\n<h3 id=\"message-object-fields\"><strong>Message Object Fields</strong></h3>\n<p>Each <strong>message object</strong> includes:</p>\n<ul>\n<li><p><code>uuid</code> (string) — Unique identifier of the message.</p>\n</li>\n<li><p><code>chat</code> (string) — UUID of the chatroom the message belongs to.</p>\n</li>\n<li><p><code>text</code> (string) — Message text.</p>\n</li>\n<li><p><code>files</code> (array) — List of files attached to the message.</p>\n</li>\n<li><p><code>owner</code> (integer) — Identifier of the message author.</p>\n</li>\n<li><p><code>avatar</code> (string) — URL of the author’s avatar image.</p>\n</li>\n<li><p><code>like</code> (object) — Like and dislike information.</p>\n<ul>\n<li><p><code>like_count</code> (integer) — Total number of likes.</p>\n</li>\n<li><p><code>dislike_count</code> (integer) — Total number of dislikes.</p>\n</li>\n<li><p><code>liked</code> (boolean) — Whether the current user liked the message.</p>\n</li>\n<li><p><code>disliked</code> (boolean) — Whether the current user disliked the message.</p>\n</li>\n</ul>\n</li>\n<li><p><code>is_system</code> (boolean) — Indicates whether the message is a system message.</p>\n</li>\n<li><p><code>created</code> (string) — Message creation date and time in ISO 8601 format.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","chatrooms","{chatroom_id}","messages",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"d8ed9e3c-cbda-43ab-ae13-589b03aa40c1","name":"Failed response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n    \"files\": [123, 456]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/chatrooms/444303b6-ff9c-48ff-b0f4-428ff45d4712/messages/"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": \"You_cannot_send_a_message_because_the_ticket_is_hidden_from_the_dweller_(internal_ticket)_Please_change_the_ticket_visibility_settings\",\n    \"status_code\": 403\n}"},{"id":"76bfbb44-5020-4dc1-bcb6-65bb078390af","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"files\": [29047925]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/chatrooms/444303b6-ff9c-48ff-b0f4-428ff45d4712/messages/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"uuid\": \"167be23e-3cfc-4f9d-878f-fad2d14f5e69\",\n    \"chat\": \"444303b6-ff9c-48ff-b0f4-428ff45d4712\",\n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"files\": [\n        29047925\n    ],\n    \"owner\": 2420797,\n    \"avatar\": \"https://files.idwell.at/sys/v2/thumbnails/170X170/sys/default_avatar.png\",\n    \"like\": {\n        \"like_count\": 0,\n        \"dislike_count\": 0,\n        \"liked\": false,\n        \"disliked\": false\n    },\n    \"is_system\": false,\n    \"created\": \"2026-02-02T16:33:51.666458+03:00\"\n}"}],"_postman_id":"be1300cb-0576-4fba-9f22-53eff9b97b30"},{"name":"Create chat","id":"27e72b2c-844d-4a79-9e20-a8a0ad30fa0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"public\": \"boolean\",    \n    \"text\": \"string\",\n    \"files\": \"array or null\"\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/{request_id}/messages/","description":"<h3 id=\"create-request-chatroom-publicprivate\"><strong>Create request chatroom (public/private)</strong></h3>\n<p>Creates a request chatroom.</p>\n<p>If the chatroom does not exist yet, it will be created automatically together with the first message.</p>\n<p>After the chatroom is created, additional messages can be sent using:<br /><code>POST /api/rest/v1/chatrooms/{chatroom_id}/messages/</code></p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/requests/{request_id}/messages/</code></p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint allows sending a message to a request chatroom (public or private).</p>\n<p>If the request does not yet have a chatroom of the selected type, the system will:</p>\n<ol>\n<li><p>Create the chatroom.</p>\n</li>\n<li><p>Create the first message inside it.</p>\n</li>\n</ol>\n<p>Messages cannot be created for archived requests.</p>\n<h3 id=\"path-parameters\"><strong>Path Parameters</strong></h3>\n<ul>\n<li><code>request_id</code> (string, <strong>required</strong>) — Identifier of the request.</li>\n</ul>\n<hr />\n<h3 id=\"request-body-parameters-json\"><strong>Request Body Parameters (JSON)</strong></h3>\n<ul>\n<li><p><code>public</code> (boolean, <strong>required</strong>) — Defines which chatroom the message will be sent to:</p>\n<ul>\n<li><p><code>true</code> — public chatroom (visible to dwellers)</p>\n</li>\n<li><p><code>false</code> — private chatroom (for staff only)</p>\n</li>\n</ul>\n</li>\n<li><p><code>text</code> (string, optional) — Message text. Supports HTML formatting. Required if <code>files</code> is not provided.</p>\n</li>\n<li><p><code>files</code> (array of integers, optional) — List of file identifiers to attach to the message.<br />  Required if <code>text</code> is not provided.</p>\n</li>\n</ul>\n<h3 id=\"response-fields\"><strong>Response Fields</strong></h3>\n<ul>\n<li><p><code>uuid</code> (string) — Unique identifier of the created message.</p>\n</li>\n<li><p><code>chat</code> (string) — UUID of the chatroom.</p>\n</li>\n<li><p><code>text</code> (string) — Message content (HTML supported).</p>\n</li>\n<li><p><code>files</code> (array of integers) — List of attached file identifiers.</p>\n</li>\n<li><p><code>owner</code> (integer) — Identifier of the message author.</p>\n</li>\n<li><p><code>avatar</code> (string) — URL of the author’s avatar.</p>\n</li>\n<li><p><code>like</code> (object) — Like and dislike information:</p>\n<ul>\n<li><p><code>like_count</code>(integer)</p>\n</li>\n<li><p><code>dislike_count</code>(integer)</p>\n</li>\n<li><p><code>liked</code>(boolean)</p>\n</li>\n<li><p><code>disliked</code>(boolean)</p>\n</li>\n</ul>\n</li>\n<li><p><code>is_system</code> (boolean) — Indicates whether the message is a system message.</p>\n</li>\n<li><p><code>created</code> (string) — Message creation date and time (ISO 8601 format).</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","requests","{request_id}","messages",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"21b4181c-a421-4cd4-9f46-2184e242610e","name":"Create chat","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"public\": false,    \n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"files\": [638590]\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/requests/123/messages/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"uuid\": \"c768bab5-c31a-4561-9232-cb94b85aa921\",\n    \"chat\": \"6c80d9a8-2efe-4ada-b521-02d4c79968c4\",\n    \"text\": \"<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\",\n    \"files\": [\n        638590\n    ],\n    \"owner\": 55637,\n    \"avatar\": \"https://files.idwell.at/demo.idwell.at/v2/thumbnails/170X170/demo.idwell.at/private/2024/08/7f3a639b-bf0c-4903-8d1d-c6827c56a68d.png\",\n    \"like\": {\n        \"like_count\": 0,\n        \"dislike_count\": 0,\n        \"liked\": false,\n        \"disliked\": false\n    },\n    \"is_system\": false,\n    \"created\": \"2026-02-10T10:35:39.901043+01:00\"\n}"}],"_postman_id":"27e72b2c-844d-4a79-9e20-a8a0ad30fa0a"}],"id":"6ef97f1d-3ee6-40a9-8ff1-f781e2002ed8","description":"<h2 id=\"description\">Description</h2>\n<p>The color labels for Request objects</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get chatroom messages</td>\n<td><code>/api/rest/v1/chatrooms/{chatroom_id}/messages/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access to chats of requests assigned to the Manager or created by the Manager</td>\n</tr>\n<tr>\n<td>Create chatroom message</td>\n<td><code>/api/rest/v1/chatrooms/{chatroom_id}/messages/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access to chats of requests assigned to the Manager or created by the Manager</td>\n</tr>\n<tr>\n<td>Create chat</td>\n<td><code>/api/rest/v1/requests/{request_id}/messages/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access to chats of requests assigned to the Manager or created by the Manager</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"required-params\">Required Params</h2>\n<ul>\n<li><code>chatroom_id</code> (path): The unique key of the chatroom .</li>\n</ul>\n<h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li>Returns a paginated list of messages for the specified chatroom.</li>\n</ul>\n","_postman_id":"6ef97f1d-3ee6-40a9-8ff1-f781e2002ed8"},{"name":"Contractor","item":[{"name":"Get contractor","id":"d797b493-0c7c-4926-8818-36a67abe6c82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contractors/{contractor_id}/","description":"<h3 id=\"get-contractor-by-id\"><strong>Get contractor by ID</strong></h3>\n<p>Returns detailed information about a contractor by its identifier.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/contractors/{contractor_id}/</code></p>\n<h3 id=\"description\"><strong>Description</strong></h3>\n<p>This endpoint returns contractor details including the contractor name, email address and external identifier.</p>\n<p>Archived contractors are also returned by this endpoint.</p>\n<h3 id=\"path-parameters\"><strong>Path Parameters</strong></h3>\n<ul>\n<li><code>contractor_id</code> (integer, <strong>required</strong>) — Unique identifier of the contractor.</li>\n</ul>\n<hr />\n<h3 id=\"response-fields\"><strong>Response Fields</strong></h3>\n<ul>\n<li><p><code>id</code> (integer) — Unique identifier of the contractor.</p>\n</li>\n<li><p><code>name</code> (string) — Contractor name.</p>\n</li>\n<li><p><code>email</code> (string|null) — Contractor email address.</p>\n</li>\n<li><p><code>external_id</code> (string|null) — External contractor identifier.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contractors","{contractor_id}",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"bbb909a7-cd3b-4372-82b7-2aeb2cd6a243","name":"Get contractor","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contractors/123/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 98932,\n    \"name\": \"NordWasser Technik GmbH\",\n    \"email\": \"info@nord-wasser.com\",\n    \"external_id\": \"ex-123\"\n}"}],"_postman_id":"d797b493-0c7c-4926-8818-36a67abe6c82"},{"name":"Get contractors list","id":"973ab16b-c8d0-4a63-b5c5-08f2ff4ecb91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contractors/?building=int&name=string&email=string&phone=string&category=int","description":"<h2 id=\"get-contractors\">Get contractors</h2>\n<p>Returns a paginated list of contractors.</p>\n<p>The list can be filtered by building, contractor name, email, phone number or category.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /api/rest/v1/contractors/</code></p>\n<h3 id=\"query-parameters\"><strong>Query Parameters</strong></h3>\n<ul>\n<li><p><code>building</code> (integer, optional) — Return only contractors assigned to the specified building.</p>\n</li>\n<li><p><code>name</code> (string, optional) — Filter contractors by name.</p>\n</li>\n<li><p><code>email</code> (string, optional) — Filter contractors by email address.</p>\n</li>\n<li><p><code>phone</code> (string, optional) — Filter contractors by phone number.</p>\n</li>\n<li><p><code>category</code> (integer, optional) — Return only contractors assigned to the specified contractor category.</p>\n</li>\n</ul>\n<h3 id=\"response-fields\"><strong>Response Fields</strong></h3>\n<ul>\n<li><p><code>count</code> (integer) — Total number of contractors matching the filters.</p>\n</li>\n<li><p><code>pages</code> (integer) — Total number of result pages.</p>\n</li>\n<li><p><code>page</code> (integer) — Current page number.</p>\n</li>\n<li><p><code>links</code> (object) — Pagination links:</p>\n<ul>\n<li><p><code>next</code> (string|null) — URL of the next page.</p>\n</li>\n<li><p><code>previous</code> (string|null) — URL of the previous page.</p>\n</li>\n<li><p><code>last</code> (string|null) — URL of the last page.</p>\n</li>\n</ul>\n</li>\n<li><p><code>results</code> (array) — List of contractors. Each contractor contains:</p>\n<ul>\n<li><p><code>id</code> (integer) — Contractor identifier.</p>\n</li>\n<li><p><code>name</code> (string) — Contractor name.</p>\n</li>\n<li><p><code>email</code> (string|null) — Contractor email address.</p>\n</li>\n<li><p><code>phone</code> (string|null) — Contractor phone number.</p>\n</li>\n<li><p><code>buildings</code> (array) — Buildings assigned to the contractor:</p>\n<ul>\n<li><p><code>id</code> (integer) — Building identifier.</p>\n</li>\n<li><p><code>address</code> (string) — Building address.</p>\n</li>\n</ul>\n</li>\n<li><p><code>categories</code> (array) — Contractor categories:</p>\n<ul>\n<li><p><code>id</code> (integer) — Category identifier.</p>\n</li>\n<li><p><code>name</code> (string) — Category name.</p>\n</li>\n</ul>\n</li>\n<li><p><code>external_id</code> (string|null) — External contractor identifier.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","contractors",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[{"description":{"content":"<p>Filter contractors assigned to the specified building id</p>\n","type":"text/plain"},"key":"building","value":"int"},{"description":{"content":"<p>Filter by contractor name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"description":{"content":"<p>Filter by email</p>\n","type":"text/plain"},"key":"email","value":"string"},{"description":{"content":"<p>Filter by phone</p>\n","type":"text/plain"},"key":"phone","value":"string"},{"description":{"content":"<p>Filter by category id</p>\n","type":"text/plain"},"key":"category","value":"int"}],"variable":[]}},"response":[{"id":"b5e4a8cf-cc07-4054-871f-f37749954bed","name":"Get contractors list","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/contractors/","host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"path":["api","rest","v1","contractors",""],"query":[{"key":"building","value":"int","disabled":true},{"key":"name","value":"string","disabled":true},{"key":"email","value":"string","disabled":true},{"key":"phone","value":"string","disabled":true},{"key":"category","value":"int","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"pages\": 1,\n    \"page\": 1,\n    \"links\": {\n        \"next\": null,\n        \"previous\": null,\n        \"last\": null\n    },\n    \"results\": [\n        {\n            \"id\": 2985199,\n            \"name\": \"CleanHome Services\",\n            \"email\": \"info@cleanhome.de\",\n            \"phone\": \"+3813816219495\",\n            \"buildings\": [\n                {\n                    \"id\": 1368607,\n                    \"address\": \"Derrickburgh, Ziemann Avenue, 38\"\n                },\n                {\n                    \"id\": 1368605,\n                    \"address\": \"Lake Johnnie, Marvin Throughway, 75\"\n                }\n            ],\n            \"categories\": [\n                {\n                    \"id\": 1419464,\n                    \"name\": \"Major\"\n                },\n                {\n                    \"id\": 1419465,\n                    \"name\": \"Minor\"\n                },\n                {\n                    \"id\": 1419466,\n                    \"name\": \"Critical\"\n                }\n            ],\n            \"external_id\": \"EX-d-1234\"\n        },\n        {\n            \"id\": 2985200,\n            \"name\": \"GreenGarden Care\",\n            \"email\": \"gardensolutions@gmail.com\",\n            \"phone\": null,\n            \"buildings\": [],\n            \"categories\": [],\n            \"external_id\": null\n        }\n    ]\n}"}],"_postman_id":"973ab16b-c8d0-4a63-b5c5-08f2ff4ecb91"}],"id":"942c7b90-864d-4b1c-b437-5c2484e4b8ad","description":"<h2 id=\"endpoints\">Endpoints</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Get contractor</td>\n<td>/api/rest/v1/contractors/{contractor_id}/</td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access</td>\n</tr>\n<tr>\n<td>Get contractors list</td>\n<td>/api/rest/v1/contractors/</td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"942c7b90-864d-4b1c-b437-5c2484e4b8ad"},{"name":"Document stapling","item":[{"name":"Create document stapling","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"3e577417-90bb-4e88-83bc-9a90595c8c05"}}],"id":"9ce24cc8-fb1c-4e81-9482-da4a97710fb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token bfad7b6f2ca35fcea6b8c84e01025619a1e2c4d0"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"string\", //required, max 256 chars\r\n    \"final_document_template_name\": \"string\", //required, max 256 chars\r\n    \"file_ids\": \"list of integers\" //optional, max 15 items\r\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/document-staplings/","description":"<p><strong>Create document stapling job</strong></p>\n<p><strong>Endpoint:</strong><br /><code>POST /api/rest/v1/document-staplings/</code></p>\n<p><strong>Request body parameters:</strong></p>\n<ul>\n<li><p><code>name</code> (string, required) &lt;= 256 characters</p>\n</li>\n<li><p><code>final_document_template_name</code> (string, required) &lt;= 256 characters</p>\n</li>\n<li><p><code>file_ids</code> (list of integers, optional) — max 15 items</p>\n</li>\n</ul>\n<p><strong>Response body parameters:</strong></p>\n<ul>\n<li><p><code>id</code> (integer)</p>\n</li>\n<li><p><code>name</code> (string)</p>\n</li>\n<li><p><code>final_document_template_name</code> (string)</p>\n</li>\n<li><p><code>status</code> (integer)</p>\n</li>\n<li><p><code>phase</code> (integer)</p>\n</li>\n<li><p><code>archived</code> (boolean)</p>\n</li>\n<li><p><code>created</code> (datetime)</p>\n</li>\n<li><p><code>updated</code> (datetime)</p>\n</li>\n</ul>\n","urlObject":{"path":["api","rest","v1","document-staplings",""],"host":["https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"],"query":[],"variable":[]}},"response":[{"id":"18b57bad-3edb-43f9-90ba-e3940aa89ebe","name":"Create document stapling","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Bearer 123"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"New stapling\", //required, max 256 chars\r\n    \"final_document_template_name\": \"Final name\", //required, max 256 chars\r\n    \"file_ids\": [693250] //optional, max 15 items\r\n}","options":{"raw":{"language":"json"}}},"url":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io/api/rest/v1/document-staplings/"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"206"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 25 May 2026 15:07:35 GMT"},{"key":"Cache-control","value":"no-cache"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-User-Id","value":"14690"},{"key":"Vary","value":"Authorization"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Set-Cookie","value":"multidb_pin_writes=y; expires=Mon, 25 May 2026 15:07:50 GMT; HttpOnly; Max-Age=15; Path=/; SameSite=Lax"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Authorization,Content-Type,Accept,Origin,User-Agent,Cache-Control,X-Mx-ReqToken,Keep-Alive,If-Modified-Since,X-CSRF-Token,x-csrftoken,X-CSRFToken,X-CSRF-token"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, PATCH"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 6164863a8032b4b19e42aff8915017e2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BUD50-P1"},{"key":"X-Amz-Cf-Id","value":"MRH9EueptojrVOF0QxuXEsKsVauZ7iqjoAGsuDcKgUEPnJmzVu_HWg=="}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": 10166,\n    \"name\": \"New stapling\",\n    \"final_document_template_name\": \"Final name\",\n    \"status\": 0,\n    \"phase\": 0,\n    \"archived\": false,\n    \"created\": \"2026-05-25T17:07:35.732177+02:00\",\n    \"updated\": \"2026-05-25T17:07:35.732199+02:00\"\n}"}],"_postman_id":"9ce24cc8-fb1c-4e81-9482-da4a97710fb3"}],"id":"b2025eaf-cbf3-4218-b837-6bf913a12015","description":"<h3 id=\"description\">Description</h3>\n<p>Document stapling (DocFlow) is the main process of working with a package of documents. As a result, a list of recipients is defined and for each recipient one final PDF document is generated from multiple source files in a given order. The final document is delivered to the recipient via the selected communication channel.</p>\n<p>The process consists of 5 phases: Uploading → Splitting&amp;Mapping → Combination → Saving&amp;Sending → Results. Via the API, external partners can initiate this process by creating a DocFlow record in Phase 1.</p>\n<h3 id=\"endpoints\">Endpoints</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Endpoint</th>\n<th>Access level</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create document stapling</td>\n<td><code>/api/rest/v1/document-staplings/</code></td>\n<td><strong>Admin:</strong> Full access <br /> <strong>Manager:</strong> Full access</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"required-params\">Required Params</h3>\n<p>No required path parameters.</p>\n<h3 id=\"use-cases\">Use Cases</h3>\n<ul>\n<li><p>Creating a DocFlow from an external system and uploading a generated document into Phase 1</p>\n</li>\n<li><p>Initiating the document stapling process on behalf of an external partner without accessing the portal manually</p>\n</li>\n</ul>\n","_postman_id":"b2025eaf-cbf3-4218-b837-6bf913a12015"}],"event":[{"listen":"prerequest","script":{"id":"415fcadf-d9eb-42ae-a51f-dc76dc4d8ea2","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"4e8bc299-025d-45ed-9fc0-138025863ac3","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"https://a03fc43c-64f5-43c1-a7f7-ff6392b07a54.mock.pstmn.io"}]}