{"info":{"_postman_id":"aad93535-532a-4522-8179-bad0e9a6f744","name":"Wprentals api","description":"<html><head></head><body><p>The WP Rentals API makes it simple for developers to access and manage property listings from the WP Rentals WordPress theme. Built by wprentals.org, this API helps you fetch property data, handle bookings, and update content on WP Rentals websites.<br>The API lets you request exactly the property information you need - from basic details like prices and titles to complete property data including features, photos, and booking availability. It works smoothly with WP Rentals (<a href=\"https://wprentals.org\">https://wprentals.org</a>), a WordPress theme built specifically for vacation rentals and property booking websites.<br>Developers can use this API to:</p>\n<p>Get property details and availability<br>Manage bookings and reservations<br>Update property information<br>Handle payments and invoices<br>Access property photos and media<br>Control user access and permissions</p>\n<p>If you're building a rental website with WordPress, WP Rentals provides both a full-featured theme and the tools to customize it through this straightforward API. The clear documentation and standard REST format make it quick to start using in your projects.<br>Visit wprentals.org to learn more about using <a href=\"https://wprentals.org\">WP Rentals for your vacation rental or property booking website.</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"229114","collectionId":"aad93535-532a-4522-8179-bad0e9a6f744","publishedId":"2sAYQfE9PK","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-01-24T14:55:06.000Z"},"item":[{"name":"Get Authentication Token","id":"e9621f23-f7a5-452f-83dc-89f70af344ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"cretu\",\r\n  \"password\": \"remus\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/jwt-auth/v1/token","description":"<p>DESCRIPTION:<br />Authenticates a user and returns a JWT token for API access.</p>\n<p>INPUT PARAMETERS:</p>\n<p>username</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Required</p>\n</li>\n<li><p>WordPress username or email</p>\n</li>\n</ul>\n<p>password</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Required</p>\n</li>\n<li><p>User's password</p>\n</li>\n</ul>\n<p>EXAMPLE REQUEST:<br />{<br />\"username\": \"<a href=\"https://mailto:user@example.com\">user@example.com</a>\",<br />\"password\": \"user_password\"<br />}</p>\n","urlObject":{"path":["wp-json","jwt-auth","v1","token"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"63cb6f9a-7047-4f8c-87f3-c39dccc897b9","name":"Get Authentication Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"cretu\",\r\n  \"password\": \"remus\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/jwt-auth/v1/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 13:55:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"{{vault:json-web-token}}\",\n    \"user_email\": \"admin2@wprentals.com\",\n    \"user_nicename\": \"cretu\",\n    \"user_display_name\": \"cretu\"\n}"}],"_postman_id":"e9621f23-f7a5-452f-83dc-89f70af344ce"},{"name":"Get all properties","id":"ef4e4050-ea72-4283-9479-1646f6ec2715","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"taxonomies\": {\r\n        \"property_category\": [\r\n            \"apartment\",\r\n            \"house\"\r\n        ]\r\n    },\r\n    \"meta\": {\r\n        \"property_price\": {\r\n            \"value\": \"1\",\r\n            \"compare\": \">=\",\r\n            \"type\": \"NUMERIC\"\r\n        }\r\n       \r\n    },\r\n    \"order\": 1,\r\n    \"posts_per_page\": 20,\r\n    \"page\": 1,\r\n    \"response_type\": \"full\",\r\n    \"userID\":1,\r\n    \"fields\":\"ID,title,meta.property_price,terms.property_features,media\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/properties","description":"<p>This endpoint is publicly accessible<br />No authentication is required<br />Anyone can make requests to this endpoint<br />No JWT token is needed in the request header</p>\n<p>INPUT PARAMETERS:</p>\n<p>page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Optional, defaults to 1</p>\n</li>\n<li><p>Controls pagination of results</p>\n</li>\n</ul>\n<p>posts_per_page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Optional, defaults to 10</p>\n</li>\n<li><p>Maximum value: 100</p>\n</li>\n<li><p>Controls number of results per page</p>\n</li>\n</ul>\n<p>order</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Optional, defaults to 0</p>\n</li>\n<li><p>Controls sorting order of results</p>\n</li>\n</ul>\n<p>response_type</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional, defaults to 'basic'</p>\n</li>\n<li><p>Accepts: 'basic' or 'full'</p>\n</li>\n<li><p>Controls detail level of response</p>\n</li>\n</ul>\n<p>userID</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Filters properties by owner ID</p>\n</li>\n</ul>\n<p>taxonomies</p>\n<ul>\n<li><p>Type: object</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Filters properties by taxonomy terms</p>\n</li>\n<li><p>Each taxonomy can contain multiple terms (OR relationship)</p>\n</li>\n<li><p>Available taxonomies:</p>\n<ul>\n<li><p>property_category</p>\n</li>\n<li><p>property_action_category</p>\n</li>\n<li><p>property_city</p>\n</li>\n<li><p>property_area</p>\n</li>\n<li><p>property_features</p>\n</li>\n<li><p>\"property_category\": [\"apartment\", \"house\"],</p>\n</li>\n<li><p>\"property_city\": [\"new-york\"]</p>\n</li>\n<li><p>}<br />  }</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>meta</p>\n<ul>\n<li><p>Type: object</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Filters properties by meta fields</p>\n</li>\n<li><p>Each meta query requires value, compare, and type</p>\n</li>\n<li><p>Compare operators:</p>\n<ul>\n<li><p>=, !=</p>\n</li>\n<li><blockquote>\n<p>, &gt;=, &lt;, &lt;=</p>\n</blockquote>\n</li>\n</ul>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- LIKE, NOT LIKE\n- IN, NOT IN\n- BETWEEN, NOT BETWEEN\n- EXISTS, NOT EXISTS\n\n</code></pre><ul>\n<li><p>Available types:</p>\n<ul>\n<li><p>NUMERIC</p>\n</li>\n<li><p>BINARY</p>\n</li>\n<li><p>CHAR</p>\n</li>\n<li><p>DATE</p>\n</li>\n<li><p>DATETIME</p>\n</li>\n<li><p>DECIMAL</p>\n</li>\n<li><p>SIGNED</p>\n</li>\n<li><p>TIME</p>\n</li>\n<li><p>UNSIGNED<br />  Example:<br />  {<br />  \"meta\": {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>        \"property_price\": {\n            \"value\": \"100000\",\n            \"compare\": \"&lt;=\",\n            \"type\": \"NUMERIC\"\n        }\n\n</code></pre><p>  }<br />  }</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>fields</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Comma-separated list of fields to include in response</p>\n</li>\n<li><p>Supports dot notation for nested fields<br />  Example: \"id,title,meta.property_price,taxonomies.property_category\"</p>\n</li>\n</ul>\n<p>COMPLETE REQUEST EXAMPLE:<br />{<br />\"page\": 1,<br />\"posts_per_page\": 10,<br />\"response_type\": \"full\",<br />\"taxonomies\": {<br />\"property_category\": [\"apartment\"],<br />\"property_city\": [\"new-york\"]<br />},<br />\"meta\": {<br />\"property_price\": {<br />\"value\": [\"50000\", \"200000\"],<br />\"compare\": \"BETWEEN\",<br />\"type\": \"NUMERIC\"<br />}<br />},<br />\"fields\": \"id,title,price,location\"<br />}</p>\n<p>POST {{base_url}}/wp-json/wprentals/v1/properties</p>\n<p>RESPONSE STRUCTURE:</p>\n<p>status</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Values: \"success\" or \"error\"</p>\n</li>\n<li><p>Indicates if request was successful</p>\n</li>\n</ul>\n<p>query_args</p>\n<ul>\n<li><p>Type: object</p>\n</li>\n<li><p>Contains all parameters used in the query</p>\n</li>\n<li><p>Useful for debugging and query verification</p>\n</li>\n</ul>\n<p>data</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Array of property objects</p>\n</li>\n<li><p>Content varies based on response_type:</p>\n<p>  BASIC RESPONSE FIELDS (response_type = 'basic'):</p>\n<ul>\n<li><p>id: integer (Property ID)</p>\n</li>\n<li><p>title: string (Property title)</p>\n</li>\n<li><p>price: string (Property price)</p>\n</li>\n<li><p>location: string (Property address)</p>\n</li>\n</ul>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>FULL RESPONSE FIELDS (response_type = 'full'):\n- id: integer (Property ID)\n- title: string (Property title)\n- content: string (Full property description)\n- status: string (Post status)\n- type: string (Post type)\n- author: {  \n    id: integer (Author ID)  \n    name: string (Author name)  \n    email: string (Author email)  \n    }\n- date: string (Creation date)\n- modified: string (Last modification date)\n- meta: {  \n    property_price: string  \n    property_price_per_week: string  \n    property_price_per_month: string  \n    property_size: string  \n    property_rooms: string  \n    property_bedrooms: string  \n    property_bathrooms: string  \n    property_address: string  \n    property_city: string  \n    property_area: string  \n    property_zip: string  \n    property_country: string  \n    property_status: string  \n    property_features: array  \n    property_label: string  \n    property_label_before: string  \n    local_booking_type: string  \n    ... (additional meta fields)  \n    }\n- taxonomies: {  \n    property_category: array  \n    property_action_category: array  \n    property_city: array  \n    property_area: array  \n    property_features: array  \n    property_status: array  \n    }\n- images: array of {  \n    id: integer (Image ID)  \n    url: string (Image URL)  \n    title: string (Image title)  \n    alt: string (Image alt text)  \n    }\n\n</code></pre><p>total</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Total number of properties matching the query</p>\n</li>\n</ul>\n<p>pages</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Total number of pages available</p>\n</li>\n</ul>\n<p>EXAMPLE RESPONSE:<br />{<br />\"status\": \"success\",<br />\"query_args\": {<br />\"page\": 1,<br />\"posts_per_page\": 10,<br />\"post_type\": \"estate_property\"<br />},<br />\"data\": [<br />{<br />\"id\": 123,<br />\"title\": \"Luxury Apartment\",<br />\"price\": \"100000\",<br />\"location\": \"123 Main St, New York\",<br />\"meta\": {<br />\"property_price\": \"100000\",<br />\"property_size\": \"150\",<br />\"property_bedrooms\": \"2\"<br />},<br />\"taxonomies\": {<br />\"property_category\": [\"apartment\"],<br />\"property_city\": [\"new-york\"]<br />}<br />}<br />// ... additional properties<br />],<br />\"total\": 150,<br />\"pages\": 15<br />}</p>\n<p>ERROR RESPONSE:<br />{<br />\"status\": \"error\",<br />\"message\": \"Error description\",<br />\"code\": \"error_code\"<br />}</p>\n","urlObject":{"path":["wp-json","wprentals","v1","properties"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"591ee18c-3760-4b08-ba4b-b9b10e48ed44","name":"https://yoursite.com/wp-json/wprentals/v1/properties","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"taxonomies\": {\r\n        \"property_category\": [\r\n            \"apartment\",\r\n            \"house\"\r\n        ]\r\n    },\r\n    \"meta\": {\r\n        \"property_price\": {\r\n            \"value\": \"1\",\r\n            \"compare\": \">=\",\r\n            \"type\": \"NUMERIC\"\r\n        }\r\n       \r\n    },\r\n    \"order\": 1,\r\n    \"posts_per_page\": 20,\r\n    \"page\": 1,\r\n    \"response_type\": \"full\",\r\n    \"userID\":1,\r\n    \"fields\":\"ID,title,meta.property_price,terms.property_features,media\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/properties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 13:55:03 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"query_args\": {\n        \"post_type\": \"estate_property\",\n        \"post_status\": \"publish\",\n        \"paged\": 1,\n        \"posts_per_page\": 20,\n        \"fields\": \"ids\",\n        \"author\": 1,\n        \"meta_query\": {\n            \"0\": {\n                \"key\": \"property_price\",\n                \"compare\": \">=\",\n                \"value\": \"1\",\n                \"type\": \"NUMERIC\"\n            },\n            \"relation\": \"AND\"\n        },\n        \"tax_query\": {\n            \"0\": {\n                \"taxonomy\": \"property_category\",\n                \"field\": \"slug\",\n                \"terms\": [\n                    \"apartment\",\n                    \"house\"\n                ],\n                \"operator\": \"IN\"\n            },\n            \"relation\": \"AND\"\n        },\n        \"orderby\": \"meta_value_num\",\n        \"meta_key\": \"property_price\",\n        \"order\": \"DESC\"\n    },\n    \"data\": [\n        {\n            \"ID\": 107,\n            \"title\": \"Sunny 2 Bedrooms Video\",\n            \"meta\": {\n                \"property_price\": \"225\"\n            },\n            \"terms\": {\n                \"property_features\": [\n                    {\n                        \"term_id\": 21,\n                        \"name\": \"Dryer\",\n                        \"slug\": \"dryer\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 26,\n                        \"name\": \"Essentials\",\n                        \"slug\": \"essentials\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 31,\n                        \"name\": \"Gym\",\n                        \"slug\": \"gym\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 32,\n                        \"name\": \"Heating\",\n                        \"slug\": \"heating\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 36,\n                        \"name\": \"Internet\",\n                        \"slug\": \"internet\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 37,\n                        \"name\": \"Kitchen\",\n                        \"slug\": \"kitchen\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 53,\n                        \"name\": \"TV\",\n                        \"slug\": \"tv\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 55,\n                        \"name\": \"Washer\",\n                        \"slug\": \"washer\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"media\": {\n                \"35431\": {\n                    \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-300x169.jpeg\",\n                    \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-150x150.jpeg\",\n                    \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-768x432.jpeg\",\n                    \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-250x220.jpeg\",\n                    \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-400x242.jpeg\",\n                    \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-805x453.jpeg\",\n                    \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-143x83.jpeg\",\n                    \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-400x314.jpeg\",\n                    \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-240x160.jpeg\",\n                    \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-600x456.jpeg\",\n                    \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2-60x60.jpeg\",\n                    \"full\": \"https://rentals.me/wp-content/uploads/2015/04/19-18-2.jpeg\"\n                },\n                \"35432\": {\n                    \"medium\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-300x169.jpeg\",\n                    \"thumbnail\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-150x150.jpeg\",\n                    \"medium_large\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-768x432.jpeg\",\n                    \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-250x220.jpeg\",\n                    \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-400x242.jpeg\",\n                    \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-805x453.jpeg\",\n                    \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-143x83.jpeg\",\n                    \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-400x314.jpeg\",\n                    \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-240x160.jpeg\",\n                    \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-600x456.jpeg\",\n                    \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2-60x60.jpeg\",\n                    \"full\": \"https://rentals.me/wp-content/uploads/2023/02/1-19-2.jpeg\"\n                }\n            }\n        },\n        {\n            \"ID\": 101,\n            \"title\": \"Chic Cole Valley House\",\n            \"meta\": {\n                \"property_price\": \"40\"\n            },\n            \"terms\": {\n                \"property_features\": [\n                    {\n                        \"term_id\": 21,\n                        \"name\": \"Dryer\",\n                        \"slug\": \"dryer\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 26,\n                        \"name\": \"Essentials\",\n                        \"slug\": \"essentials\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 31,\n                        \"name\": \"Gym\",\n                        \"slug\": \"gym\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 37,\n                        \"name\": \"Kitchen\",\n                        \"slug\": \"kitchen\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 46,\n                        \"name\": \"Pool\",\n                        \"slug\": \"pool\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 53,\n                        \"name\": \"TV\",\n                        \"slug\": \"tv\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"term_id\": 55,\n                        \"name\": \"Washer\",\n                        \"slug\": \"washer\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"media\": {\n                \"1899\": {\n                    \"medium\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-300x222.jpg\",\n                    \"large\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-1024x757.jpg\",\n                    \"thumbnail\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-150x150.jpg\",\n                    \"medium_large\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-768x568.jpg\",\n                    \"1536x1536\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-1536x1135.jpg\",\n                    \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-250x220.jpg\",\n                    \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-400x242.jpg\",\n                    \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-805x453.jpg\",\n                    \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-143x83.jpg\",\n                    \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-400x314.jpg\",\n                    \"wpestate_property_featured\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-1170x921.jpg\",\n                    \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-240x160.jpg\",\n                    \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-600x456.jpg\",\n                    \"wpestate_property_full_map\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-1920x790.jpg\",\n                    \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2-60x60.jpg\",\n                    \"full\": \"https://rentals.me/wp-content/uploads/2018/08/8-2-1-3-18-2.jpg\"\n                }\n            }\n        }\n    ],\n    \"total\": 2,\n    \"pages\": 1\n}"}],"_postman_id":"ef4e4050-ea72-4283-9479-1646f6ec2715"},{"name":"Get a property with hand picked details","id":"9b0e2c65-c47c-4754-9d77-a9f03369a429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/wp-json/wprentals/v1/property/36604?fields=ID,title,meta.property_price,terms.property_features,media","description":"<p>Authorization:</p>\n<p>No special authorization required </p>\n<p>URL Parameters:</p>\n<p>id (required) - The ID of the property to retrieve</p>\n<p>Query Parameters:</p>\n<p>fields (optional) - Comma-separated list of fields to return. Supports dot notation for nested fields</p>\n<p>Examples:</p>\n<p>Basic fields: ID, title, content\nMeta fields: meta.property_price, meta.property_size\nTaxonomy terms: terms.property_features, terms.property_category\nMedia: media</p>\n<p>response_type (optional)</p>\n<p>Values: basic or full (default: full)\nbasic returns only essential property data\nfull returns complete property data</p>\n","urlObject":{"path":["wp-json","wprentals","v1","property","36604"],"host":["{{base_url}}"],"query":[{"key":"fields","value":"ID,title,meta.property_price,terms.property_features,media"}],"variable":[]}},"response":[{"id":"b7e25802-0c7e-4140-afbf-b87b6b98ffe8","name":"Get a property with hand picked details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/wp-json/wprentals/v1/property/36604?fields=ID,title,meta.property_price,terms.property_features,media","host":["{{base_url}}"],"path":["wp-json","wprentals","v1","property","36604"],"query":[{"key":"fields","value":"ID,title,meta.property_price,terms.property_features,media"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Mon, 27 Jan 2025 07:18:04 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ID\": \"36604\",\n    \"title\": \"Perfect Holiday Cabin\",\n    \"meta\": {\n        \"property_price\": \"23\"\n    },\n    \"terms\": {\n        \"property_features\": [\n            {\n                \"term_id\": 19,\n                \"name\": \"Doorman\",\n                \"slug\": \"doorman\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 21,\n                \"name\": \"Dryer\",\n                \"slug\": \"dryer\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 32,\n                \"name\": \"Heating\",\n                \"slug\": \"heating\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 37,\n                \"name\": \"Kitchen\",\n                \"slug\": \"kitchen\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 53,\n                \"name\": \"TV\",\n                \"slug\": \"tv\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 55,\n                \"name\": \"Washer\",\n                \"slug\": \"washer\",\n                \"description\": \"\"\n            }\n        ]\n    },\n    \"media\": {\n        \"36693\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.4.jpeg\"\n        },\n        \"36695\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.6.jpeg\"\n        },\n        \"36696\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.7.jpeg\"\n        },\n        \"36697\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.8.jpeg\"\n        },\n        \"37012\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-300x231.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-150x150.jpg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-768x591.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-805x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange.jpg\"\n        },\n        \"37013\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-300x225.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-150x150.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-612x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse.jpg\"\n        }\n    }\n}"}],"_postman_id":"9b0e2c65-c47c-4754-9d77-a9f03369a429"},{"name":"Get Property details","id":"1151924f-b590-4806-98c0-fd108f53a41e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/36604","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li>Publicly accessible endpoint</li>\n<li>No authentication required</li>\n<li>Returns public property data</li>\n<li>Property must exist and be published</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<p>URL Parameters:\nid</p>\n<ul>\n<li>Type: integer</li>\n<li>Required</li>\n<li>Property ID in the path</li>\n</ul>\n<p>Query Parameters:\nresponse_type</p>\n<ul>\n<li>Type: string</li>\n<li>Optional, defaults to 'full'</li>\n<li>Accepts: 'basic' or 'full'</li>\n<li>Controls detail level of response</li>\n</ul>\n<p>fields</p>\n<ul>\n<li>Type: string</li>\n<li>Optional</li>\n<li>Comma-separated list of fields to return</li>\n<li>Example: \"id,title,meta.property_price\"</li>\n</ul>\n<p>RESPONSE STRUCTURE:</p>\n<p>BASIC RESPONSE (response_type = 'basic'):\n{\n    \"id\": integer,\n    \"title\": string,\n    \"price\": string,\n    \"location\": string\n}</p>\n<p>FULL RESPONSE (response_type = 'full'):\n{\n    \"id\": integer,\n    \"title\": string,\n    \"content\": string,\n    \"status\": string,\n    \"type\": string,\n    \"author\": {\n        \"id\": integer,\n        \"name\": string,\n        \"email\": string\n    },\n    \"date\": string,\n    \"modified\": string,\n    \"meta\": {\n        \"property_price\": string,\n        \"property_size\": string,\n        \"property_rooms\": string,\n        \"property_bedrooms\": string,\n        \"property_bathrooms\": string,\n        \"property_address\": string,\n        \"property_city\": string,\n        \"property_area\": string,\n        \"property_zip\": string,\n        \"property_country\": string,\n        \"property_status\": string,\n        \"property_price_per_week\": string,\n        \"property_price_per_month\": string,\n        \"property_label\": string,\n        \"property_label_before\": string,\n        \"local_booking_type\": string\n    },\n    \"taxonomies\": {\n        \"property_category\": array,\n        \"property_action_category\": array,\n        \"property_city\": array,\n        \"property_area\": array,\n        \"property_features\": array\n    },\n    \"images\": [\n        {\n            \"id\": integer,\n            \"url\": string,\n            \"title\": string,\n            \"alt\": string\n        }\n    ]\n}</p>\n","urlObject":{"path":["wp-json","wprentals","v1","property","36604"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f0cc6be5-7c96-4832-a0c5-099e406514e1","name":"Get Property details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/36604"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:20:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3922","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.6 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ID\": 36604,\n    \"title\": \"Perfect Holiday Cabin\",\n    \"description\": \"Beautiful 3rd floor P/House w/in a short walk/drive to restaurants, stores and public trans. Private room/bath featuring top amenities. HDTV, internet, biz center (in room), washer/dryer, wine fridge, gas fireplace, surround sound, private roof deck.\\n\\nOne bus ride away from subway. Wifi, eat in kitchen, cable tshopsv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square.\",\n    \"excerpt\": \"Beautiful 3rd floor P/House w/in a short walk/drive to restaurants, stores and public trans. Private room/bath featuring top amenities. HDTV, internet, biz center (in room), washer/dryer, wine fridge, gas fireplace, surround sound, private roof deck. One bus ride away from subway. Wifi, eat in kitchen, cable tshopsv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square.\",\n    \"media\": {\n        \"36693\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.4.jpeg\"\n        },\n        \"36695\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.6.jpeg\"\n        },\n        \"36696\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.7.jpeg\"\n        },\n        \"36697\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.8.jpeg\"\n        },\n        \"37012\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-300x231.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-150x150.jpg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-768x591.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-805x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange.jpg\"\n        },\n        \"37013\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-300x225.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-150x150.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-612x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse.jpg\"\n        }\n    },\n    \"terms\": {\n        \"property_area\": [\n            {\n                \"term_id\": 10,\n                \"name\": \"Arlington, Baltimore\",\n                \"slug\": \"arlington-baltimore\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_city\": [\n            {\n                \"term_id\": 12,\n                \"name\": \"Baltimore\",\n                \"slug\": \"baltimore\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_features\": [\n            {\n                \"term_id\": 19,\n                \"name\": \"Doorman\",\n                \"slug\": \"doorman\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 21,\n                \"name\": \"Dryer\",\n                \"slug\": \"dryer\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 32,\n                \"name\": \"Heating\",\n                \"slug\": \"heating\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 37,\n                \"name\": \"Kitchen\",\n                \"slug\": \"kitchen\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 53,\n                \"name\": \"TV\",\n                \"slug\": \"tv\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 55,\n                \"name\": \"Washer\",\n                \"slug\": \"washer\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_category\": [\n            {\n                \"term_id\": 20,\n                \"name\": \"Dorm\",\n                \"slug\": \"dorm\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_action_category\": [\n            {\n                \"term_id\": 50,\n                \"name\": \"Shared room\",\n                \"slug\": \"shared-room\",\n                \"description\": \"Shared room\"\n            }\n        ]\n    },\n    \"meta\": {\n        \"property_price\": \"23\",\n        \"local_booking_type\": \"1\",\n        \"property_label\": \"\",\n        \"property_label_before\": \"\",\n        \"property_size\": \"250\",\n        \"property_rooms\": \"1\",\n        \"property_bedrooms\": \"1\",\n        \"property_bathrooms\": \"1\",\n        \"property_bedrooms_details\": {\n            \"King Bed\": [\n                0\n            ],\n            \"Queen Bed\": [\n                0\n            ],\n            \"Double\": [\n                0\n            ],\n            \"Single\": [\n                0\n            ],\n            \"Couch\": [\n                0\n            ]\n        },\n        \"property_address\": \"West Iowa Street\",\n        \"property_county\": \"Maryland\",\n        \"property_state\": \"MD\",\n        \"property_zip\": \"60714\",\n        \"property_country\": \"United States\",\n        \"property_admin_area\": \"\",\n        \"property_status\": \"normal\",\n        \"property_price_per_week\": \"20\",\n        \"property_price_per_month\": \"15\",\n        \"cleaning_fee_per_day\": \"0\",\n        \"city_fee_per_day\": \"3\",\n        \"price_per_guest_from_one\": \"0\",\n        \"property_latitude\": \"39.2838253476\",\n        \"property_longitude\": \"-76.5767669678\",\n        \"google_camera_angle\": \"0\",\n        \"property_agent\": \"1\",\n        \"guest_no\": \"5\",\n        \"property_affiliate\": \"\",\n        \"instant_booking\": \"0\",\n        \"children_as_guests\": \"0\",\n        \"overload_guest\": \"1\",\n        \"max_extra_guest_no\": \"0\",\n        \"wp_estate_replace_booking_form_local\": \"0\",\n        \"property_category\": \"\",\n        \"property_action_category\": \"\",\n        \"property_city\": \"\",\n        \"property_area\": \"\",\n        \"property_area_front\": \"\",\n        \"city_fee\": \"3\",\n        \"cleaning_fee\": \"15\",\n        \"price_per_weekeend\": \"45\",\n        \"checkin_change_over\": \"7\",\n        \"checkin_checkout_change_over\": \"7\",\n        \"min_days_booking\": \"3\",\n        \"extra_price_per_guest\": \"10\",\n        \"city_fee_percent\": \"0\",\n        \"security_deposit\": \"20\",\n        \"property_price_after_label\": \"\",\n        \"property_price_before_label\": \"\",\n        \"extra_pay_options\": [\n            [\n                \"fee 1\",\n                \"10\",\n                \"0\"\n            ],\n            [\n                \"fee2\",\n                \"10\",\n                \"1\"\n            ],\n            [\n                \"fee3\",\n                \"10\",\n                \"2\"\n            ],\n            [\n                \"fee4\",\n                \"10\",\n                \"3\"\n            ]\n        ],\n        \"early_bird_days\": \"30\",\n        \"early_bird_percent\": \"10\",\n        \"property_taxes\": \"10\",\n        \"booking_start_hour\": \"\",\n        \"booking_end_hour\": \"\",\n        \"embed_video_type\": \"vimeo\",\n        \"embed_video_id\": \"\",\n        \"virtual_tour\": \"\",\n        \"custom_price\": {\n            \"1735689600\": 45,\n            \"1735776000\": 45,\n            \"1735862400\": 45,\n            \"1735948800\": 45,\n            \"1736035200\": 45,\n            \"1736121600\": 45,\n            \"1736208000\": 45,\n            \"1736294400\": 45,\n            \"1736380800\": 45,\n            \"1736467200\": 45,\n            \"1736553600\": 45,\n            \"1736640000\": 45,\n            \"1736726400\": 45,\n            \"1736812800\": 45,\n            \"1736899200\": 45,\n            \"1736985600\": 45,\n            \"1737072000\": 45,\n            \"1737158400\": 45,\n            \"1737244800\": 45,\n            \"1737331200\": 45,\n            \"1737417600\": 45,\n            \"1737504000\": 45,\n            \"1737590400\": 45,\n            \"1737676800\": 45,\n            \"1737763200\": 45,\n            \"1737849600\": 45,\n            \"1737936000\": 45,\n            \"1738022400\": 45,\n            \"1738108800\": 45,\n            \"1738195200\": 45,\n            \"1738281600\": 45,\n            \"1741132800\": 99,\n            \"1741219200\": 99,\n            \"1741305600\": 99,\n            \"1741392000\": 99,\n            \"1741478400\": 99,\n            \"1741564800\": 99,\n            \"1741651200\": 99,\n            \"1741737600\": 99,\n            \"1741824000\": 99,\n            \"1741910400\": 99,\n            \"1741996800\": 99,\n            \"1742083200\": 99,\n            \"1742169600\": 99,\n            \"1742256000\": 99,\n            \"1742342400\": 99,\n            \"1742428800\": 99,\n            \"1742515200\": 99,\n            \"1742601600\": 99,\n            \"1742688000\": 99,\n            \"1742774400\": 99,\n            \"1742860800\": 99,\n            \"1742947200\": 99,\n            \"1743465600\": 100,\n            \"1743552000\": 100,\n            \"1743638400\": 100,\n            \"1743724800\": 100,\n            \"1743811200\": 100,\n            \"1743897600\": 100,\n            \"1743984000\": 100,\n            \"1744070400\": 100,\n            \"1744156800\": 100,\n            \"1744243200\": 100,\n            \"1744329600\": 100,\n            \"1744416000\": 100,\n            \"1744502400\": 100,\n            \"1744588800\": 100,\n            \"1744675200\": 100,\n            \"1744761600\": 100,\n            \"1744848000\": 100,\n            \"1744934400\": 100,\n            \"1745020800\": 100,\n            \"1745107200\": 100,\n            \"1745193600\": 100,\n            \"1745280000\": 100,\n            \"1745366400\": 100,\n            \"1745452800\": 100,\n            \"1745539200\": 100,\n            \"1745625600\": 100,\n            \"1745712000\": 100,\n            \"1745798400\": 100,\n            \"1745884800\": 100,\n            \"1745971200\": 100\n        },\n        \"mega_details\": {\n            \"1735689600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735776000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735862400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735948800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736035200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736121600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736208000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736294400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736380800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736467200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736553600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736640000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736726400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736812800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736899200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736985600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737072000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737158400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737244800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737331200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737417600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737504000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737590400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737676800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737763200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737849600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737936000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738022400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738108800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738195200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738281600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741132800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741219200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741305600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741392000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741478400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741564800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741651200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741737600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741824000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741910400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741996800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742083200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742169600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742256000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742342400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742428800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742515200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742601600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742688000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742774400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742860800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742947200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1743465600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743552000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743638400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743724800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743811200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743897600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743984000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744070400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744156800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744243200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744329600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744416000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744502400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744588800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744675200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744761600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744848000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744934400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745020800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745107200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745193600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745280000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745366400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745452800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745539200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745625600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745712000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745798400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745884800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745971200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            }\n        },\n        \"cancellation_policy\": \"\",\n        \"other_rules\": \"\",\n        \"smoking_allowed\": \"no\",\n        \"pets_allowed\": \"no\",\n        \"party_allowed\": \"no\",\n        \"children_allowed\": \"no\",\n        \"private_notes\": \"\",\n        \"checkin_message\": \"\",\n        \"extra_details_options\": \"\",\n        \"property_custom_details\": [],\n        \"property_icalendar_import_multi\": \"\",\n        \"booking_dates\": {\n            \"0\": 1447718400,\n            \"1\": 1447718400,\n            \"2\": 1447718400,\n            \"3\": 1447718400,\n            \"4\": 1447718400,\n            \"5\": 1447718400,\n            \"6\": 1435276800,\n            \"7\": 1435276800,\n            \"1738540800\": 36906,\n            \"1738627200\": 36906,\n            \"1738713600\": 36906,\n            \"1746316800\": 36928,\n            \"1746403200\": 36928,\n            \"1746489600\": 36928,\n            \"1746576000\": 36928,\n            \"1746662400\": 36928,\n            \"1746748800\": 36928,\n            \"1746835200\": 36928\n        }\n    },\n    \"custom_meta\": {\n        \"nameste-x-34-cdfr\": \"4\",\n        \"check-in-hour\": \"\",\n        \"check-out-hour\": \"\",\n        \"late-check-in\": \"Before 1 AM\",\n        \"private-bathroom\": \"\",\n        \"private-entrance\": \"\",\n        \"optional-services\": \"kitchen fully equipped.\",\n        \"familyfriendly\": \"\",\n        \"outdoor-facilities\": \"restaurant, bar, park.\",\n        \"extra-people\": \"no extra bed available.\",\n        \"cancellation\": \"free of charge.\"\n    }\n}"},{"id":"ba65fb76-745f-4265-8fcd-7a8097c69059","name":"Get Property details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/36604"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:20:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3922","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.6 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ID\": 36604,\n    \"title\": \"Perfect Holiday Cabin\",\n    \"description\": \"Beautiful 3rd floor P/House w/in a short walk/drive to restaurants, stores and public trans. Private room/bath featuring top amenities. HDTV, internet, biz center (in room), washer/dryer, wine fridge, gas fireplace, surround sound, private roof deck.\\n\\nOne bus ride away from subway. Wifi, eat in kitchen, cable tshopsv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square.\",\n    \"excerpt\": \"Beautiful 3rd floor P/House w/in a short walk/drive to restaurants, stores and public trans. Private room/bath featuring top amenities. HDTV, internet, biz center (in room), washer/dryer, wine fridge, gas fireplace, surround sound, private roof deck. One bus ride away from subway. Wifi, eat in kitchen, cable tshopsv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square.\",\n    \"media\": {\n        \"36693\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.4-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.4.jpeg\"\n        },\n        \"36695\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.6-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.6.jpeg\"\n        },\n        \"36696\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.7-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.7.jpeg\"\n        },\n        \"36697\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-300x225.jpeg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-150x150.jpeg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-768x576.jpeg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-250x220.jpeg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x242.jpeg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-805x453.jpeg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-143x83.jpeg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-400x314.jpeg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-240x160.jpeg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-600x456.jpeg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/1.8-60x60.jpeg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/1.8.jpeg\"\n        },\n        \"37012\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-300x231.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-150x150.jpg\",\n            \"medium_large\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-768x591.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-805x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2015/04/back2_orange.jpg\"\n        },\n        \"37013\": {\n            \"medium\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-300x225.jpg\",\n            \"thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-150x150.jpg\",\n            \"post-thumbnail\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-250x220.jpg\",\n            \"wpestate_blog_unit\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x242.jpg\",\n            \"wpestate_blog_unit2\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-612x453.jpg\",\n            \"wpestate_slider_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-143x83.jpg\",\n            \"wpestate_property_listings\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-400x314.jpg\",\n            \"wpestate_property_listings_page\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-240x160.jpg\",\n            \"wpestate_property_places\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-600x456.jpg\",\n            \"wpestate_user_thumb\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse-60x60.jpg\",\n            \"full\": \"https://rentals.me/wp-content/uploads/2025/01/penthouse.jpg\"\n        }\n    },\n    \"terms\": {\n        \"property_area\": [\n            {\n                \"term_id\": 10,\n                \"name\": \"Arlington, Baltimore\",\n                \"slug\": \"arlington-baltimore\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_city\": [\n            {\n                \"term_id\": 12,\n                \"name\": \"Baltimore\",\n                \"slug\": \"baltimore\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_features\": [\n            {\n                \"term_id\": 19,\n                \"name\": \"Doorman\",\n                \"slug\": \"doorman\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 21,\n                \"name\": \"Dryer\",\n                \"slug\": \"dryer\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 32,\n                \"name\": \"Heating\",\n                \"slug\": \"heating\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 37,\n                \"name\": \"Kitchen\",\n                \"slug\": \"kitchen\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 53,\n                \"name\": \"TV\",\n                \"slug\": \"tv\",\n                \"description\": \"\"\n            },\n            {\n                \"term_id\": 55,\n                \"name\": \"Washer\",\n                \"slug\": \"washer\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_category\": [\n            {\n                \"term_id\": 20,\n                \"name\": \"Dorm\",\n                \"slug\": \"dorm\",\n                \"description\": \"\"\n            }\n        ],\n        \"property_action_category\": [\n            {\n                \"term_id\": 50,\n                \"name\": \"Shared room\",\n                \"slug\": \"shared-room\",\n                \"description\": \"Shared room\"\n            }\n        ]\n    },\n    \"meta\": {\n        \"property_price\": \"23\",\n        \"local_booking_type\": \"1\",\n        \"property_label\": \"\",\n        \"property_label_before\": \"\",\n        \"property_size\": \"250\",\n        \"property_rooms\": \"1\",\n        \"property_bedrooms\": \"1\",\n        \"property_bathrooms\": \"1\",\n        \"property_bedrooms_details\": {\n            \"King Bed\": [\n                0\n            ],\n            \"Queen Bed\": [\n                0\n            ],\n            \"Double\": [\n                0\n            ],\n            \"Single\": [\n                0\n            ],\n            \"Couch\": [\n                0\n            ]\n        },\n        \"property_address\": \"West Iowa Street\",\n        \"property_county\": \"Maryland\",\n        \"property_state\": \"MD\",\n        \"property_zip\": \"60714\",\n        \"property_country\": \"United States\",\n        \"property_admin_area\": \"\",\n        \"property_status\": \"normal\",\n        \"property_price_per_week\": \"20\",\n        \"property_price_per_month\": \"15\",\n        \"cleaning_fee_per_day\": \"0\",\n        \"city_fee_per_day\": \"3\",\n        \"price_per_guest_from_one\": \"0\",\n        \"property_latitude\": \"39.2838253476\",\n        \"property_longitude\": \"-76.5767669678\",\n        \"google_camera_angle\": \"0\",\n        \"property_agent\": \"1\",\n        \"guest_no\": \"5\",\n        \"property_affiliate\": \"\",\n        \"instant_booking\": \"0\",\n        \"children_as_guests\": \"0\",\n        \"overload_guest\": \"1\",\n        \"max_extra_guest_no\": \"0\",\n        \"wp_estate_replace_booking_form_local\": \"0\",\n        \"property_category\": \"\",\n        \"property_action_category\": \"\",\n        \"property_city\": \"\",\n        \"property_area\": \"\",\n        \"property_area_front\": \"\",\n        \"city_fee\": \"3\",\n        \"cleaning_fee\": \"15\",\n        \"price_per_weekeend\": \"45\",\n        \"checkin_change_over\": \"7\",\n        \"checkin_checkout_change_over\": \"7\",\n        \"min_days_booking\": \"3\",\n        \"extra_price_per_guest\": \"10\",\n        \"city_fee_percent\": \"0\",\n        \"security_deposit\": \"20\",\n        \"property_price_after_label\": \"\",\n        \"property_price_before_label\": \"\",\n        \"extra_pay_options\": [\n            [\n                \"fee 1\",\n                \"10\",\n                \"0\"\n            ],\n            [\n                \"fee2\",\n                \"10\",\n                \"1\"\n            ],\n            [\n                \"fee3\",\n                \"10\",\n                \"2\"\n            ],\n            [\n                \"fee4\",\n                \"10\",\n                \"3\"\n            ]\n        ],\n        \"early_bird_days\": \"30\",\n        \"early_bird_percent\": \"10\",\n        \"property_taxes\": \"10\",\n        \"booking_start_hour\": \"\",\n        \"booking_end_hour\": \"\",\n        \"embed_video_type\": \"vimeo\",\n        \"embed_video_id\": \"\",\n        \"virtual_tour\": \"\",\n        \"custom_price\": {\n            \"1735689600\": 45,\n            \"1735776000\": 45,\n            \"1735862400\": 45,\n            \"1735948800\": 45,\n            \"1736035200\": 45,\n            \"1736121600\": 45,\n            \"1736208000\": 45,\n            \"1736294400\": 45,\n            \"1736380800\": 45,\n            \"1736467200\": 45,\n            \"1736553600\": 45,\n            \"1736640000\": 45,\n            \"1736726400\": 45,\n            \"1736812800\": 45,\n            \"1736899200\": 45,\n            \"1736985600\": 45,\n            \"1737072000\": 45,\n            \"1737158400\": 45,\n            \"1737244800\": 45,\n            \"1737331200\": 45,\n            \"1737417600\": 45,\n            \"1737504000\": 45,\n            \"1737590400\": 45,\n            \"1737676800\": 45,\n            \"1737763200\": 45,\n            \"1737849600\": 45,\n            \"1737936000\": 45,\n            \"1738022400\": 45,\n            \"1738108800\": 45,\n            \"1738195200\": 45,\n            \"1738281600\": 45,\n            \"1741132800\": 99,\n            \"1741219200\": 99,\n            \"1741305600\": 99,\n            \"1741392000\": 99,\n            \"1741478400\": 99,\n            \"1741564800\": 99,\n            \"1741651200\": 99,\n            \"1741737600\": 99,\n            \"1741824000\": 99,\n            \"1741910400\": 99,\n            \"1741996800\": 99,\n            \"1742083200\": 99,\n            \"1742169600\": 99,\n            \"1742256000\": 99,\n            \"1742342400\": 99,\n            \"1742428800\": 99,\n            \"1742515200\": 99,\n            \"1742601600\": 99,\n            \"1742688000\": 99,\n            \"1742774400\": 99,\n            \"1742860800\": 99,\n            \"1742947200\": 99,\n            \"1743465600\": 100,\n            \"1743552000\": 100,\n            \"1743638400\": 100,\n            \"1743724800\": 100,\n            \"1743811200\": 100,\n            \"1743897600\": 100,\n            \"1743984000\": 100,\n            \"1744070400\": 100,\n            \"1744156800\": 100,\n            \"1744243200\": 100,\n            \"1744329600\": 100,\n            \"1744416000\": 100,\n            \"1744502400\": 100,\n            \"1744588800\": 100,\n            \"1744675200\": 100,\n            \"1744761600\": 100,\n            \"1744848000\": 100,\n            \"1744934400\": 100,\n            \"1745020800\": 100,\n            \"1745107200\": 100,\n            \"1745193600\": 100,\n            \"1745280000\": 100,\n            \"1745366400\": 100,\n            \"1745452800\": 100,\n            \"1745539200\": 100,\n            \"1745625600\": 100,\n            \"1745712000\": 100,\n            \"1745798400\": 100,\n            \"1745884800\": 100,\n            \"1745971200\": 100\n        },\n        \"mega_details\": {\n            \"1735689600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735776000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735862400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1735948800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736035200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736121600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736208000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736294400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736380800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736467200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736553600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736640000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736726400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736812800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736899200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1736985600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737072000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737158400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737244800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737331200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737417600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737504000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737590400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737676800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737763200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737849600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1737936000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738022400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738108800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738195200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1738281600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741132800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741219200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741305600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741392000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741478400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741564800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741651200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741737600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741824000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741910400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1741996800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742083200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742169600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742256000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742342400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742428800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742515200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742601600\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742688000\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742774400\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742860800\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1742947200\": {\n                \"period_min_days_booking\": 1,\n                \"period_extra_price_per_guest\": 0,\n                \"period_price_per_weekeend\": 0,\n                \"period_checkin_change_over\": 0,\n                \"period_checkin_checkout_change_over\": 0,\n                \"period_price_per_month\": 0,\n                \"period_price_per_week\": 0\n            },\n            \"1743465600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743552000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743638400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743724800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743811200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743897600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1743984000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744070400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744156800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744243200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744329600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744416000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744502400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744588800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744675200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744761600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744848000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1744934400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745020800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745107200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745193600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745280000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745366400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745452800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745539200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745625600\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745712000\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745798400\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745884800\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            },\n            \"1745971200\": {\n                \"period_min_days_booking\": 5,\n                \"period_extra_price_per_guest\": 100,\n                \"period_price_per_weekeend\": 200,\n                \"period_checkin_change_over\": 1,\n                \"period_checkin_checkout_change_over\": 1,\n                \"period_price_per_month\": 80,\n                \"period_price_per_week\": 90\n            }\n        },\n        \"cancellation_policy\": \"\",\n        \"other_rules\": \"\",\n        \"smoking_allowed\": \"no\",\n        \"pets_allowed\": \"no\",\n        \"party_allowed\": \"no\",\n        \"children_allowed\": \"no\",\n        \"private_notes\": \"\",\n        \"checkin_message\": \"\",\n        \"extra_details_options\": \"\",\n        \"property_custom_details\": [],\n        \"property_icalendar_import_multi\": \"\",\n        \"booking_dates\": {\n            \"0\": 1447718400,\n            \"1\": 1447718400,\n            \"2\": 1447718400,\n            \"3\": 1447718400,\n            \"4\": 1447718400,\n            \"5\": 1447718400,\n            \"6\": 1435276800,\n            \"7\": 1435276800,\n            \"1738540800\": 36906,\n            \"1738627200\": 36906,\n            \"1738713600\": 36906,\n            \"1746316800\": 36928,\n            \"1746403200\": 36928,\n            \"1746489600\": 36928,\n            \"1746576000\": 36928,\n            \"1746662400\": 36928,\n            \"1746748800\": 36928,\n            \"1746835200\": 36928\n        }\n    },\n    \"custom_meta\": {\n        \"nameste-x-34-cdfr\": \"4\",\n        \"check-in-hour\": \"\",\n        \"check-out-hour\": \"\",\n        \"late-check-in\": \"Before 1 AM\",\n        \"private-bathroom\": \"\",\n        \"private-entrance\": \"\",\n        \"optional-services\": \"kitchen fully equipped.\",\n        \"familyfriendly\": \"\",\n        \"outdoor-facilities\": \"restaurant, bar, park.\",\n        \"extra-people\": \"no extra bed available.\",\n        \"cancellation\": \"free of charge.\"\n    }\n}"}],"_postman_id":"1151924f-b590-4806-98c0-fd108f53a41e"},{"name":"Add a Property","id":"09981030-393d-4677-b0d2-76928346b535","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"A stunning villa\",\r\n    \"property_description\": \"A stunning villa located directly on the beach, offering panoramic ocean views.\",\r\n    \"property_category\": [\"Luxury\", \"Beachfront\"],\r\n    \"property_action_category\": [\"For Rent\", \"Vacation Rental\"],\r\n    \"property_city\": [\"Miami\", \"South Florida\"],\r\n    \"property_area\": [\"South Beach\", \"Oceanfront\"],\r\n    \"guest_no\": 8,\r\n    \"overload_guest\": 1,\r\n    \"max_extra_guest_no\": 3,\r\n    \"instant_booking\": 1,\r\n    \"wp_estate_replace_booking_form_local\": 1,\r\n    \"children_as_guests\": 1,\r\n    \"property_affiliate\": \"https://example.com/affiliate-link\",\r\n    \"private_notes\": \"This property is available for VIP clients only.\",\r\n    \"checkin_message\": \"Check-in is available from 3 PM to 8 PM. Contact us for late arrivals.\",\r\n    \"property_country\": \"USA\",\r\n    \"property_admin_area\": \"Florida\",\r\n    \"property_price\": 5000,\r\n    \"property_price_per_week\": 3000,\r\n    \"property_price_per_month\": 10000,\r\n    \"property_features\": [\"pool\", \"garage\", \"garden\", \"wifi\"],\r\n    \"property_address\": \"123 Ocean Drive, Miami, FL\",\r\n    \"property_zip\": \"33139\",\r\n    \"property_county\": \"Miami-Dade\",\r\n    \"property_state\": \"Florida\",\r\n    \"property_latitude\": 25.7617,\r\n    \"property_longitude\": -80.1918,\r\n    \"google_camera_angle\": 45,\r\n    \"property_bedrooms\": 4,\r\n    \"property_bathrooms\": 3,\r\n    \"property_status\": \"available\",\r\n    \"cleaning_fee\": 100,\r\n    \"city_fee\": 50,\r\n    \"cleaning_fee_per_day\": 20,\r\n    \"city_fee_per_day\": 10,\r\n    \"min_days_booking\": 2,\r\n    \"price_per_guest_from_one\": 150,\r\n    \"price_per_weekeend\": 200,\r\n    \"checkin_change_over\": 1,\r\n    \"checkin_checkout_change_over\": 2,\r\n    \"extra_price_per_guest\": 50,\r\n    \"city_fee_percent\": 5,\r\n    \"security_deposit\": 1000,\r\n    \"property_price_after_label\": \"per night\",\r\n    \"property_price_before_label\": \"$\",\r\n    \"extra_pay_options\": [\"Breakfast|10|2\", \"Parking|5|3\"],\r\n    \"early_bird_percent\": 10,\r\n    \"early_bird_days\": 30,\r\n    \"property_taxes\": 15,\r\n    \"booking_start_hour\": \"3:00 PM\",\r\n    \"booking_end_hour\": \"11:00 AM\",\r\n    \"local_booking_type\": 1,\r\n    \"embed_video_type\": \"youtube\",\r\n    \"embed_video_id\": \"abc123xyz\",\r\n    \"virtual_tour\": \"<iframe src='https://example.com/virtual-tour' width='800' height='600' frameborder='0' allowfullscreen></iframe>\",\r\n    \"images\": [\r\n        {\"id\": 1, \"url\": \"https://wpestate.org/wp-content/uploads/2024/03/website-1024x498.png\"},\r\n        {\"id\": 2, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/742804777/83dcefb7.jpeg\"},\r\n        {\"id\": 3, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/735590531/83dcefb7.jpeg\"}\r\n    ],\r\n    \"thumbnail_id\": 1,\r\n    \"property_size\": 2500,\r\n    \"property_rooms\": 10,\r\n    \"beds_options\": [1, 1, 2, 1, 3],\r\n    \"cancellation_policy\": \"Flexible cancellation policy.\",\r\n    \"other_rules\": \"No loud music after 10 PM.\",\r\n    \"smoking_allowed\": \"no\",\r\n    \"pets_allowed\": \"yes\",\r\n    \"party_allowed\": \"no\",\r\n    \"children_allowed\": \"yes\",\r\n    \"custom_fields\": [\r\n        {\"slug\": \"outdoor-facilities\", \"value\": \"some value\"},\r\n        {\"slug\": \"extra-people\", \"value\": \"3 si un puc\"}\r\n    ],\r\n    \"ical_feeds\": [\r\n        {\r\n            \"feed\": \"https://example.com/ical1.ics\",\r\n            \"name\": \"Primary Calendar\"\r\n        },\r\n        {\r\n            \"feed\": \"https://example.com/ical2.ics\",\r\n            \"name\": \"Secondary Calendar\"\r\n        }\r\n    ],\r\n    \"custom_price\": [\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-01-15\",\r\n                \"to\": \"2025-01-30\"\r\n            },\r\n            \"price\": 200,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 2,\r\n                \"period_extra_price_per_guest\": 50,\r\n                \"period_price_per_weekeend\": 250,\r\n                \"period_checkin_change_over\": 1,\r\n                \"period_checkin_checkout_change_over\": 1,\r\n                \"period_price_per_month\": 5000,\r\n                \"period_price_per_week\": 1500\r\n            }\r\n        },\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-02-01\",\r\n                \"to\": \"2025-02-15\"\r\n            },\r\n            \"price\": 250,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 3,\r\n                \"period_extra_price_per_guest\": 60,\r\n                \"period_price_per_weekeend\": 300,\r\n                \"period_checkin_change_over\": 2,\r\n                \"period_checkin_checkout_change_over\": 2,\r\n                \"period_price_per_month\": 6000,\r\n                \"period_price_per_week\": 1800\r\n            }\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/add/","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be logged in</p>\n</li>\n<li><p>User must have 'publish_estate_property' capability</p>\n</li>\n<li><p>User must be administrator or owner role</p>\n</li>\n<li><p>User must have available listings in their membership package</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<p>Required Fields:<br />title</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Property title/name</p>\n</li>\n</ul>\n<p>Additional Fields:<br />meta_fields (optional):</p>\n<ul>\n<li><p>property_description:string</p>\n</li>\n<li><p>property_price: string (Property price)</p>\n</li>\n<li><p>property_size: string (Property size)</p>\n</li>\n<li><p>property_rooms: string (Number of rooms)</p>\n</li>\n<li><p>property_bedrooms: string (Number of bedrooms)</p>\n</li>\n<li><p>property_bathrooms: string (Number of bathrooms)</p>\n</li>\n<li><p>property_address: string (Property address)</p>\n</li>\n<li><p>property_zip: string (ZIP code)</p>\n</li>\n<li><p>property_country: string (Country)</p>\n</li>\n<li><p>property_price_per_week: string (Weekly price)</p>\n</li>\n<li><p>property_price_per_month: string (Monthly price)</p>\n</li>\n<li><p>property_label: string (Property label)</p>\n</li>\n<li><p>property_label_before: string (Property label before)</p>\n</li>\n<li><p>local_booking_type: string (Booking type)</p>\n</li>\n</ul>\n<p>taxonomies (optional):</p>\n<ul>\n<li><p>property_category: array (Property categories)</p>\n</li>\n<li><p>property_action_category: array (Action categories)</p>\n</li>\n<li><p>property_city: array (Cities)</p>\n</li>\n<li><p>property_area: array (Areas)</p>\n</li>\n<li><p>property_features: array (Features/amenities)</p>\n</li>\n</ul>\n<p>images (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains objects with:</p>\n<ul>\n<li><p>id: integer (Image ID)</p>\n</li>\n<li><p>url: string (Image URL)</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>extra_pay_options (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Format: [\"option1|price1\", \"option2|price2\"]</p>\n</li>\n</ul>\n<p>beds_options (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains bed counts for different bed types</p>\n</li>\n</ul>\n<p>custom_fields (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains objects with:</p>\n<ul>\n<li><p>slug: string (Field identifier)</p>\n</li>\n<li><p>value: string (Field value)</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>ical_feeds (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains objects with:</p>\n<ul>\n<li><p>feed: string (iCal URL)</p>\n</li>\n<li><p>name: string (Feed name)</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>custom_price (optional):</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains objects with:</p>\n<ul>\n<li><p>date_range: {<br />  from: string (Start date),<br />  to: string (End date)<br />  }</p>\n</li>\n<li><p>price: string (Price for period)</p>\n</li>\n<li><p>details: object (Additional pricing details)</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","property","add",""],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5053d0e3-6048-4f8e-bab5-06544878792a","name":"Add a Property","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"A stunning villa\",\r\n    \"prop_desc\": \"A stunning villa located directly on the beach, offering panoramic ocean views.\",\r\n    \"property_category\": [\"Luxury\", \"Beachfront\"],\r\n    \"property_action_category\": [\"For Rent\", \"Vacation Rental\"],\r\n    \"property_city\": [\"Miami\", \"South Florida\"],\r\n    \"property_area\": [\"South Beach\", \"Oceanfront\"],\r\n    \"guest_no\": 8,\r\n    \"overload_guest\": 1,\r\n    \"max_extra_guest_no\": 3,\r\n    \"instant_booking\": 1,\r\n    \"wp_estate_replace_booking_form_local\": 1,\r\n    \"children_as_guests\": 1,\r\n    \"property_affiliate\": \"https://example.com/affiliate-link\",\r\n    \"private_notes\": \"This property is available for VIP clients only.\",\r\n    \"checkin_message\": \"Check-in is available from 3 PM to 8 PM. Contact us for late arrivals.\",\r\n    \"property_country\": \"USA\",\r\n    \"property_admin_area\": \"Florida\",\r\n    \"property_price\": 5000,\r\n    \"property_price_per_week\": 3000,\r\n    \"property_price_per_month\": 10000,\r\n    \"property_features\": [\"pool\", \"garage\", \"garden\", \"wifi\"],\r\n    \"property_address\": \"123 Ocean Drive, Miami, FL\",\r\n    \"property_zip\": \"33139\",\r\n    \"property_county\": \"Miami-Dade\",\r\n    \"property_state\": \"Florida\",\r\n    \"property_latitude\": 25.7617,\r\n    \"property_longitude\": -80.1918,\r\n    \"google_camera_angle\": 45,\r\n    \"property_bedrooms\": 4,\r\n    \"property_bathrooms\": 3,\r\n    \"property_status\": \"available\",\r\n    \"cleaning_fee\": 100,\r\n    \"city_fee\": 50,\r\n    \"cleaning_fee_per_day\": 20,\r\n    \"city_fee_per_day\": 10,\r\n    \"min_days_booking\": 2,\r\n    \"price_per_guest_from_one\": 150,\r\n    \"price_per_weekeend\": 200,\r\n    \"checkin_change_over\": 1,\r\n    \"checkin_checkout_change_over\": 2,\r\n    \"extra_price_per_guest\": 50,\r\n    \"city_fee_percent\": 5,\r\n    \"security_deposit\": 1000,\r\n    \"property_price_after_label\": \"per night\",\r\n    \"property_price_before_label\": \"$\",\r\n    \"extra_pay_options\": [\"Breakfast|10|2\", \"Parking|5|3\"],\r\n    \"early_bird_percent\": 10,\r\n    \"early_bird_days\": 30,\r\n    \"property_taxes\": 15,\r\n    \"booking_start_hour\": \"3:00 PM\",\r\n    \"booking_end_hour\": \"11:00 AM\",\r\n    \"local_booking_type\": 1,\r\n    \"embed_video_type\": \"youtube\",\r\n    \"embed_video_id\": \"abc123xyz\",\r\n    \"virtual_tour\": \"<iframe src='https://example.com/virtual-tour' width='800' height='600' frameborder='0' allowfullscreen></iframe>\",\r\n    \"images\": [\r\n        {\"id\": 1, \"url\": \"https://wpestate.org/wp-content/uploads/2024/03/website-1024x498.png\"},\r\n        {\"id\": 2, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/742804777/83dcefb7.jpeg\"},\r\n        {\"id\": 3, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/735590531/83dcefb7.jpeg\"}\r\n    ],\r\n    \"thumbnail_id\": 1,\r\n    \"property_size\": 2500,\r\n    \"property_rooms\": 10,\r\n    \"beds_options\": [1, 1, 2, 1, 3],\r\n    \"cancellation_policy\": \"Flexible cancellation policy.\",\r\n    \"other_rules\": \"No loud music after 10 PM.\",\r\n    \"smoking_allowed\": \"no\",\r\n    \"pets_allowed\": \"yes\",\r\n    \"party_allowed\": \"no\",\r\n    \"children_allowed\": \"yes\",\r\n    \"custom_fields\": [\r\n        {\"slug\": \"outdoor-facilities\", \"value\": \"some value\"},\r\n        {\"slug\": \"extra-people\", \"value\": \"3 si un puc\"}\r\n    ],\r\n    \"ical_feeds\": [\r\n        {\r\n            \"feed\": \"https://example.com/ical1.ics\",\r\n            \"name\": \"Primary Calendar\"\r\n        },\r\n        {\r\n            \"feed\": \"https://example.com/ical2.ics\",\r\n            \"name\": \"Secondary Calendar\"\r\n        }\r\n    ],\r\n    \"custom_price\": [\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-01-15\",\r\n                \"to\": \"2025-01-30\"\r\n            },\r\n            \"price\": 200,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 2,\r\n                \"period_extra_price_per_guest\": 50,\r\n                \"period_price_per_weekeend\": 250,\r\n                \"period_checkin_change_over\": 1,\r\n                \"period_checkin_checkout_change_over\": 1,\r\n                \"period_price_per_month\": 5000,\r\n                \"period_price_per_week\": 1500\r\n            }\r\n        },\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-02-01\",\r\n                \"to\": \"2025-02-15\"\r\n            },\r\n            \"price\": 250,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 3,\r\n                \"period_extra_price_per_guest\": 60,\r\n                \"period_price_per_weekeend\": 300,\r\n                \"period_checkin_change_over\": 2,\r\n                \"period_checkin_checkout_change_over\": 2,\r\n                \"period_price_per_month\": 6000,\r\n                \"period_price_per_week\": 1800\r\n            }\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/add/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:27:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"8.3107","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.7% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"17.4 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.8% of 256 MB server limit","enabled":true},{"key":"X-QM-php_errors-error-count","value":"8","enabled":true},{"key":"X-QM-php_errors-error-1","value":"{\"key\":\"fd22391d328aba1d63df73de20772165\",\"type\":\"warning\",\"message\":\"foreach() argument must be of type array|object, bool given\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/properties\\/property_create.php\",\"line\":82,\"stack\":[\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-2","value":"{\"key\":\"80afef458f26d61106aa65ddece0e213\",\"type\":\"warning\",\"message\":\"Undefined variable $component\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":123,\"stack\":[\"ICal->initLines()\",\"ICal->__construct()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-3","value":"{\"key\":\"bebb101b41099c1eb1fab1606c6d7482\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VEVENT\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":349,\"stack\":[\"ICal->process_recurrences()\",\"ICal->initLines()\",\"ICal->__construct()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-4","value":"{\"key\":\"751a34da16d0c8b03576d8377f24732c\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VCALENDAR\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":627,\"stack\":[\"ICal->timezone()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-5","value":"{\"key\":\"4934053e597eb89804ffa5f489e4d993\",\"type\":\"warning\",\"message\":\"Trying to access array offset on value of type null\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":627,\"stack\":[\"ICal->timezone()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-6","value":"{\"key\":\"a082f3180b9e36f53555e03d90769a64\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VEVENT\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":622,\"stack\":[\"ICal->events()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-7","value":"{\"key\":\"4a43f24446f94f7173e959dc873efb0b\",\"type\":\"warning\",\"message\":\"Undefined array key 0\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/icalendar.php\",\"line\":189,\"stack\":[\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-8","value":"{\"key\":\"d9d7cca5dd871d98c418ae88963b3d3f\",\"type\":\"warning\",\"message\":\"Trying to access array offset on value of type null\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/icalendar.php\",\"line\":189,\"stack\":[\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_create_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"property_id\": 37018\n}"}],"_postman_id":"09981030-393d-4677-b0d2-76928346b535"},{"name":"Edit a property","id":"d84ad500-d926-4684-868f-c77c32ea673c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"A stunning villa Edited again\",\r\n    \"property_description\": \"Edited A stunning villa located directly on the beach, offering panoramic ocean views.\",\r\n    \"property_category\": [\"Luxury\", \"Beachfront\"],\r\n    \"property_action_category\": [\"For Rent\", \"Vacation Rental\"],\r\n    \"property_city\": [\"Miami\", \"South Florida\"],\r\n    \"property_area\": [\"South Beach\", \"Oceanfront\"],\r\n    \"guest_no\": 8,\r\n    \"overload_guest\": 1,\r\n    \"max_extra_guest_no\": 3,\r\n    \"instant_booking\": 1,\r\n    \"wp_estate_replace_booking_form_local\": 1,\r\n    \"children_as_guests\": 1,\r\n    \"property_affiliate\": \"https://example.com/affiliate-link\",\r\n    \"private_notes\": \"This property is available for VIP clients only.\",\r\n    \"checkin_message\": \"Check-in is available from 3 PM to 8 PM. Contact us for late arrivals.\",\r\n    \"property_country\": \"USA\",\r\n    \"property_admin_area\": \"Florida\",\r\n    \"property_price\": 5000,\r\n    \"property_price_per_week\": 3000,\r\n    \"property_price_per_month\": 10000,\r\n    \"property_features\": [\"pool\", \"garage\", \"garden\", \"wifi\",\"pets-allowed\"],\r\n    \"property_address\": \"123 Ocean Drive, Miami, FL\",\r\n    \"property_zip\": \"33139\",\r\n    \"property_county\": \"Miami-Dade\",\r\n    \"property_state\": \"Florida\",\r\n    \"property_latitude\": 25.7617,\r\n    \"property_longitude\": -80.1918,\r\n    \"google_camera_angle\": 45,\r\n    \"property_bedrooms\": 4,\r\n    \"property_bathrooms\": 3,\r\n    \"property_status\": \"available\",\r\n    \"cleaning_fee\": 100,\r\n    \"city_fee\": 50,\r\n    \"cleaning_fee_per_day\": 20,\r\n    \"city_fee_per_day\": 10,\r\n    \"min_days_booking\": 2,\r\n    \"price_per_guest_from_one\": 150,\r\n    \"price_per_weekeend\": 200,\r\n    \"checkin_change_over\": 1,\r\n    \"checkin_checkout_change_over\": 2,\r\n    \"extra_price_per_guest\": 50,\r\n    \"city_fee_percent\": 5,\r\n    \"security_deposit\": 1000,\r\n    \"property_price_after_label\": \"per night\",\r\n    \"property_price_before_label\": \"$\",\r\n    \"extra_pay_options\": [\"Breakfast|10|2\", \"Parking|5|3\"],\r\n    \"early_bird_percent\": 10,\r\n    \"early_bird_days\": 30,\r\n    \"property_taxes\": 15,\r\n    \"booking_start_hour\": \"3:00 PM\",\r\n    \"booking_end_hour\": \"11:00 AM\",\r\n    \"local_booking_type\": 1,\r\n    \"embed_video_type\": \"youtube\",\r\n    \"embed_video_id\": \"abc123xyz\",\r\n    \"virtual_tour\": \"<iframe src='https://example.com/virtual-tour' width='800' height='600' frameborder='0' allowfullscreen></iframe>\",\r\n    \"images\": [\r\n        {\"id\": 1, \"url\": \"https://wpestate.org/wp-content/uploads/2024/03/website-1024x498.png\"},\r\n        {\"id\": 2, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/742804777/83dcefb7.jpeg\"},\r\n        {\"id\": 3, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/735590531/83dcefb7.jpeg\"}\r\n    ],\r\n    \"thumbnail_id\": 1,\r\n    \"property_size\": 2500,\r\n    \"property_rooms\": 10,\r\n    \"beds_options\": [1, 1, 2, 1, 3,5,5,5,5],\r\n    \"cancellation_policy\": \"Flexible cancellation policy.\",\r\n    \"other_rules\": \"No loud music after 10 PM.\",\r\n    \"smoking_allowed\": \"no\",\r\n    \"pets_allowed\": \"yes\",\r\n    \"party_allowed\": \"no\",\r\n    \"children_allowed\": \"yes\",\r\n    \"check-in-hour\":\"12:11\",\r\n    \"check-out-hour\":\"23:23\",\r\n    \"custom_fields\": [\r\n        {\"slug\": \"outdoor-facilities\", \"value\": \"some value\"},\r\n        {\"slug\": \"extra-people\", \"value\": \"3 si un puc\"}\r\n    ],\r\n    \"ical_feeds\": [\r\n        {\r\n            \"feed\": \"https://example.com/ical1.ics\",\r\n            \"name\": \"Primary Calendar\"\r\n        },\r\n        {\r\n            \"feed\": \"https://example.com/ical2.ics\",\r\n            \"name\": \"Secondary Calendar\"\r\n        }\r\n    ],\r\n    \"custom_price\": [\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-01-15\",\r\n                \"to\": \"2025-01-30\"\r\n            },\r\n            \"price\": 200,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 2,\r\n                \"period_extra_price_per_guest\": 50,\r\n                \"period_price_per_weekeend\": 250,\r\n                \"period_checkin_change_over\": 1,\r\n                \"period_checkin_checkout_change_over\": 1,\r\n                \"period_price_per_month\": 5000,\r\n                \"period_price_per_week\": 1500\r\n            }\r\n        },\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-02-01\",\r\n                \"to\": \"2025-02-15\"\r\n            },\r\n            \"price\": 250,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 3,\r\n                \"period_extra_price_per_guest\": 60,\r\n                \"period_price_per_weekeend\": 300,\r\n                \"period_checkin_change_over\": 2,\r\n                \"period_checkin_checkout_change_over\": 2,\r\n                \"period_price_per_month\": 6000,\r\n                \"period_price_per_week\": 1800\r\n            }\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/edit/37050","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be the property owner OR an administrator</p>\n</li>\n<li><p>Property must exist in the database</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<p>All fields are optional - only provide fields that need to be updated</p>\n<p>title</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Property title/name</p>\n</li>\n</ul>\n<p>meta_fields:</p>\n<ul>\n<li><p>property_description:string</p>\n</li>\n<li><p>property_price: string</p>\n</li>\n<li><p>property_size: string</p>\n</li>\n<li><p>property_rooms: string</p>\n</li>\n<li><p>property_bedrooms: string</p>\n</li>\n<li><p>property_bathrooms: string</p>\n</li>\n<li><p>property_address: string</p>\n</li>\n<li><p>property_zip: string</p>\n</li>\n<li><p>property_country: string</p>\n</li>\n<li><p>property_price_per_week: string</p>\n</li>\n<li><p>property_price_per_month: string</p>\n</li>\n<li><p>property_label: string</p>\n</li>\n<li><p>property_label_before: string</p>\n</li>\n<li><p>local_booking_type: string</p>\n</li>\n</ul>\n<p>taxonomies:</p>\n<ul>\n<li><p>property_category: array</p>\n</li>\n<li><p>property_action_category: array</p>\n</li>\n<li><p>property_city: array</p>\n</li>\n<li><p>property_area: array</p>\n</li>\n<li><p>property_features: array</p>\n</li>\n</ul>\n<p>images:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Format: [<br />  {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"id\": integer (Image ID),\n    \"url\": string (Image URL)\n\n</code></pre><p>  }<br />  ]</p>\n</li>\n</ul>\n<p>extra_pay_options:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Format: [\"option1|price1\", \"option2|price2\"]</p>\n</li>\n</ul>\n<p>beds_options:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Contains bed counts for different bed types</p>\n</li>\n</ul>\n<p>custom_fields:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Format: [<br />  {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"slug\": string,\n    \"value\": string\n\n</code></pre><p>  }<br />  ]</p>\n</li>\n</ul>\n<p>ical_feeds:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Format: [<br />  {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"feed\": string (iCal URL),\n    \"name\": string (Feed name)\n\n</code></pre><p>  }<br />  ]</p>\n</li>\n</ul>\n<p>custom_price:</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>\"date_range\": { \"from\": string (Start date), \"to\": string (End date) }, \"price\": string, \"details\": object }<br />  ]</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","property","edit","37050"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"53efc874-2f0c-4a2b-b74d-afe171d9138f","name":"Edit a property","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"A stunning villa Edited\",\r\n    \"prop_desc\": \"A stunning villa located directly on the beach, offering panoramic ocean views.\",\r\n    \"property_category\": [\"Luxury\", \"Beachfront\"],\r\n    \"property_action_category\": [\"For Rent\", \"Vacation Rental\"],\r\n    \"property_city\": [\"Miami\", \"South Florida\"],\r\n    \"property_area\": [\"South Beach\", \"Oceanfront\"],\r\n    \"guest_no\": 8,\r\n    \"overload_guest\": 1,\r\n    \"max_extra_guest_no\": 3,\r\n    \"instant_booking\": 1,\r\n    \"wp_estate_replace_booking_form_local\": 1,\r\n    \"children_as_guests\": 1,\r\n    \"property_affiliate\": \"https://example.com/affiliate-link\",\r\n    \"private_notes\": \"This property is available for VIP clients only.\",\r\n    \"checkin_message\": \"Check-in is available from 3 PM to 8 PM. Contact us for late arrivals.\",\r\n    \"property_country\": \"USA\",\r\n    \"property_admin_area\": \"Florida\",\r\n    \"property_price\": 5000,\r\n    \"property_price_per_week\": 3000,\r\n    \"property_price_per_month\": 10000,\r\n    \"property_features\": [\"pool\", \"garage\", \"garden\", \"wifi\",\"pets-allowed\"],\r\n    \"property_address\": \"123 Ocean Drive, Miami, FL\",\r\n    \"property_zip\": \"33139\",\r\n    \"property_county\": \"Miami-Dade\",\r\n    \"property_state\": \"Florida\",\r\n    \"property_latitude\": 25.7617,\r\n    \"property_longitude\": -80.1918,\r\n    \"google_camera_angle\": 45,\r\n    \"property_bedrooms\": 4,\r\n    \"property_bathrooms\": 3,\r\n    \"property_status\": \"available\",\r\n    \"cleaning_fee\": 100,\r\n    \"city_fee\": 50,\r\n    \"cleaning_fee_per_day\": 20,\r\n    \"city_fee_per_day\": 10,\r\n    \"min_days_booking\": 2,\r\n    \"price_per_guest_from_one\": 150,\r\n    \"price_per_weekeend\": 200,\r\n    \"checkin_change_over\": 1,\r\n    \"checkin_checkout_change_over\": 2,\r\n    \"extra_price_per_guest\": 50,\r\n    \"city_fee_percent\": 5,\r\n    \"security_deposit\": 1000,\r\n    \"property_price_after_label\": \"per night\",\r\n    \"property_price_before_label\": \"$\",\r\n    \"extra_pay_options\": [\"Breakfast|10|2\", \"Parking|5|3\"],\r\n    \"early_bird_percent\": 10,\r\n    \"early_bird_days\": 30,\r\n    \"property_taxes\": 15,\r\n    \"booking_start_hour\": \"3:00 PM\",\r\n    \"booking_end_hour\": \"11:00 AM\",\r\n    \"local_booking_type\": 1,\r\n    \"embed_video_type\": \"youtube\",\r\n    \"embed_video_id\": \"abc123xyz\",\r\n    \"virtual_tour\": \"<iframe src='https://example.com/virtual-tour' width='800' height='600' frameborder='0' allowfullscreen></iframe>\",\r\n    \"images\": [\r\n        {\"id\": 1, \"url\": \"https://wpestate.org/wp-content/uploads/2024/03/website-1024x498.png\"},\r\n        {\"id\": 2, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/742804777/83dcefb7.jpeg\"},\r\n        {\"id\": 3, \"url\": \"https://dvvjkgh94f2v6.cloudfront.net/735d922b/735590531/83dcefb7.jpeg\"}\r\n    ],\r\n    \"thumbnail_id\": 1,\r\n    \"property_size\": 2500,\r\n    \"property_rooms\": 10,\r\n    \"beds_options\": [1, 1, 2, 1, 3,5,5,5,5],\r\n    \"cancellation_policy\": \"Flexible cancellation policy.\",\r\n    \"other_rules\": \"No loud music after 10 PM.\",\r\n    \"smoking_allowed\": \"no\",\r\n    \"pets_allowed\": \"yes\",\r\n    \"party_allowed\": \"no\",\r\n    \"children_allowed\": \"yes\",\r\n    \"check-in-hour\":\"12:11\",\r\n    \"check-out-hour\":\"23:23\",\r\n    \"custom_fields\": [\r\n        {\"slug\": \"outdoor-facilities\", \"value\": \"some value\"},\r\n        {\"slug\": \"extra-people\", \"value\": \"3 si un puc\"}\r\n    ],\r\n    \"ical_feeds\": [\r\n        {\r\n            \"feed\": \"https://example.com/ical1.ics\",\r\n            \"name\": \"Primary Calendar\"\r\n        },\r\n        {\r\n            \"feed\": \"https://example.com/ical2.ics\",\r\n            \"name\": \"Secondary Calendar\"\r\n        }\r\n    ],\r\n    \"custom_price\": [\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-01-15\",\r\n                \"to\": \"2025-01-30\"\r\n            },\r\n            \"price\": 200,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 2,\r\n                \"period_extra_price_per_guest\": 50,\r\n                \"period_price_per_weekeend\": 250,\r\n                \"period_checkin_change_over\": 1,\r\n                \"period_checkin_checkout_change_over\": 1,\r\n                \"period_price_per_month\": 5000,\r\n                \"period_price_per_week\": 1500\r\n            }\r\n        },\r\n        {\r\n            \"date_range\": {\r\n                \"from\": \"2025-02-01\",\r\n                \"to\": \"2025-02-15\"\r\n            },\r\n            \"price\": 250,\r\n            \"details\": {\r\n                \"period_min_days_booking\": 3,\r\n                \"period_extra_price_per_guest\": 60,\r\n                \"period_price_per_weekeend\": 300,\r\n                \"period_checkin_change_over\": 2,\r\n                \"period_checkin_checkout_change_over\": 2,\r\n                \"period_price_per_month\": 6000,\r\n                \"period_price_per_week\": 1800\r\n            }\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/edit/37018"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:31:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"7.3414","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.6% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"17.3 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.8% of 256 MB server limit","enabled":true},{"key":"X-QM-php_errors-error-count","value":"7","enabled":true},{"key":"X-QM-php_errors-error-1","value":"{\"key\":\"80afef458f26d61106aa65ddece0e213\",\"type\":\"warning\",\"message\":\"Undefined variable $component\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":123,\"stack\":[\"ICal->initLines()\",\"ICal->__construct()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-2","value":"{\"key\":\"bebb101b41099c1eb1fab1606c6d7482\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VEVENT\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":349,\"stack\":[\"ICal->process_recurrences()\",\"ICal->initLines()\",\"ICal->__construct()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-3","value":"{\"key\":\"751a34da16d0c8b03576d8377f24732c\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VCALENDAR\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":627,\"stack\":[\"ICal->timezone()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-4","value":"{\"key\":\"4934053e597eb89804ffa5f489e4d993\",\"type\":\"warning\",\"message\":\"Trying to access array offset on value of type null\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":627,\"stack\":[\"ICal->timezone()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-5","value":"{\"key\":\"a082f3180b9e36f53555e03d90769a64\",\"type\":\"warning\",\"message\":\"Undefined array key \\\"VEVENT\\\"\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/resources\\/class.iCalReader.php\",\"line\":622,\"stack\":[\"ICal->events()\",\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-6","value":"{\"key\":\"4a43f24446f94f7173e959dc873efb0b\",\"type\":\"warning\",\"message\":\"Undefined array key 0\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/icalendar.php\",\"line\":189,\"stack\":[\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-7","value":"{\"key\":\"d9d7cca5dd871d98c418ae88963b3d3f\",\"type\":\"warning\",\"message\":\"Trying to access array offset on value of type null\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/icalendar.php\",\"line\":189,\"stack\":[\"wpestate_import_calendar_feed_listing()\",\"wpestate_import_calendar_feed_listing_global()\",\"wprentals_process_ical_feeds()\",\"wprentals_update_property()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"Allow","value":"PUT","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"property_id\": \"37018\",\n    \"message\": \"Property updated successfully.\"\n}"}],"_postman_id":"d84ad500-d926-4684-868f-c77c32ea673c"},{"name":"Delete a property","id":"728e8f0e-95b2-4c87-9803-afd65e642530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/property/delete/37018","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be the property owner OR an administrator</p>\n</li>\n<li><p>Property must exist in the database</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<ul>\n<li><p>No body parameters required</p>\n</li>\n<li><p>Property ID is specified in URL path</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","property","delete","37018"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"19647e84-8724-4c4a-a453-4d09fa0de354","name":"Delete a property","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/property/delete/37018"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:33:34 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.5941","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.8 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.2% of 256 MB server limit","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"property_id\": \"37018\",\n    \"message\": \"Property deleted successfully.\"\n}"}],"_postman_id":"728e8f0e-95b2-4c87-9803-afd65e642530"},{"name":"Add a Booking","id":"d0e38b88-5db3-4b3b-a009-5e782578c6b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"property_id\": 36604,\r\n    \"comment\": \"Looking forward to my stay!\",\r\n    \"booking_guest_no\": 4,\r\n    \"booking_adults\": 2,\r\n    \"booking_childs\": 1,\r\n    \"booking_infants\": 1,\r\n    \"confirmed\": 1,\r\n    \"from_date\": \"2025-04-14\",\r\n    \"to_date\": \"2025-04-21\",\r\n    \"guests\":2,\r\n    \"extra_options\": \"Breakfast,Airport Pickup\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/property/add/","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be logged in</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>REQUIRED INPUT PARAMETERS:</p>\n<p>property_id</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>ID of the property to book</p>\n</li>\n<li><p>Must be a valid estate_property post type</p>\n</li>\n</ul>\n<p>from_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Start date of booking</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-24\")</p>\n</li>\n</ul>\n<p>to_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>End date of booking</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-26\")</p>\n</li>\n</ul>\n<p>guests</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of guests for booking</p>\n</li>\n</ul>\n<p>OPTIONAL INPUT PARAMETERS:</p>\n<p>adults</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of adult guests</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n</ul>\n<p>childs</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of child guests</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n</ul>\n<p>infants</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of infant guests</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n</ul>\n<p>extra_options</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Comma-separated list of selected extra options</p>\n</li>\n<li><p>Default: empty string</p>\n</li>\n</ul>\n<p>comment</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Booking comment or special requests</p>\n</li>\n<li><p>Default: empty string</p>\n</li>\n</ul>\n<p>internal</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Whether this is an internal booking</p>\n</li>\n<li><p>Values: 0 or 1</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n</ul>\n<p>VALIDATION CHECKS:</p>\n<ol>\n<li><p>Property must exist and be of type 'estate_property'</p>\n</li>\n<li><p>Dates must be in correct format</p>\n</li>\n<li><p>End date must be after start date</p>\n</li>\n<li><p>Dates cannot be in the past</p>\n</li>\n<li><p>Property must be available for selected dates</p>\n</li>\n<li><p>Guest numbers must be valid</p>\n</li>\n<li><p>Minimum stay requirements must be met</p>\n</li>\n<li><p>Check-in/out day restrictions must be followed</p>\n</li>\n</ol>\n<p>BOOKING PROCESS:</p>\n<ol>\n<li><p>Validates all input parameters</p>\n</li>\n<li><p>Checks property availability</p>\n</li>\n<li><p>Creates booking entry</p>\n</li>\n<li><p>Updates property's booking dates</p>\n</li>\n<li><p>Creates initial invoice if required</p>\n</li>\n<li><p>Sends notifications to property owner and guest</p>\n</li>\n<li><p>Updates internal booking counters and statistics</p>\n</li>\n</ol>\n","urlObject":{"path":["wp-json","wprentals","v1","property","add",""],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"1b59fb7a-17b1-4147-9b9a-e659494c7355","name":"Add a Booking","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"property_id\": 36604,\r\n    \"comment\": \"Looking forward to my stay!\",\r\n    \"booking_guest_no\": 4,\r\n    \"booking_adults\": 2,\r\n    \"booking_childs\": 1,\r\n    \"booking_infants\": 1,\r\n    \"confirmed\": 1,\r\n    \"from_date\": \"2025-04-14\",\r\n    \"to_date\": \"2025-04-21\",\r\n    \"guests\":2,\r\n    \"extra_options\": \"Breakfast,Airport Pickup\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:34:49 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.5186","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"16.7 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.5% of 256 MB server limit","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"booking_id\": 37025,\n    \"message\": \"Booking created successfully.\"\n}"}],"_postman_id":"d0e38b88-5db3-4b3b-a009-5e782578c6b9"},{"name":"Check a booking availability","id":"50a116b7-caf1-4753-aa29-7981c126ec86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"listing_id\": 36604,\r\n  \"book_from\": \"2025-04-14\",\r\n  \"book_to\": \"2025-04-21\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/availability","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>No authentication required</p>\n</li>\n<li><p>Publicly accessible endpoint</p>\n</li>\n</ul>\n<p>REQUIRED INPUT PARAMETERS:</p>\n<p>listing_id (property_id)</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>ID of the property to check</p>\n</li>\n<li><p>Must be a valid estate_property post type</p>\n</li>\n</ul>\n<p>book_from</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Start date to check</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-24\")</p>\n</li>\n</ul>\n<p>book_to</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>End date to check</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-26\")</p>\n</li>\n</ul>\n<p>OPTIONAL INPUT PARAMETERS:</p>\n<p>internal</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Whether this is an internal availability check</p>\n</li>\n<li><p>Values: 0 or 1</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n<li><p>When set to 1, bypasses some validation rules</p>\n</li>\n</ul>\n<p>VALIDATION CHECKS:</p>\n<ol>\n<li><p>All required parameters present</p>\n</li>\n<li><p>Property exists and is valid</p>\n</li>\n<li><p>Dates are in correct format</p>\n</li>\n<li><p>Dates are not in the past</p>\n</li>\n<li><p>End date is after start date</p>\n</li>\n<li><p>Meets minimum stay requirements</p>\n</li>\n<li><p>Complies with check-in/out day restrictions</p>\n</li>\n<li><p>No overlap with existing bookings</p>\n</li>\n<li><p>Respects custom period rules</p>\n</li>\n<li><p>Property is available for booking</p>\n</li>\n</ol>\n<p>ADDITIONAL NOTES:</p>\n<ul>\n<li><p>Checks both regular calendar and custom period restrictions</p>\n</li>\n<li><p>Handles both nightly and hourly bookings</p>\n</li>\n<li><p>Considers property-specific booking rules</p>\n</li>\n<li><p>Validates against existing reservations</p>\n</li>\n<li><p>Checks seasonal restrictions if applicable</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","booking","availability"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e6b9ece9-9e72-4f3a-8845-2493ef7982e7","name":"Check a booking availability","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"listing_id\": 36604,\r\n  \"book_from\": \"2025-04-14\",\r\n  \"book_to\": \"2025-04-21\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/availability"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:36:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Selected dates are available\",\n    \"data\": {\n        \"listing_id\": 36604,\n        \"start_date\": \"2025-04-14\",\n        \"end_date\": \"2025-04-21\",\n        \"is_hourly\": false,\n        \"internal\": 0\n    }\n}"},{"id":"c0103f80-dc3c-43c4-b8e6-7ef6346319aa","name":"Check a booking availability","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"listing_id\": 36604,\r\n  \"book_from\": \"2025-04-14\",\r\n  \"book_to\": \"2025-04-21\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/availability"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:37:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Selected dates are available\",\n    \"data\": {\n        \"listing_id\": 36604,\n        \"start_date\": \"2025-04-14\",\n        \"end_date\": \"2025-04-21\",\n        \"is_hourly\": false,\n        \"internal\": 0\n    }\n}"}],"_postman_id":"50a116b7-caf1-4753-aa29-7981c126ec86"},{"name":"Estimate the cost of a booking","id":"c53b5ab1-e1c4-43cd-a16e-47b6457e4180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"property_id\": 36604,\r\n  \"guest_no\": 3,\r\n  \"guest_fromone\": 0,\r\n  \"fromdate\": \"2025-05-05\",\r\n  \"todate\": \"2025-05-12\",\r\n    \"extra_options\":\"0,1,2,3\",\r\n     \"manual_expenses\": [\r\n    [\"Parking Fee\", \"50\"],\r\n    [\"Special Cleaning\", \"75\"],\r\n    [\"Airport Transfer\", \"100\"]\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/estimate","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>No authentication required</p>\n</li>\n<li><p>Publicly accessible endpoint</p>\n</li>\n</ul>\n<p>REQUIRED INPUT PARAMETERS:</p>\n<p>property_id</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>ID of the property to estimate</p>\n</li>\n<li><p>Must be a valid estate_property post type</p>\n</li>\n</ul>\n<p>guest_no</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of guests for booking</p>\n</li>\n</ul>\n<p>fromdate</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Start date for booking</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-24\")</p>\n</li>\n</ul>\n<p>todate</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>End date for booking</p>\n</li>\n<li><p>Format: WordPress date format (e.g., \"2025-01-26\")</p>\n</li>\n</ul>\n<p>OPTIONAL INPUT PARAMETERS:</p>\n<p>guest_fromone</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Whether to count guests from one</p>\n</li>\n<li><p>Values: 0 or 1</p>\n</li>\n<li><p>Default: 0</p>\n</li>\n</ul>\n<p>extra_options</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Comma-separated list of selected extra options</p>\n</li>\n<li><p>Default: empty string</p>\n</li>\n</ul>\n<p>manual_expenses</p>\n<ul>\n<li><p>Type: array</p>\n</li>\n<li><p>Additional manual expenses to include in calculation</p>\n</li>\n<li><p>Format: [<br />  {</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"name\": string,\n  \"value\": number\n\n</code></pre><p>  }<br />  ]</p>\n</li>\n</ul>\n<p>CALCULATIONS INCLUDE:</p>\n<p>Base Price:</p>\n<ul>\n<li><p>Daily/weekly/monthly rates</p>\n</li>\n<li><p>Custom period prices if applicable</p>\n</li>\n<li><p>Extra guest fees</p>\n</li>\n</ul>\n<p>Additional Fees:</p>\n<ul>\n<li><p>City fee</p>\n</li>\n<li><p>Cleaning fee</p>\n</li>\n<li><p>Security deposit</p>\n</li>\n<li><p>Service fee</p>\n</li>\n<li><p>Extra options selected</p>\n</li>\n<li><p>Manual expenses</p>\n</li>\n</ul>\n<p>Discounts:</p>\n<ul>\n<li><p>Early bird discounts</p>\n</li>\n<li><p>Custom period discounts</p>\n</li>\n<li><p>Special offer discounts if applicable</p>\n</li>\n</ul>\n<p>Taxes:</p>\n<ul>\n<li><p>Property taxes</p>\n</li>\n<li><p>Local taxes</p>\n</li>\n<li><p>VAT if applicable</p>\n</li>\n</ul>\n<p>Payment Structure:</p>\n<ul>\n<li><p>Required deposit</p>\n</li>\n<li><p>Security deposit</p>\n</li>\n<li><p>Balance payment</p>\n</li>\n<li><p>Total cost</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Prices are calculated based on property settings</p>\n</li>\n<li><p>Considers seasonal and custom period pricing</p>\n</li>\n<li><p>Includes all applicable fees and taxes</p>\n</li>\n<li><p>Shows both guest payment and host earnings</p>\n</li>\n<li><p>Provides detailed breakdown of all costs</p>\n</li>\n<li><p>Handles different currency formats</p>\n</li>\n<li><p>Supports both nightly and hourly rentals</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","booking","estimate"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"eabacdf1-ae85-421e-8543-b9a59b72b6a9","name":"Estimate the cost of a booking","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"property_id\": 36604,\r\n  \"guest_no\": 3,\r\n  \"guest_fromone\": 0,\r\n  \"fromdate\": \"2025-05-05\",\r\n  \"todate\": \"2025-05-12\",\r\n    \"extra_options\":\"0,1,2,3\",\r\n     \"manual_expenses\": [\r\n    [\"Parking Fee\", \"50\"],\r\n    [\"Special Cleaning\", \"75\"],\r\n    [\"Airport Transfer\", \"100\"]\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/estimate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:38:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"booking_details\": {\n        \"property_id\": 36604,\n        \"property_title\": \"Perfect Holiday Cabin\",\n        \"period\": {\n            \"from_date\": \"05-05-25\",\n            \"to_date\": \"05-12-25\",\n            \"days\": 7\n        },\n        \"guests\": 3,\n        \"guest_fromone\": 0,\n        \"booking_type\": \"1\",\n        \"rental_type\": \"0\"\n    },\n    \"prices\": {\n        \"price_per_day\": 23,\n        \"total_price\": 782,\n        \"deposit\": 352,\n        \"balance\": 430,\n        \"security_deposit\": 20,\n        \"city_fee\": 63,\n        \"cleaning_fee\": 15,\n        \"early_bird_discount\": 76,\n        \"extra_options\": [\n            {\n                \"name\": \"fee 1\",\n                \"value\": 10\n            },\n            {\n                \"name\": \"fee2\",\n                \"value\": 70\n            },\n            {\n                \"name\": \"fee3\",\n                \"value\": 30\n            },\n            {\n                \"name\": \"fee4\",\n                \"value\": 210\n            }\n        ],\n        \"manual_expenses\": [\n            [\n                \"Parking Fee\",\n                \"50\"\n            ],\n            [\n                \"Special Cleaning\",\n                \"75\"\n            ],\n            [\n                \"Airport Transfer\",\n                \"100\"\n            ]\n        ]\n    },\n    \"extra_price_details\": {\n        \"extra_price_per_guest\": \"USD 10\",\n        \"custom_period_quest\": 0,\n        \"has_custom\": 0,\n        \"custom_price_array\": {\n            \"1746403200\": 20,\n            \"1746489600\": 20,\n            \"1746576000\": 20,\n            \"1746662400\": 20,\n            \"1746748800\": 45,\n            \"1746835200\": 45,\n            \"1746921600\": 45\n        }\n    },\n    \"taxes_details\": {\n        \"taxes\": 61.560000000000002,\n        \"you_earn\": 615.60000000000002,\n        \"service_fee\": 68.400000000000006\n    },\n    \"currency\": {\n        \"currency_symbol\": \"USD\",\n        \"where_currency\": \"before\",\n        \"include_expenses\": \"no\"\n    }\n}"}],"_postman_id":"c53b5ab1-e1c4-43cd-a16e-47b6457e4180"},{"name":"List bookings","id":"d3f71fbf-af26-4207-9189-a081a1374865","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"posts_per_page\": 30\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/bookings","description":"<p>POST {{base_url}}/wp-json/wprentals/v1/bookings</p>\n<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must have administrator role</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>OPTIONAL INPUT PARAMETERS:</p>\n<p>page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Page number for pagination</p>\n</li>\n<li><p>Default: 1</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n</ul>\n<p>posts_per_page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of bookings per page</p>\n</li>\n<li><p>Default: 30</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n<li><p>Max: 100</p>\n</li>\n</ul>\n<p>BOOKING STATUS VALUES:</p>\n<ul>\n<li><p>pending</p>\n</li>\n<li><p>confirmed</p>\n</li>\n<li><p>canceled</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Returns all bookings in system</p>\n</li>\n<li><p>Sorted by date in descending order</p>\n</li>\n<li><p>Includes both active and historical bookings</p>\n</li>\n<li><p>Full booking details for each entry</p>\n</li>\n<li><p>Paginated response for performance</p>\n</li>\n<li><p>Includes user and property details</p>\n</li>\n<li><p>Shows invoice associations</p>\n</li>\n<li><p>Includes booking timestamps</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","bookings"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"db59346e-f2ca-4dd4-a314-ef1c83688c7e","name":"List bookings","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"posts_per_page\": 30\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/bookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:39:24 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.4731","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.7 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"X-QM-php_errors-error-count","value":"6","enabled":true},{"key":"X-QM-php_errors-error-1","value":"{\"key\":\"c8de67d6daddab54a1a11c6254350cbb\",\"type\":\"warning\",\"message\":\"Undefined variable $paged\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":202,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-2","value":"{\"key\":\"75982263ff4177e24f84021ed9316b8c\",\"type\":\"warning\",\"message\":\"Undefined variable $posts_per_page\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":203,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-3","value":"{\"key\":\"cc0d8215c67f7529312817c410140be2\",\"type\":\"warning\",\"message\":\"Undefined variable $paged\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":225,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-4","value":"{\"key\":\"dc3aeb4539a07ed327620367172e7eac\",\"type\":\"warning\",\"message\":\"Undefined variable $posts_per_page\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":226,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-5","value":"{\"key\":\"69f5e7b3aff947283ad5f0d033e6c1a7\",\"type\":\"warning\",\"message\":\"Undefined variable $paged\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":229,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-6","value":"{\"key\":\"257a50e6f3c93e169f050cbb99603543\",\"type\":\"warning\",\"message\":\"Undefined variable $paged\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/bookings\\/bookings_retrive.php\",\"line\":230,\"stack\":[\"wprentals_get_all_bookings()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"bookings\": [\n        {\n            \"booking_id\": 37025,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"2025-04-14\",\n            \"booking_to_date\": \"2025-04-21\",\n            \"booking_guests\": \"2\",\n            \"booking_adults\": \"0\",\n            \"booking_childs\": \"0\",\n            \"booking_infants\": \"0\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"1\",\n                \"name\": \"cretu\",\n                \"email\": \"admin2@wprentals.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-24 14:34:49\",\n                \"modified\": \"2025-01-24 14:34:49\"\n            }\n        },\n        {\n            \"booking_id\": 37010,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"25-03-21\",\n            \"booking_to_date\": \"25-03-23\",\n            \"booking_guests\": \"3\",\n            \"booking_adults\": \"2\",\n            \"booking_childs\": \"1\",\n            \"booking_infants\": \"2\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"7\",\n                \"name\": \"renter\",\n                \"email\": \"renter@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-21 11:09:50\",\n                \"modified\": \"2025-01-21 11:09:50\"\n            }\n        },\n        {\n            \"booking_id\": 36971,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"107\",\n            \"property_title\": \"Sunny 2 Bedrooms Video\",\n            \"booking_from_date\": \"25-02-24\",\n            \"booking_to_date\": \"25-02-28\",\n            \"booking_guests\": \"4\",\n            \"booking_adults\": \"3\",\n            \"booking_childs\": \"1\",\n            \"booking_infants\": \"1\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-16 16:36:31\",\n                \"modified\": \"2025-01-16 16:36:31\"\n            }\n        },\n        {\n            \"booking_id\": 36969,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"137\",\n            \"property_title\": \"Huge Sunny Villa – East Side\",\n            \"booking_from_date\": \"25-02-10\",\n            \"booking_to_date\": \"25-02-17\",\n            \"booking_guests\": \"2\",\n            \"booking_adults\": \"0\",\n            \"booking_childs\": \"0\",\n            \"booking_infants\": \"0\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-16 16:15:00\",\n                \"modified\": \"2025-01-16 16:15:00\"\n            }\n        },\n        {\n            \"booking_id\": 36949,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"25-03-10\",\n            \"booking_to_date\": \"25-03-17\",\n            \"booking_guests\": \"3\",\n            \"booking_adults\": \"3\",\n            \"booking_childs\": \"0\",\n            \"booking_infants\": \"0\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-15 12:12:53\",\n                \"modified\": \"2025-01-15 12:12:53\"\n            }\n        },\n        {\n            \"booking_id\": 36928,\n            \"booking_status\": \"confirmed\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"25-05-04\",\n            \"booking_to_date\": \"25-05-11\",\n            \"booking_guests\": \"3\",\n            \"booking_adults\": \"2\",\n            \"booking_childs\": \"1\",\n            \"booking_infants\": \"3\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-14 08:54:17\",\n                \"modified\": \"2025-01-14 08:54:17\"\n            }\n        },\n        {\n            \"booking_id\": 36906,\n            \"booking_status\": \"confirmed\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"25-02-03\",\n            \"booking_to_date\": \"25-02-06\",\n            \"booking_guests\": \"2\",\n            \"booking_adults\": \"0\",\n            \"booking_childs\": \"0\",\n            \"booking_infants\": \"0\",\n            \"booking_invoice_no\": \"36908\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-13 09:11:45\",\n                \"modified\": \"2025-01-13 09:11:45\"\n            }\n        }\n    ],\n    \"pagination\": {\n        \"current_page\": null,\n        \"posts_per_page\": null,\n        \"total_posts\": 12,\n        \"total_pages\": 2,\n        \"has_previous\": false,\n        \"has_next\": true\n    }\n}"}],"_postman_id":"d3f71fbf-af26-4207-9189-a081a1374865"},{"name":"Get booking details","id":"8ea2c2ea-d780-4f41-9d84-eb5e91be80dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/booking/36906","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be either:</p>\n<ul>\n<li><p>The booking owner (who made the booking)</p>\n</li>\n<li><p>The property owner</p>\n</li>\n<li><p>An administrator</p>\n</li>\n</ul>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<ul>\n<li><p>No body parameters</p>\n</li>\n<li><p>Booking ID is specified in URL path</p>\n</li>\n</ul>\n<p>BOOKING STATUS VALUES:</p>\n<ul>\n<li><p>pending</p>\n</li>\n<li><p>confirmed</p>\n</li>\n<li><p>canceled</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Returns complete booking details</p>\n</li>\n<li><p>Includes related property information</p>\n</li>\n<li><p>Shows payment and invoice details</p>\n</li>\n<li><p>Contains guest information</p>\n</li>\n<li><p>Includes booking timestamps</p>\n</li>\n<li><p>Shows extra options and special requests</p>\n</li>\n<li><p>Includes security deposit information</p>\n</li>\n<li><p>Shows both formatted dates and unix timestamps</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","booking","36906"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6ec223ab-3f35-43a2-a6a9-d7e6a255ed2e","name":"Get booking details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/booking/36906"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:40:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3564","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.5 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.0% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"booking\": {\n        \"booking_id\": 36906,\n        \"booking_status\": \"confirmed\",\n        \"property_id\": \"36604\",\n        \"property_title\": \"Perfect Holiday Cabin\",\n        \"booking_from_date\": \"25-02-03\",\n        \"booking_to_date\": \"25-02-06\",\n        \"booking_guests\": \"2\",\n        \"booking_adults\": \"0\",\n        \"booking_childs\": \"0\",\n        \"booking_infants\": \"0\",\n        \"booking_invoice_no\": \"36908\",\n        \"booking_pay_amount\": \"\",\n        \"booking_user\": {\n            \"id\": \"10\",\n            \"name\": \"both2\",\n            \"email\": \"both2@mlsimport.com\"\n        },\n        \"booking_dates\": {\n            \"created\": \"2025-01-13 09:11:45\",\n            \"modified\": \"2025-01-13 09:11:45\"\n        },\n        \"extra_details\": {\n            \"extra_options\": \"Breakfast,Airport Pickup\",\n            \"security_deposit\": \"0\",\n            \"full_pay_invoice_id\": \"0\",\n            \"to_be_paid\": \"34.5\",\n            \"booking_from_date_unix\": \"1738540800\",\n            \"booking_to_date_unix\": \"1738800000\",\n            \"booking_comment\": \"Looking forward to my stay!\"\n        }\n    }\n}"}],"_postman_id":"8ea2c2ea-d780-4f41-9d84-eb5e91be80dc"},{"name":"get owner bookings","id":"c6e2fc82-896d-4aed-9ae0-5f06864ca9bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"posts_per_page\": 3\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/owner/1/bookings","description":"<p>ACCESS RESTRICTIONS:<br />Authentication required (JWT token)<br />User must be either:<br />The owner whose bookings are being requested<br />An administrator</p>\n<p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n<p>URL PARAMETERS:<br />user_id<br />Required<br />Type: integer<br />Owner's user ID in the URL path</p>\n<p>OPTIONAL QUERY PARAMETERS:<br />page<br />Type: integer<br />Page number for pagination<br />Default: 1<br />Min: 1</p>\n<p>posts_per_page<br />Type: integer<br />Number of bookings per page<br />Default: 30<br />Min: 1<br />Max: 100</p>\n<p>NOTES:<br />Returns all bookings for properties owned by the specified user<br />Sorted by date in descending order<br />Only returns bookings for properties where user_id matches the property owner<br />Includes full booking details for each entry<br />Paginated response for performance<br />Includes guest information<br />Shows related invoice numbers<br />Includes booking timestamps<br />Covers all booking statuses (pending, confirmed, canceled)</p>\n","urlObject":{"path":["wp-json","wprentals","v1","owner","1","bookings"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"55680734-f9dd-4b4d-9a8f-77ee50d3baf3","name":"get owner bookings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"page\": 1,\r\n  \"posts_per_page\": 3\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/owner/1/bookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:41:11 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3957","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.5 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"owner_id\": 1,\n    \"bookings\": [\n        {\n            \"booking_id\": 37025,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"2025-04-14\",\n            \"booking_to_date\": \"2025-04-21\",\n            \"booking_guests\": \"2\",\n            \"booking_adults\": \"0\",\n            \"booking_childs\": \"0\",\n            \"booking_infants\": \"0\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"1\",\n                \"name\": \"cretu\",\n                \"email\": \"admin2@wprentals.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-24 14:34:49\",\n                \"modified\": \"2025-01-24 14:34:49\"\n            }\n        },\n        {\n            \"booking_id\": 37010,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"36604\",\n            \"property_title\": \"Perfect Holiday Cabin\",\n            \"booking_from_date\": \"25-03-21\",\n            \"booking_to_date\": \"25-03-23\",\n            \"booking_guests\": \"3\",\n            \"booking_adults\": \"2\",\n            \"booking_childs\": \"1\",\n            \"booking_infants\": \"2\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"7\",\n                \"name\": \"renter\",\n                \"email\": \"renter@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-21 11:09:50\",\n                \"modified\": \"2025-01-21 11:09:50\"\n            }\n        },\n        {\n            \"booking_id\": 36971,\n            \"booking_status\": \"pending\",\n            \"property_id\": \"107\",\n            \"property_title\": \"Sunny 2 Bedrooms Video\",\n            \"booking_from_date\": \"25-02-24\",\n            \"booking_to_date\": \"25-02-28\",\n            \"booking_guests\": \"4\",\n            \"booking_adults\": \"3\",\n            \"booking_childs\": \"1\",\n            \"booking_infants\": \"1\",\n            \"booking_invoice_no\": \"0\",\n            \"booking_pay_amount\": \"\",\n            \"booking_user\": {\n                \"id\": \"10\",\n                \"name\": \"both2\",\n                \"email\": \"both2@mlsimport.com\"\n            },\n            \"booking_dates\": {\n                \"created\": \"2025-01-16 16:36:31\",\n                \"modified\": \"2025-01-16 16:36:31\"\n            }\n        }\n    ],\n    \"pagination\": {\n        \"current_page\": 1,\n        \"posts_per_page\": 3,\n        \"total_posts\": 12,\n        \"total_pages\": 4,\n        \"has_previous\": false,\n        \"has_next\": true\n    }\n}"}],"_postman_id":"c6e2fc82-896d-4aed-9ae0-5f06864ca9bf"},{"name":"Edit a booking","id":"b8ed08e7-36df-4074-a355-ed3fee14207c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"booking_status\": \"confirmed\",\r\n  \"booking_status_full\": \"confirmed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/edit/36906","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be either:</p>\n<ul>\n<li><p>The booking owner (who made the booking)</p>\n</li>\n<li><p>The property owner</p>\n</li>\n<li><p>An administrator</p>\n</li>\n</ul>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<p>booking_status</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Values: \"request\", \"waiting\", \"pending\", \"confirmed\"</p>\n</li>\n<li><p>Note: Only administrators can set status to \"confirmed\"</p>\n</li>\n</ul>\n<p>booking_status_full</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Values: \"waiting\", \"confirmed\"</p>\n</li>\n<li><p>Note: Only administrators can set status to \"confirmed\"</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Only updates booking status fields</p>\n</li>\n<li><p>Records all changes made</p>\n</li>\n<li><p>Returns both old and new values</p>\n</li>\n<li><p>Only allows specific status transitions</p>\n</li>\n<li><p>Maintains change history</p>\n</li>\n<li><p>Admin-only status changes are validated</p>\n</li>\n<li><p>Both status fields can be updated independently</p>\n</li>\n<li><p>Returns current status even if no changes made</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","booking","edit","36906"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f8dbfbf0-6ed4-4d71-9a14-f156abd72cf5","name":"Edit a booking","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"booking_status\": \"confirmed\",\r\n  \"booking_status_full\": \"confirmed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/booking/edit/36906"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:41:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3473","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.4 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.0% of 256 MB server limit","enabled":true},{"key":"Allow","value":"PUT","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"No changes were necessary\",\n    \"booking_id\": 36906,\n    \"current_status\": {\n        \"booking_status\": \"confirmed\",\n        \"booking_status_full\": \"confirmed\"\n    }\n}"}],"_postman_id":"b8ed08e7-36df-4074-a355-ed3fee14207c"},{"name":"List Invoices","id":"e6b3135f-67fe-4f75-8433-5ff201e44962","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2025-01-01\",\r\n    \"end_date\": \"2025-12-31\",\r\n    \"type\": \"Reservation fee\",\r\n    \"status\": \"confirmed\",\r\n    \"page\": 1,\r\n    \"posts_per_page\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoices","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must have administrator role</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>OPTIONAL INPUT PARAMETERS:</p>\n<p>page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Page number for pagination</p>\n</li>\n<li><p>Default: 1</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n</ul>\n<p>posts_per_page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of invoices per page</p>\n</li>\n<li><p>Default: 10</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n<li><p>Max: 100</p>\n</li>\n</ul>\n<p>type</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter by invoice type</p>\n</li>\n<li><p>Values:</p>\n<ul>\n<li><p>\"Listing\"</p>\n</li>\n<li><p>\"Upgrade to Featured\"</p>\n</li>\n<li><p>\"Publish Listing with Featured\"</p>\n</li>\n<li><p>\"Package\"</p>\n</li>\n<li><p>\"Reservation fee\"</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>status</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter by invoice status</p>\n</li>\n<li><p>Values:</p>\n<ul>\n<li><p>\"issued\"</p>\n</li>\n<li><p>\"confirmed\"</p>\n</li>\n<li><p>\"booking canceled by user\"</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>start_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter invoices from this date</p>\n</li>\n<li><p>Format: YYYY-MM-DD</p>\n</li>\n</ul>\n<p>end_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter invoices until this date</p>\n</li>\n<li><p>Format: YYYY-MM-DD</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Returns all invoices in system with filtering options</p>\n</li>\n<li><p>Sorted by date in descending order</p>\n</li>\n<li><p>Includes summary totals for confirmed and issued invoices</p>\n</li>\n<li><p>Supports date range filtering</p>\n</li>\n<li><p>Can filter by type and status</p>\n</li>\n<li><p>Paginated response for performance</p>\n</li>\n<li><p>Includes related booking and property IDs when applicable</p>\n</li>\n<li><p>Shows purchase dates and periods</p>\n</li>\n<li><p>Calculates total amounts for financial overview</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","invoices"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6d4f8f32-c944-4790-9349-c25c75d897e7","name":"List Invoices","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"start_date\": \"2025-01-01\",\r\n    \"end_date\": \"2025-12-31\",\r\n    \"type\": \"Reservation fee\",\r\n    \"status\": \"confirmed\",\r\n    \"page\": 1,\r\n    \"posts_per_page\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:45:49 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.4297","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.5 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"invoices\": [\n        {\n            \"id\": 36943,\n            \"title\": \"Invoice\",\n            \"date\": \"2025-01-15 09:41:05\",\n            \"status\": \"confirmed/ booking canceled by user \",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36930\",\n            \"item_price\": \"\",\n            \"price\": 863.89999999999998,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36930,\n            \"property_id\": 0\n        },\n        {\n            \"id\": 36908,\n            \"title\": \"Invoice 36908\",\n            \"date\": \"2025-01-13 09:23:45\",\n            \"status\": \"confirmed\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36906\",\n            \"item_price\": \"\",\n            \"price\": 84,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36906,\n            \"property_id\": 36604\n        }\n    ],\n    \"pagination\": {\n        \"current_page\": 1,\n        \"posts_per_page\": 10,\n        \"total_posts\": 2,\n        \"total_pages\": 1,\n        \"has_previous\": false,\n        \"has_next\": false\n    },\n    \"totals\": {\n        \"total_confirmed\": 84,\n        \"total_issued\": 0\n    }\n}"}],"_postman_id":"e6b3135f-67fe-4f75-8433-5ff201e44962"},{"name":"List invoices for user","id":"2aceb794-800e-4c54-adfc-7d5d3598acdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/owner/1/invoices","urlObject":{"path":["wp-json","wprentals","v1","owner","1","invoices"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4b6be63a-dbec-45de-b103-6a987a1c2b9f","name":"List invoices for user","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/owner/1/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:45:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.4118","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.4 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.0% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"$args \": {\n        \"post_type\": \"wpestate_invoice\",\n        \"post_status\": \"publish\",\n        \"posts_per_page\": 10,\n        \"paged\": 1,\n        \"meta_query\": {\n            \"0\": {\n                \"key\": \"owner_id\",\n                \"value\": 1,\n                \"type\": \"NUMERIC\",\n                \"compare\": \"=\"\n            },\n            \"relation\": \"AND\"\n        },\n        \"date_query\": []\n    },\n    \"owner_id\": 1,\n    \"invoices\": [],\n    \"pagination\": {\n        \"current_page\": 1,\n        \"posts_per_page\": 10,\n        \"total_posts\": 0,\n        \"total_pages\": 0,\n        \"has_previous\": false,\n        \"has_next\": false\n    },\n    \"totals\": {\n        \"total_confirmed\": 0,\n        \"total_issued\": 0\n    }\n}"}],"_postman_id":"2aceb794-800e-4c54-adfc-7d5d3598acdf"},{"name":"Add invoice","id":"c11c4902-895a-4861-add7-dbbe4f3c284c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"item_id\": 36949,\r\n    \"billing_for\": \"Reservation fee\",\r\n    \"type\": 1,\r\n    \"buyer_id\": 10,\r\n    \"invoice_status\": \"issued\",\r\n    \"price\": 371.6,\r\n    \"details\": [\r\n        {\r\n            \"label\": \"Subtotal\",\r\n            \"value\": 215,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Cleaning fee\",\r\n            \"value\": 15,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"City fee\",\r\n            \"value\": 63,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Security Deposit\",\r\n            \"value\": 20,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Early Bird Discount\",\r\n            \"value\": 30.4,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"manual\",\r\n            \"value\": 100,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Discount\",\r\n            \"value\": -11,\r\n            \"type\": \"\"\r\n        }\r\n    ],\r\n    \"manual_expenses\": [\r\n        {\r\n            \"label\": \"manual\",\r\n            \"value\": 100,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Discount\",\r\n            \"value\": -11,\r\n            \"type\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoice/add","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be either:</p>\n<ul>\n<li><p>The owner whose invoices are being requested</p>\n</li>\n<li><p>An administrator</p>\n</li>\n</ul>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>URL PARAMETERS:<br />user_id</p>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Type: integer</p>\n</li>\n<li><p>Owner's user ID in the URL path</p>\n</li>\n</ul>\n<p>OPTIONAL QUERY PARAMETERS:</p>\n<p>page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Page number for pagination</p>\n</li>\n<li><p>Default: 1</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n</ul>\n<p>posts_per_page</p>\n<ul>\n<li><p>Type: integer</p>\n</li>\n<li><p>Number of invoices per page</p>\n</li>\n<li><p>Default: 30</p>\n</li>\n<li><p>Min: 1</p>\n</li>\n<li><p>Max: 100</p>\n</li>\n</ul>\n<p>type</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter by invoice type</p>\n</li>\n<li><p>Values:</p>\n<ul>\n<li><p>\"Listing\"</p>\n</li>\n<li><p>\"Upgrade to Featured\"</p>\n</li>\n<li><p>\"Publish Listing with Featured\"</p>\n</li>\n<li><p>\"Package\"</p>\n</li>\n<li><p>\"Reservation fee\"</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>status</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter by invoice status</p>\n</li>\n<li><p>Values:</p>\n<ul>\n<li><p>\"issued\"</p>\n</li>\n<li><p>\"confirmed\"</p>\n</li>\n<li><p>\"booking canceled by user\"</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>start_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter invoices from this date</p>\n</li>\n<li><p>Format: YYYY-MM-DD</p>\n</li>\n</ul>\n<p>end_date</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Filter invoices until this date</p>\n</li>\n<li><p>Format: YYYY-MM-DD</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Returns all invoices where the specified user is the owner of the related property</p>\n</li>\n<li><p>Supports filtering by type, status, and date range</p>\n</li>\n<li><p>Includes financial summaries (totals)</p>\n</li>\n<li><p>Shows both issued and confirmed amounts</p>\n</li>\n<li><p>Includes related booking and property information</p>\n</li>\n<li><p>Sorted by date in descending order</p>\n</li>\n<li><p>Paginated response for performance</p>\n</li>\n<li><p>Returns applied filters in response</p>\n</li>\n<li><p>Calculates totals for confirmed and issued invoices separately</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","invoice","add"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e944123a-45f2-47da-a0e1-cb1e2620f7f8","name":"Add invoice","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"item_id\": 36949,\r\n    \"billing_for\": \"Reservation fee\",\r\n    \"type\": 1,\r\n    \"buyer_id\": 10,\r\n    \"invoice_status\": \"issued\",\r\n    \"price\": 371.6,\r\n    \"details\": [\r\n        {\r\n            \"label\": \"Subtotal\",\r\n            \"value\": 215,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Cleaning fee\",\r\n            \"value\": 15,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"City fee\",\r\n            \"value\": 63,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Security Deposit\",\r\n            \"value\": 20,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Early Bird Discount\",\r\n            \"value\": 30.4,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"manual\",\r\n            \"value\": 100,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Discount\",\r\n            \"value\": -11,\r\n            \"type\": \"\"\r\n        }\r\n    ],\r\n    \"manual_expenses\": [\r\n        {\r\n            \"label\": \"manual\",\r\n            \"value\": 100,\r\n            \"type\": \"\"\r\n        },\r\n        {\r\n            \"label\": \"Discount\",\r\n            \"value\": -11,\r\n            \"type\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoice/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:46:10 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.5467","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.9 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.2% of 256 MB server limit","enabled":true},{"key":"X-QM-php_errors-error-count","value":"10","enabled":true},{"key":"X-QM-php_errors-error-1","value":"{\"key\":\"f2940b21ea4ce5d32aa987a018ff4ab4\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":160,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-2","value":"{\"key\":\"155b86062ef0c3073fcdfec002d95404\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":161,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-3","value":"{\"key\":\"d7a18520262e1cf1bea3c69f4960f64a\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":162,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-4","value":"{\"key\":\"182a287ebc77f3f47fa226737b3f12a8\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":165,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-5","value":"{\"key\":\"18c7c57afb5878a0f0c08e9f6b084a78\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":166,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-6","value":"{\"key\":\"e361ac5f2c36335717522e90840463b6\",\"type\":\"warning\",\"message\":\"Undefined variable $listing_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":172,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-7","value":"{\"key\":\"19038d85f3942c784f1139447af403fa\",\"type\":\"warning\",\"message\":\"Undefined array key 1\",\"file\":\"wp-content\\/themes\\/wprentals\\/libs\\/help_functions.php\",\"line\":3953,\"stack\":[\"wpestate_booking_price()\",\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-8","value":"{\"key\":\"1ed4093e3cdb795d075904783806e945\",\"type\":\"warning\",\"message\":\"Undefined variable $price\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":182,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-9","value":"{\"key\":\"ed3d3f60b138abd1f7b2f31a2b21f9a9\",\"type\":\"warning\",\"message\":\"Undefined variable $price\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":183,\"stack\":[\"wprentals_get_booking_invoice_meta()\",\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"X-QM-php_errors-error-10","value":"{\"key\":\"dfc70e0cc60028d5c1f3bf20e45563fd\",\"type\":\"warning\",\"message\":\"Undefined variable $paypal_tax_id\",\"file\":\"wp-content\\/plugins\\/wprentals-core\\/api\\/rest\\/invoices\\/invoices_create.php\",\"line\":391,\"stack\":[\"wprentals_create_invoice()\",\"WP_REST_Server->respond_to_request()\",\"WP_REST_Server->dispatch()\",\"WP_REST_Server->serve_request()\",\"rest_api_loaded()\",\"do_action_ref_array('parse_request')\",\"WP->parse_request()\",\"WP->main()\",\"wp()\"],\"component\":\"Plugin: wprentals-core\"}","enabled":true},{"key":"Allow","value":"POST","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Invoice created successfully.\",\n    \"invoice\": {\n        \"id\": 37027,\n        \"title\": \"Invoice 37027\",\n        \"date\": \"2025-01-24 14:46:10\",\n        \"status\": \"issued\",\n        \"type\": \"Reservation fee\",\n        \"item_id\": \"36949\",\n        \"item_price\": \"\",\n        \"price\": 0,\n        \"purchase_date\": \"\",\n        \"invoice_period_saved\": \"not aplicable\",\n        \"author\": \"1\",\n        \"booking_id\": 36949,\n        \"property_id\": 36604\n    }\n}"}],"_postman_id":"c11c4902-895a-4861-add7-dbbe4f3c284c"},{"name":"Edit Invoice","id":"5a01c5bb-8ba2-4bc0-93c1-117cc962a05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice_status\": \"confirmed\",\r\n    \"invoice_status_full\": \"confirmed\",\r\n    \"depozit_paid\": 500.00\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoice/edit/37027","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be administrator</p>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<p>invoice_status</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Values: \"issued\", \"confirmed\", \"canceled\"</p>\n</li>\n<li><p>Note: Only administrators can update invoice status</p>\n</li>\n</ul>\n<p>invoice_status_full</p>\n<ul>\n<li><p>Type: string</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Values: \"confirmed\", \"pending\", \"canceled\"</p>\n</li>\n<li><p>Note: Only administrators can update full status</p>\n</li>\n</ul>\n<p>depozit_paid</p>\n<ul>\n<li><p>Type: number</p>\n</li>\n<li><p>Optional</p>\n</li>\n<li><p>Must be non-negative</p>\n</li>\n<li><p>Amount of deposit paid</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Only updates specified fields</p>\n</li>\n<li><p>Records all changes made</p>\n</li>\n<li><p>Returns both old and new values</p>\n</li>\n<li><p>Validates status transitions</p>\n</li>\n<li><p>Maintains change history</p>\n</li>\n<li><p>Includes full invoice details in response</p>\n</li>\n<li><p>Returns current values even if no changes made</p>\n</li>\n<li><p>Deposit amount must be non-negative</p>\n</li>\n<li><p>All status changes are admin-only</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","invoice","edit","37027"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"da8e1b62-9b21-4ded-b61e-3d56f53ab113","name":"Edit Invoice","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice_status\": \"confirmed\",\r\n    \"invoice_status_full\": \"confirmed\",\r\n    \"depozit_paid\": 500.00\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/invoice/edit/37027"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:46:30 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3762","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.5 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"PUT","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Invoice updated successfully\",\n    \"invoice_id\": 37027,\n    \"changes\": {\n        \"invoice_status\": {\n            \"from\": \"issued\",\n            \"to\": \"confirmed\"\n        },\n        \"invoice_status_full\": {\n            \"from\": \"\",\n            \"to\": \"confirmed\"\n        },\n        \"depozit_paid\": {\n            \"from\": 0,\n            \"to\": 500\n        }\n    },\n    \"invoice\": {\n        \"id\": 37027,\n        \"title\": \"Invoice 37027\",\n        \"date\": \"2025-01-24 14:46:10\",\n        \"status\": \"confirmed\",\n        \"type\": \"Reservation fee\",\n        \"item_id\": \"36949\",\n        \"item_price\": \"\",\n        \"price\": 0,\n        \"purchase_date\": \"\",\n        \"invoice_period_saved\": \"not aplicable\",\n        \"author\": \"1\",\n        \"booking_id\": 36949,\n        \"property_id\": 36604\n    }\n}"}],"_postman_id":"5a01c5bb-8ba2-4bc0-93c1-117cc962a05c"},{"name":"Delete invoice","id":"0c1a0a9d-bedc-4cc3-ba0e-7525158bc79d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Bearer","value":"","type":"text"},{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/invoice/delete/37027","description":"<p>ACCESS RESTRICTIONS:</p>\n<ul>\n<li><p>Authentication required (JWT token)</p>\n</li>\n<li><p>User must be either:</p>\n<ul>\n<li><p>The owner of the invoice</p>\n</li>\n<li><p>An administrator</p>\n</li>\n</ul>\n</li>\n<li><p>Valid JWT token required in Authorization header: \"Bearer {token}\"</p>\n</li>\n</ul>\n<p>INPUT PARAMETERS:</p>\n<ul>\n<li><p>No body parameters required</p>\n</li>\n<li><p>Invoice ID is specified in URL path</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Permanently deletes the invoice</p>\n</li>\n<li><p>If invoice is for a booking, updates the booking's invoice reference to 0</p>\n</li>\n<li><p>Returns deleted invoice details in response</p>\n</li>\n<li><p>Validates invoice exists before deletion</p>\n</li>\n<li><p>Checks post type is correct (wpestate_invoice)</p>\n</li>\n<li><p>Includes permission validation</p>\n</li>\n<li><p>Returns full details of deleted invoice for reference</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","invoice","delete","37027"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"07b5d625-b936-43a4-b3e4-40ac7078157c","name":"Delete invoice","originalRequest":{"method":"DELETE","header":[{"key":"Bearer","value":"","type":"text"},{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/invoice/delete/37027"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:46:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.4673","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.6 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"DELETE","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Invoice deleted successfully\",\n    \"invoice_id\": 37027,\n    \"deleted_invoice\": {\n        \"id\": 37027,\n        \"title\": \"Invoice 37027\",\n        \"date\": \"2025-01-24 14:46:10\",\n        \"status\": \"confirmed\",\n        \"type\": \"Reservation fee\",\n        \"item_id\": \"36949\",\n        \"item_price\": \"\",\n        \"price\": 0,\n        \"purchase_date\": \"\",\n        \"invoice_period_saved\": \"not aplicable\",\n        \"author\": \"1\",\n        \"booking_id\": 36949,\n        \"property_id\": 36604\n    }\n}"}],"_postman_id":"0c1a0a9d-bedc-4cc3-ba0e-7525158bc79d"},{"name":"List customer invoices","id":"163bd05d-6041-4556-ae8a-5d5be2baadc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/customer/10/invoices","description":"<p>Authorization:\nRequires JWT token authentication\nUser must be either:</p>\n<p>The customer themselves (user_id matches authenticated user)\nAn administrator</p>\n<p>URL Parameters:\nuser_id (required) - The ID of the customer whose invoices to retrieve</p>\n<p>Query Parameters:\npage (optional) - Page number (default: 1)\nposts_per_page (optional) - Number of invoices per page (default: 10, max: 100)\ntype (optional) - Filter by invoice type:</p>\n<p>\"Upgrade to Featured\"\n\"Publish Listing with Featured\"\n\"Package\"\n\"Listing\"\n\"Reservation fee\"</p>\n<p>status (optional) - Filter by invoice status:</p>\n<p>\"issued\"\n\"confirmed\"\n\"booking canceled by user\"</p>\n<p>start_date (optional) - Filter invoices from this date\nend_date (optional) - Filter invoices until this date</p>\n","urlObject":{"path":["wp-json","wprentals","v1","customer","10","invoices"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"37bbc9ae-2b25-4db4-9dbe-29563929b1e2","name":"List customer invoices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/customer/10/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Fri, 24 Jan 2025 14:46:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.3727","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"15.6 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"6.1% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"user_id\": 10,\n    \"invoices\": [\n        {\n            \"id\": 36952,\n            \"title\": \"Invoice 36952\",\n            \"date\": \"2025-01-15 12:20:18\",\n            \"status\": \"issued\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36949\",\n            \"item_price\": \"\",\n            \"price\": 0,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36949,\n            \"property_id\": 36604\n        },\n        {\n            \"id\": 36951,\n            \"title\": \"Invoice 36951\",\n            \"date\": \"2025-01-15 12:14:07\",\n            \"status\": \"issued\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36949\",\n            \"item_price\": \"\",\n            \"price\": 0,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36949,\n            \"property_id\": 36604\n        },\n        {\n            \"id\": 36943,\n            \"title\": \"Invoice\",\n            \"date\": \"2025-01-15 09:41:05\",\n            \"status\": \"confirmed/ booking canceled by user \",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36930\",\n            \"item_price\": \"\",\n            \"price\": 863.89999999999998,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36930,\n            \"property_id\": 0\n        },\n        {\n            \"id\": 36908,\n            \"title\": \"Invoice 36908\",\n            \"date\": \"2025-01-13 09:23:45\",\n            \"status\": \"confirmed\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36906\",\n            \"item_price\": \"\",\n            \"price\": 84,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36906,\n            \"property_id\": 36604\n        }\n    ],\n    \"pagination\": {\n        \"current_page\": 1,\n        \"posts_per_page\": 10,\n        \"total_posts\": 4,\n        \"total_pages\": 1,\n        \"has_previous\": false,\n        \"has_next\": false\n    },\n    \"totals\": {\n        \"total_confirmed\": 84,\n        \"total_issued\": 0\n    },\n    \"filters\": {\n        \"type\": null,\n        \"status\": null,\n        \"start_date\": null,\n        \"end_date\": null\n    }\n}"},{"id":"387831ec-dcfc-42a7-a695-c253bbef5244","name":"List customer invoices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/customer/10/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.26.1","enabled":true},{"key":"Date","value":"Mon, 27 Jan 2025 07:13:08 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.23","enabled":true},{"key":"Set-Cookie","value":"PHPSESSID=9c7eaa0c552f25fb614ae42bda0da5e1; path=/","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"X-Robots-Tag","value":"noindex","enabled":true},{"key":"Link","value":"<https://rentals.me/wp-json/>; rel=\"https://api.w.org/\"","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-WP-Total, X-WP-TotalPages, Link","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type","enabled":true},{"key":"X-QM-overview-time_taken","value":"0.5389","enabled":true},{"key":"X-QM-overview-time_usage","value":"0.0% of 1,200s limit","enabled":true},{"key":"X-QM-overview-memory","value":"9.4 MB","enabled":true},{"key":"X-QM-overview-memory_usage","value":"3.7% of 256 MB server limit","enabled":true},{"key":"Allow","value":"GET","enabled":true},{"key":"Expires","value":"Wed, 11 Jan 1984 05:00:00 GMT","enabled":true},{"key":"Cache-Control","value":"no-cache, must-revalidate, max-age=0, no-store, private","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"user_id\": 10,\n    \"invoices\": [\n        {\n            \"id\": 36952,\n            \"title\": \"Invoice 36952\",\n            \"date\": \"2025-01-15 12:20:18\",\n            \"status\": \"issued\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36949\",\n            \"item_price\": \"\",\n            \"price\": 0,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36949,\n            \"property_id\": 36604\n        },\n        {\n            \"id\": 36951,\n            \"title\": \"Invoice 36951\",\n            \"date\": \"2025-01-15 12:14:07\",\n            \"status\": \"issued\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36949\",\n            \"item_price\": \"\",\n            \"price\": 0,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36949,\n            \"property_id\": 36604\n        },\n        {\n            \"id\": 36943,\n            \"title\": \"Invoice\",\n            \"date\": \"2025-01-15 09:41:05\",\n            \"status\": \"confirmed/ booking canceled by user \",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36930\",\n            \"item_price\": \"\",\n            \"price\": 863.89999999999998,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36930,\n            \"property_id\": 0\n        },\n        {\n            \"id\": 36908,\n            \"title\": \"Invoice 36908\",\n            \"date\": \"2025-01-13 09:23:45\",\n            \"status\": \"confirmed\",\n            \"type\": \"Reservation fee\",\n            \"item_id\": \"36906\",\n            \"item_price\": \"\",\n            \"price\": 84,\n            \"purchase_date\": \"\",\n            \"invoice_period_saved\": \"not aplicable\",\n            \"author\": \"1\",\n            \"booking_id\": 36906,\n            \"property_id\": 36604\n        }\n    ],\n    \"pagination\": {\n        \"current_page\": 1,\n        \"posts_per_page\": 10,\n        \"total_posts\": 4,\n        \"total_pages\": 1,\n        \"has_previous\": false,\n        \"has_next\": false\n    },\n    \"totals\": {\n        \"total_confirmed\": 84,\n        \"total_issued\": 0\n    },\n    \"filters\": {\n        \"type\": null,\n        \"status\": null,\n        \"start_date\": null,\n        \"end_date\": null\n    }\n}"}],"_postman_id":"163bd05d-6041-4556-ae8a-5d5be2baadc4"},{"name":"All Reviews","id":"79da0d15-17be-4a1b-92a6-e9553128dacc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/wp-json/wprentals/v1/reviews","description":"<p>StartFragment</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><strong>page</strong> <em>(integer, default: 1)</em>  </p>\n<p>  The current results page (1-based index). Used for pagination.</p>\n</li>\n<li><p><strong>posts_per_page</strong> <em>(integer, default: 10)</em>  </p>\n<p>  Number of reviews to return per page.</p>\n</li>\n<li><p><strong>property_id</strong> <em>(integer, optional)</em>  </p>\n<p>  Filters reviews by the ID of the property they are attached to (<code>meta_key: attached_to</code>).</p>\n</li>\n<li><p><strong>min_stars</strong> <em>(integer, optional)</em>  </p>\n<p>  Filters reviews with a star rating <strong>greater than or equal</strong> to this value. Uses <code>meta_key: review_stars</code>.</p>\n</li>\n<li><p><strong>max_stars</strong> <em>(integer, optional)</em>  </p>\n<p>  If you want to support it, you’d need to add an additional <code>meta_query</code> condition, similar to <code>min_stars</code>, but with <code>compare: '&lt;='</code>. Right now, sending it has no effect.</p>\n</li>\n<li><p><strong>user_id</strong> <em>(integer, optional)</em>  </p>\n<p>  Filters reviews by the author (WordPress user ID) via <code>meta_key: review_author</code>.</p>\n</li>\n</ul>\n<p>EndFragment</p>\n","urlObject":{"path":["wp-json","wprentals","v1","reviews"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79da0d15-17be-4a1b-92a6-e9553128dacc"},{"name":"Get Review","id":"af79c95e-48a9-4b1a-8407-3ad595e4a935","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}//wp-json/wprentals/v1/review/37135","description":"<p>Retrieves the details of a specific review by its ID.</p>\n<ul>\n<li><p><strong>{review_id}</strong> <em>(integer | required)</em>  </p>\n<p>  The ID of the review to fetch. Example: <code>37135</code>.</p>\n</li>\n</ul>\n","urlObject":{"path":["","wp-json","wprentals","v1","review","37135"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af79c95e-48a9-4b1a-8407-3ad595e4a935"},{"name":"Post Review","id":"bf4b3733-ba73-4476-8f2d-57c69c8c1691","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"property_id\": 124,\r\n    \"user_id\": 1,\r\n    \"ratings\": {\r\n        \"accuracy\": 1,\r\n        \"communication\": 1,\r\n        \"cleanliness\": 1,\r\n        \"location\": 1,\r\n        \"check_in\": 1,\r\n        \"value\": 1\r\n    },\r\n    \"title\": \"Be aware\",\r\n    \"content\": \"Be aware\\n\\nBeware of hidden costs \\u2013 deposit not refunded\\n\\nReview:\\nThe best thing about this hotel is its location \\u2013 right in the heart of Times Square, which made getting around New York really convenient. The concierge and cleaning staff were also very friendly and helpful.\\n\\nHowever, that\\u2019s unfortunately where the positives end. The rooms look nothing like the modern photos advertised \\u2013 they are very dated, tired, and in desperate need of refurbishment. The hotel is under renovation, so apart from the lobby, lifts, and our rooms, we didn\\u2019t really get to experience much else.\\n\\nBreakfast was extremely disappointing \\u2013 instead of a proper dining setup, it consisted of standing in a long queue with a voucher just to get a coffee and a pastry. It honestly felt like queueing up for school dinners.\\n\\nThe biggest issue was with the deposit. Be aware: the money you put down is not returned as expected. I am currently in dispute with the hotel, as they insist it was refunded, but my bank statements clearly show otherwise. This added an unexpected \\u00a3300 cost to my stay, which was never communicated properly. The hotel management\\u2019s communication throughout this process has been terrible.\\n\\nOverall, despite the location, I would not recommend this hotel. Had I known about the hidden costs and the state of the rooms, I would have chosen somewhere else \\u2013 even a budget hostel would have been a better experience.\\n\\nStar Ratings (my opinion):\\n\\t\\u2022\\tLocation: \\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\n\\t\\u2022\\tCleanliness: \\u2b50\\u2b50\\n\\t\\u2022\\tService: \\u2b50\\u2b50\\n\\t\\u2022\\tValue: \\u2b50\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/post-review","description":"<p>Request Body Parameters</p>\n<p>property_id (string | required)<br />ID of the property being reviewed. Must reference an existing property.</p>\n<p>user_id (string | required)<br />ID of the user submitting the review. Must reference a valid WordPress user.</p>\n<p>ratings (object | required)<br />A set of rating values for the property. Each key represents a category.</p>\n<p>accuracy (float, required) – Rating for listing accuracy (e.g., 1–5).</p>\n<p>communication (float, required) – Rating for host/agent communication.</p>\n<p>cleanliness (float, required) – Rating for cleanliness.</p>\n<p>location (float, required) – Rating for property location.</p>\n<p>check_in (float, required) – Rating for the check-in process.</p>\n<p>value (float, required) – Rating for overall value.</p>\n<p>title (string | optional)<br />Short title for the review.</p>\n<p>content (string | optional)<br />Full text content of the review. Supports plain text.</p>\n","urlObject":{"path":["wp-json","wprentals","v1","post-review"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf4b3733-ba73-4476-8f2d-57c69c8c1691"},{"name":"Edit Review","id":"93301f76-3d88-482e-8d14-393314854caf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"body":{"mode":"raw","raw":"  {\r\n    \"ratings\": {\r\n        \"accuracy\": 2,\r\n        \"communication\": 2,\r\n        \"cleanliness\": 2,\r\n        \"location\": 2,\r\n        \"check_in\": 2,\r\n        \"value\": 2\r\n    },\r\n    \"title\": \"Simple Api Review\",\r\n    \"content\": \"Simple edited Api review Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inc ididuntut labore et dolore magna ouraliqua. Ut enim ad minim veniam uis nostrud exercitation ullamco laboris nisi ut aliquiconsectetur adipisicing elit, setdoeiusm od tempor incididu ntut labore et dolore minim veniam, quismipsum dolor sit amet, consect\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/wp-json/wprentals/v1/review/edit/37136","description":"<p>StartFragment</p>\n<p>Edits an existing review by its ID.</p>\n<ul>\n<li><p><strong>{review_id}</strong> <em>(integer | required)</em>  </p>\n<p>  The ID of the review to update. Example: <code>37136</code>.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<h3 id=\"root-level\">Root Level</h3>\n<ul>\n<li><p><strong>ratings</strong> <em>(object | optional)</em>  </p>\n<p>  Updated rating values. Each key represents a category.</p>\n<ul>\n<li><p><strong>accuracy</strong> <em>(float, optional)</em> – Rating for listing accuracy (e.g., 1–5).</p>\n</li>\n<li><p><strong>communication</strong> <em>(float, optional)</em> – Rating for host/agent communication.</p>\n</li>\n<li><p><strong>cleanliness</strong> <em>(float, optional)</em> – Rating for cleanliness.</p>\n</li>\n<li><p><strong>location</strong> <em>(float, optional)</em> – Rating for property location.</p>\n</li>\n<li><p><strong>check_in</strong> <em>(float, optional)</em> – Rating for the check-in process.</p>\n</li>\n<li><p><strong>value</strong> <em>(float, optional)</em> – Rating for overall value.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>title</strong> <em>(string | optional)</em>  </p>\n<p>  New title for the review.</p>\n</li>\n<li><p><strong>content</strong> <em>(string | optional)</em>  </p>\n<p>  Updated full text content of the review.</p>\n</li>\n</ul>\n<p>EndFragment</p>\n","urlObject":{"path":["wp-json","wprentals","v1","review","edit","37136"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"93301f76-3d88-482e-8d14-393314854caf"},{"name":"delete review","id":"6e62af96-1c40-4889-82c6-fe58a11b7c9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{vault:json-web-token}}","type":"text"}],"url":"{{base_url}}/wp-json/wprentals/v1/review/delete/37136","description":"<p>Deletes an existing review by its ID.</p>\n<ul>\n<li><p><strong>{review_id}</strong> <em>(integer | required)</em></p>\n<p>  The ID of the review to delete. Example: <code>37136</code>.</p>\n</li>\n</ul>\n","urlObject":{"path":["wp-json","wprentals","v1","review","delete","37136"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e62af96-1c40-4889-82c6-fe58a11b7c9d"}]}