{ "opencollection": "1.0.0", "info": { "name": "OwnerRez API v2 Bookings Quotes API", "version": "2.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Quotes", "type": "folder" }, "items": [ { "info": { "name": "List quotes", "type": "http" }, "http": { "method": "GET", "url": "https://api.ownerrez.com/v2/quotes", "params": [ { "name": "property_ids", "value": "", "type": "query", "description": "One or more property identifiers to filter by." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return per page." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip for pagination." } ] }, "docs": "Returns a paginated list of price quotes." }, { "info": { "name": "Create a quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.ownerrez.com/v2/quotes", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new price quote for a property and date range." }, { "info": { "name": "Retrieve a quote", "type": "http" }, "http": { "method": "GET", "url": "https://api.ownerrez.com/v2/quotes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Retrieves a single quote by identifier." }, { "info": { "name": "Update a quote", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.ownerrez.com/v2/quotes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially updates a quote." }, { "info": { "name": "Delete a quote", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.ownerrez.com/v2/quotes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Deletes a quote." } ] } ], "bundled": true }