{
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "pm.test('HTTP response is successful', function () { pm.expect(pm.response.code).to.be.within(200, 299); });",
          "try { const body = pm.response.json(); const token = body?.data?.authorization?.token; if (token) pm.environment.set('jwt_token', token); } catch (e) { /* XML responses are valid for Opera workflows */ }"
        ]
      }
    }
  ],
  "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/staging.channel-p.com"
        }
    ],
    "info": {
        "name": "Channel Manager API",
        "_postman_id": "45443480-ee9c-43d0-b807-ca9d16af41b0",
        "description": "Production API reference for the Channel Manager. Includes the existing platform API, legacy Opera XML transport, and the versioned JSON PMS adapter.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "PMS JSON Integration",
            "description": "Inventory Synchronization",
            "item": [
                {
                    "name": "Inventory",
                    "description": "",
                    "item": [
                        {
                            "name": "Initialize comprehensive room inventory",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/inventory\/initial",
                                    "query": [],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/inventory\/initial",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Idempotency-Key",
                                        "value": "string required Unique key for safe retries; required for write endpoints. Example: inventory-20250916-001"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"inventory\":[{\"date\":\"2025-09-16\",\"rooms\":[{\"room_type\":\"CLS\",\"total\":35,\"available\":32},{\"room_type\":\"DLX\",\"total\":19,\"available\":17}]}]}"
                                },
                                "description": "Use this endpoint for the first inventory load or a deliberate full-window\nreinitialization. Every configured room type must be included for every\nsupplied date. The operation is atomic and idempotent, so safe retries do\nnot create duplicate calendar or availability records.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Initial inventory initialized\",\"data\":{\"updated\":2}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"inventory\":[\"Initial inventory must include every configured room type for each date. Missing: DLX.\"]}}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Apply incremental room inventory update",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/inventory\/update",
                                    "query": [],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/inventory\/update",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Idempotency-Key",
                                        "value": "string required Unique key for safe retries; required for write endpoints. Example: inventory-update-20250916-001"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"inventory\":[{\"rooms\":[{\"room_type\":\"CLS\",\"total\":35,\"available\":32}]}]}"
                                },
                                "description": "Use this endpoint after initial setup for one or more changed dates and\nroom types. Unlike initial setup, the payload may contain only the room\ntypes that changed. Existing integrations may continue using the legacy\n`\/inventory` path, which is retained as an alias for this operation.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Inventory updated\",\"data\":{\"updated\":1}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"inventory\":[\"Available rooms cannot exceed total rooms for CLS on 2025-09-16.\"]}}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Apply incremental room inventory update",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/inventory",
                                    "query": [],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/inventory",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Idempotency-Key",
                                        "value": "string required Unique key for safe retries; required for write endpoints. Example: inventory-update-20250916-001"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"inventory\":[{\"rooms\":[{\"room_type\":\"CLS\",\"total\":35,\"available\":32}]}]}"
                                },
                                "description": "Use this endpoint after initial setup for one or more changed dates and\nroom types. Unlike initial setup, the payload may contain only the room\ntypes that changed. Existing integrations may continue using the legacy\n`\/inventory` path, which is retained as an alias for this operation.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Inventory updated\",\"data\":{\"updated\":1}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"inventory\":[\"Available rooms cannot exceed total rooms for CLS on 2025-09-16.\"]}}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Rates",
                    "description": "",
                    "item": [
                        {
                            "name": "Push room rates and date ranges",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/rates",
                                    "query": [],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/rates",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Idempotency-Key",
                                        "value": "string required Unique key for safe retries. Example: rates-20250916-001"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"rates\":[{\"packages\":[{\"code\":\"BB\",\"description\":\"Bed and Breakfast\",\"currency_code\":\"NGN\",\"calculation_rule\":\"R\",\"posting_rhythm\":\"D\",\"package_element\":\"ELEMENT\",\"add_to_rate_mode\":\"INCLUDE\",\"print_separately\":false,\"add_to_rate\":false,\"tax_included\":true,\"allowance\":0,\"sell_separate\":false,\"post_next_day\":false,\"catering_package\":true,\"forecast_next_day\":false,\"override_fixed_rate\":false,\"contains_inactive_details\":false}],\"days_of_week\":{\"monday\":true,\"tuesday\":true,\"wednesday\":true,\"thursday\":true,\"friday\":true,\"saturday\":false,\"sunday\":false}}]}"
                                },
                                "description": "Upserts a rate code, its room-type mapping, and the effective price row.\nPrices are numeric values in the property's configured currency. The\ncategory and room type must belong to the property in the URL.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Rates updated\",\"data\":{\"updated\":1}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"rates\":[\"Each rate must reference a room type and category belonging to the property.\"]}}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Reservations",
                    "description": "",
                    "item": [
                        {
                            "name": "Acknowledge delivered reservations",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/reservations\/acknowledge",
                                    "query": [],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/reservations\/acknowledge",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Idempotency-Key",
                                        "value": "string required Unique key for safe retries. Example: acknowledge-20250916-001"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"reservation_numbers\":[\"CLHS-000000001\"]}"
                                },
                                "description": "Marks selected pending reservations as `Confirmed`. If no reservation\nnumbers are supplied, all pending reservations for the property are\nacknowledged. The operation is scoped to the property in the URL.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Reservations acknowledged\",\"data\":{\"updated\":1}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"reservation_numbers.0\":[\"The reservation numbers.0 must be a string.\"]}}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Pull pending reservations",
                            "request": {
                                "url": {
                                    "host": "{{base_url}}",
                                    "path": "api\/v1.0\/pms\/channel\/{{property_code}}\/reservations",
                                    "query": [
                                        {
                                            "key": "per_page",
                                            "value": "20",
                                            "description": "Maximum records to return; capped at 100.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{base_url}}\/api\/v1.0\/pms\/channel\/{{property_code}}\/reservations?per_page=20",
                                    "variable": [
                                        {
                                            "id": "property_code",
                                            "key": "property_code",
                                            "value": "CLHS",
                                            "description": "Property code configured in the channel manager."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "X-PMS-API-Key",
                                        "value": "string required Property-specific PMS API key. Example: pms_live_example_key"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": "Returns reservations in `New` or `Sent` PMS state using a compact guest\nand stay representation. Successfully returned reservations are marked\n`Sent`; use the acknowledgement endpoint after the PMS has accepted them.",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Reservations fetched\",\"data\":{\"reservations\":[{\"reservation_number\":\"CLHS-000000001\",\"status\":\"New\",\"guest\":{\"first_name\":\"Ada\",\"last_name\":\"Lovelace\",\"email\":\"ada@example.com\",\"phone\":\"+2348000000000\"},\"arrival\":\"2025-09-16\",\"departure\":\"2025-09-18\",\"room_type\":\"CLS\",\"rate_code\":\"BAR\",\"guest_count\":2,\"child_count\":0,\"room_count\":1,\"total_price\":\"110000.00\",\"rate_amount\":\"55000.00\",\"special_request\":null}],\"pagination\":{\"current_page\":1,\"last_page\":1,\"per_page\":20,\"total\":1}}}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 401,
                                    "body": "{\"message\":\"Invalid PMS credentials.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\"message\":\"Property not found.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Opera XML Integration",
            "description": "Raw body: application\/xml. Supported message roots: RtavMessage,\nRateHeader, and RESULT.",
            "item": [
                {
                    "name": "Receive Opera XML integration message",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/opera\/channel\/{{property_code}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/opera\/channel\/{{property_code}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code configured in the channel manager."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Legacy endpoint for Opera inventory, rate, and reservation-result XML\nmessages. The XML contract is preserved for existing Opera clients.\n\nSee docs\/opera_xml_integration.md for complete inventory, rate,\nacknowledgement, and reservation-delivery samples.\n\nSend the raw XML document with `Content-Type: application\/xml`.\nRepresentative inventory request:\n\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<RtavMessage xmlns=\"rtav.fidelio.4.0\" dataMart=\"0\">\n  <HotelReference hotelCode=\"CLHS\"\/>\n  <DailyInventories>\n    <DailyInventory datum=\"2025-09-16\" physicalRooms=\"121\" houseOverbook=\"0\" outOfOrder=\"0\">\n      <RoomTypeInventories>\n        <RoomTypeInventory roomType=\"CLS\" physicalRooms=\"35\" available=\"32\"\/>\n      <\/RoomTypeInventories>\n    <\/DailyInventory>\n  <\/DailyInventories>\n<\/RtavMessage>\n```",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"status\":\"Success\",\"status_code\":201,\"message\":\"Inventory Records updated successfully\",\"data\":[]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "Login, registration, token refresh, and authenticated account operations.",
            "item": [
                {
                    "name": "Register Request",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/auth\/register",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/auth\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Login Request",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/auth\/login",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1.0\/auth\/user\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/auth\/user\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/auth\/user\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "quam",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1.0\/auth\/logout",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/auth\/logout",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1.0\/auth\/refresh\/token",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/auth\/refresh\/token",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/auth\/refresh\/token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Properties and Rooms",
            "description": "Property and resort administration.",
            "item": [
                {
                    "name": "GET api\/v1.0\/resort",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "50"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/resort",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "dolorum",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "49"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/resort\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "similique",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/resort\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "et",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1.0\/resort\/room\/class",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/class",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/class"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/class\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/class\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/class\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "illum",
                                    "description": "The ID of the class."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "48"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1.0\/resort\/room\/class\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/class\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/class\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "quia",
                                    "description": "The ID of the class."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1.0\/resort\/room\/class\/{room_class_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/class\/{{room_class_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/class\/{{room_class_id}}",
                            "variable": [
                                {
                                    "id": "room_class_id",
                                    "key": "room_class_id",
                                    "value": "laudantium",
                                    "description": "The ID of the room class."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/class\/{resort_id}\/{room_class_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/class\/{{resort_id}}\/{{room_class_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/class\/{{resort_id}}\/{{room_class_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "alias",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "room_class_id",
                                    "key": "room_class_id",
                                    "value": "quia",
                                    "description": "The ID of the room class."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "47"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/resort\/room\/category",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/category",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "vitae",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "46"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1.0\/resort\/room\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "sint",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1.0\/resort\/room\/category\/{room_class_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/category\/{{room_class_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/category\/{{room_class_id}}",
                            "variable": [
                                {
                                    "id": "room_class_id",
                                    "key": "room_class_id",
                                    "value": "rerum",
                                    "description": "The ID of the room class."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/category\/{resort_id}\/{room_class_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/category\/{{resort_id}}\/{{room_class_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/category\/{{resort_id}}\/{{room_class_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "sit",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "room_class_id",
                                    "key": "room_class_id",
                                    "value": "in",
                                    "description": "The ID of the room class."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "45"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/resort\/room\/type",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/type",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/type"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/type\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/type\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/type\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ut",
                                    "description": "The ID of the type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "44"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1.0\/resort\/room\/type\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/type\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/type\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "fuga",
                                    "description": "The ID of the type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1.0\/resort\/room\/type\/{room_class_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/type\/{{room_class_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/type\/{{room_class_id}}",
                            "variable": [
                                {
                                    "id": "room_class_id",
                                    "key": "room_class_id",
                                    "value": "ab",
                                    "description": "The ID of the room class."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/room\/type\/{resort_id}\/{room_category_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/room\/type\/{{resort_id}}\/{{room_category_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/room\/type\/{{resort_id}}\/{{room_category_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "quod",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "room_category_id",
                                    "key": "room_category_id",
                                    "value": "provident",
                                    "description": "The ID of the room category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "43"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/room-type\/image\/store\/{resort_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/room-type\/image\/store\/{{resort_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/room-type\/image\/store\/{{resort_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "magni",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/room-type\/image\/store\/{resort_id}\/{image_id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/room-type\/image\/store\/{{resort_id}}\/{{image_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/room-type\/image\/store\/{{resort_id}}\/{{image_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "ut",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "image_id",
                                    "key": "image_id",
                                    "value": "porro",
                                    "description": "The ID of the image."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Rates and Availability",
            "description": "Property inventory queries.",
            "item": [
                {
                    "name": "GET api\/v1.0\/resort\/inventory\/{resort_id}\/{weekly}\/{week}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/inventory\/{{resort_id}}\/:weekly\/:week",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/inventory\/{{resort_id}}\/:weekly\/:week",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "distinctio",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "weekly",
                                    "key": "weekly",
                                    "value": "quod",
                                    "description": ""
                                },
                                {
                                    "id": "week",
                                    "key": "week",
                                    "value": "autem",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "42"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/resort\/inventory\/{resort_id}\/{monthly}\/{month}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/inventory\/{{resort_id}}\/:monthly\/:month",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/inventory\/{{resort_id}}\/:monthly\/:month",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "architecto",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "monthly",
                                    "key": "monthly",
                                    "value": "harum",
                                    "description": ""
                                },
                                {
                                    "id": "month",
                                    "key": "month",
                                    "value": "harum",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "41"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/rate\/{resort_id}\/class",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{resort_id}}\/class",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{resort_id}}\/class",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "necessitatibus",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "36"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/rate\/class",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/class",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/class"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/class\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/class\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/class\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "unde",
                                    "description": "The ID of the class."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "35"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/rate\/class\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/class\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/class\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "alias",
                                    "description": "The ID of the class."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/rate\/class\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/class\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/class\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "voluptatem",
                                    "description": "The ID of the class."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/{resort_id}\/category",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{resort_id}}\/category",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{resort_id}}\/category",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "corrupti",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "34"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/rate\/category",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/category",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "pariatur",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "33"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/rate\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "voluptates",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/rate\/category{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/category{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/category{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "assumenda",
                                    "description": "The ID of the ."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/{resort_id}\/resort",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{resort_id}}\/resort",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{resort_id}}\/resort",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "est",
                                    "description": "The ID of the resort."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "32"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/rate",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ut",
                                    "description": "The ID of the rate."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "31"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/rate\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "est",
                                    "description": "The ID of the rate."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/rate\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "voluptatibus",
                                    "description": "The ID of the rate."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/{resort_id}\/prices\/{start_date}\/{end_date}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/{{resort_id}}\/prices\/{{start_date}}\/{{end_date}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/{{resort_id}}\/prices\/{{start_date}}\/{{end_date}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "libero",
                                    "description": "The ID of the resort."
                                },
                                {
                                    "id": "start_date",
                                    "key": "start_date",
                                    "value": "repellendus",
                                    "description": ""
                                },
                                {
                                    "id": "end_date",
                                    "key": "end_date",
                                    "value": "suscipit",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "30"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/rate\/price",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/price",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/price"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/rate\/price\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/price\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/price\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequuntur",
                                    "description": "The ID of the price."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "29"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/rate\/price\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/price\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/price\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "suscipit",
                                    "description": "The ID of the price."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/rate\/price\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/rate\/price\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/rate\/price\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "dolorem",
                                    "description": "The ID of the price."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Reservations",
            "description": "Reservation booking, availability, and legacy reservation delivery.",
            "item": [
                {
                    "name": "Deliver property reservations",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/reservation\/{{resort_id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/reservation\/{{resort_id}}",
                            "variable": [
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "CLHS",
                                    "description": "Property ID or property code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns reservations waiting for PMS delivery. The legacy Opera route\nuses this action to serialize the next reservation as XML.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "28"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Record fetched successfully\",\"data\":{\"reservations\":[{\"reservation_number\":\"clhs-000000001\",\"channel\":\"plugin\",\"arrival\":\"2025-11-20\",\"departure\":\"2025-11-21\",\"room_type\":\"CLS\",\"rate_code\":\"BAR\",\"guest_name\":\"Tony Stark\"}],\"links\":{\"first\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/reservation\\\/CLHS?page=1\",\"last\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/reservation\\\/CLHS?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"path\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/reservation\\\/CLHS\",\"per_page\":20,\"to\":1,\"total\":1}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/reservation",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/reservation",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/reservation"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "27"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "[\"000000000001\",\"000000000002\",\"000000000003\",\"000000000004\",\"000000000005\",\"000000000006\",\"000000000007\",\"000000000008\",\"000000000009\",\"000000000010\",\"000000000011\",\"000000000012\",\"000000000013\",\"000000000014\",\"000000000015\",\"000000000016\",\"000000000017\",\"000000000018\",\"000000000019\",\"000000000020\",\"000000000021\",\"000000000022\",\"000000000023\",\"000000000024\",\"000000000025\",\"000000000026\",\"000000000027\",\"000000000028\",\"000000000029\",\"000000000030\",\"000000000031\",\"000000000032\",\"000000000033\",\"000000000034\",\"000000000035\",\"000000000036\",\"000000000037\",\"000000000038\",\"000000000039\",\"000000000040\",\"000000000041\",\"000000000042\",\"000000000043\",\"000000000044\",\"000000000045\",\"000000000046\",\"000000000047\",\"000000000048\",\"000000000049\",\"000000000050\",\"000000000051\",\"000000000052\",\"000000000053\",\"000000000054\",\"000000000055\",\"000000000056\",\"000000000057\",\"000000000058\",\"000000000059\",\"000000000060\",\"000000000061\",\"000000000062\",\"000000000063\",\"000000000064\",\"000000000065\",\"000000000066\",\"000000000067\",\"000000000068\",\"000000000069\",\"000000000070\",\"000000000071\",\"000000000072\",\"000000000073\",\"000000000074\",\"000000000075\",\"000000000076\",\"000000000077\",\"000000000078\",\"000000000079\",\"000000000080\",\"000000000081\",\"000000000082\",\"000000000083\",\"000000000084\",\"000000000085\",\"000000000086\",\"000000000087\",\"000000000088\",\"000000000089\",\"000000000090\",\"000000000091\",\"000000000092\",\"000000000093\",\"000000000094\",\"000000000095\",\"000000000096\",\"000000000097\",\"000000000098\",\"000000000099\",\"000000000100\",\"000000000101\",\"000000000102\",\"000000000103\",\"000000000104\",\"000000000105\",\"000000000106\",\"000000000107\",\"000000000108\",\"000000000109\",\"000000000110\",\"000000000111\",\"000000000112\",\"000000000113\",\"000000000114\",\"000000000115\",\"000000000116\",\"000000000117\",\"000000000118\",\"000000000119\",\"000000000120\",\"000000000121\",\"000000000122\",\"000000000123\",\"000000000124\",\"000000000125\",\"000000000126\",\"000000000127\",\"000000000128\",\"000000000129\",\"000000000130\",\"000000000131\",\"000000000132\",\"000000000133\",\"000000000134\",\"000000000135\",\"000000000136\",\"000000000137\",\"000000000138\",\"000000000139\",\"000000000140\",\"000000000141\",\"000000000142\",\"000000000143\",\"000000000144\",\"000000000145\",\"000000000146\",\"000000000147\",\"000000000148\",\"000000000149\",\"000000000150\",\"000000000151\",\"000000000152\",\"000000000153\",\"000000000154\",\"000000000155\",\"000000000156\",\"000000000157\",\"000000000158\",\"000000000159\",\"000000000160\",\"000000000161\",\"000000000162\",\"000000000163\",\"000000000164\",\"000000000165\",\"000000000166\",\"000000000167\",\"000000000168\",\"000000000169\",\"000000000170\",\"000000000171\",\"000000000172\",\"000000000173\",\"000000000174\",\"000000000175\",\"000000000176\",\"000000000177\",\"000000000178\",\"000000000179\",\"000000000180\",\"000000000181\",\"000000000182\",\"000000000183\",\"000000000184\",\"000000000185\",\"000000000186\",\"000000000187\",\"000000000188\",\"000000000189\",\"000000000190\",\"000000000191\",\"000000000192\",\"000000000193\",\"000000000194\",\"000000000195\",\"000000000196\",\"000000000197\",\"000000000198\",\"000000000199\",\"000000000200\",\"000000000201\",\"000000000202\",\"000000000203\",\"000000000204\",\"000000000205\",\"000000000206\",\"000000000207\",\"000000000208\",\"000000000209\",\"000000000210\",\"000000000211\",\"000000000212\",\"000000000213\",\"000000000214\",\"000000000215\",\"000000000216\",\"000000000217\",\"000000000218\",\"000000000219\",\"000000000220\",\"000000000221\",\"000000000222\",\"000000000223\",\"000000000224\",\"000000000225\",\"000000000226\",\"000000000227\",\"000000000228\",\"000000000229\",\"000000000230\",\"000000000231\",\"000000000232\",\"000000000233\",\"000000000234\",\"000000000235\",\"000000000236\",\"000000000237\",\"000000000238\",\"000000000239\",\"000000000240\",\"000000000241\",\"000000000242\",\"000000000243\",\"000000000244\",\"000000000245\",\"000000000246\",\"000000000247\",\"000000000248\",\"000000000249\",\"000000000250\",\"000000000251\",\"000000000252\",\"000000000253\",\"000000000254\",\"000000000255\",\"000000000256\",\"000000000257\",\"000000000258\",\"000000000259\",\"000000000260\",\"000000000261\",\"000000000262\",\"000000000263\",\"000000000264\",\"000000000265\",\"000000000266\",\"000000000267\",\"000000000268\",\"000000000269\",\"000000000270\",\"000000000271\",\"000000000272\",\"000000000273\",\"000000000274\",\"000000000275\",\"000000000276\",\"000000000277\",\"000000000278\",\"000000000279\",\"000000000280\",\"000000000281\",\"000000000282\",\"000000000283\",\"000000000284\",\"000000000285\",\"000000000286\",\"000000000287\",\"000000000288\",\"000000000289\",\"000000000290\",\"000000000291\",\"000000000292\",\"000000000293\",\"000000000294\",\"000000000295\",\"000000000296\",\"000000000297\",\"000000000298\",\"000000000299\",\"000000000300\",\"000000000301\",\"000000000302\",\"000000000303\",\"000000000304\",\"000000000305\",\"000000000306\",\"000000000307\",\"000000000308\",\"000000000309\",\"000000000310\",\"000000000311\",\"000000000312\",\"000000000313\",\"000000000314\",\"000000000315\",\"000000000316\",\"000000000317\",\"000000000318\",\"000000000319\",\"000000000320\",\"000000000321\",\"000000000322\",\"000000000323\",\"000000000324\",\"000000000325\",\"000000000326\",\"000000000327\",\"000000000328\",\"000000000329\",\"000000000330\",\"000000000331\",\"000000000332\",\"000000000333\",\"000000000334\",\"000000000335\",\"000000000336\",\"000000000337\",\"000000000338\",\"000000000339\",\"000000000340\",\"000000000341\",\"000000000342\",\"000000000343\",\"000000000344\",\"000000000345\",\"000000000346\",\"000000000347\",\"000000000348\",\"000000000349\",\"000000000350\",\"000000000351\",\"000000000352\",\"000000000353\",\"000000000354\",\"000000000355\",\"000000000356\",\"000000000357\",\"000000000358\",\"000000000359\",\"000000000360\",\"000000000361\",\"000000000362\",\"000000000363\",\"000000000364\",\"000000000365\",\"000000000366\",\"000000000367\",\"000000000368\",\"000000000369\",\"000000000370\",\"000000000371\",\"000000000372\",\"000000000373\",\"000000000374\",\"000000000375\",\"000000000376\",\"000000000377\",\"000000000378\",\"000000000379\",\"000000000380\",\"000000000381\",\"000000000382\",\"000000000383\",\"000000000384\",\"000000000385\",\"000000000386\",\"000000000387\",\"000000000388\",\"000000000389\",\"000000000390\",\"000000000391\",\"000000000392\",\"000000000393\",\"000000000394\",\"000000000395\",\"000000000396\",\"000000000397\",\"000000000398\",\"000000000399\",\"000000000400\",\"000000000401\",\"000000000402\",\"000000000403\",\"000000000404\",\"000000000405\",\"000000000406\",\"000000000407\",\"000000000408\",\"000000000409\",\"000000000410\",\"000000000411\",\"000000000412\",\"000000000413\",\"000000000414\",\"000000000415\",\"000000000416\",\"000000000417\",\"000000000418\",\"000000000419\",\"000000000420\",\"000000000421\",\"000000000422\",\"000000000423\",\"000000000424\",\"000000000425\",\"000000000426\",\"000000000427\",\"000000000428\",\"000000000429\",\"000000000430\",\"000000000431\",\"000000000432\",\"000000000433\",\"000000000434\",\"000000000435\",\"000000000436\",\"000000000437\",\"000000000438\",\"000000000439\",\"000000000440\",\"000000000441\",\"000000000442\",\"000000000443\",\"000000000444\",\"000000000445\",\"000000000446\",\"000000000447\",\"000000000448\",\"000000000449\",\"000000000450\",\"000000000451\",\"000000000452\",\"000000000453\",\"000000000454\",\"000000000455\",\"000000000456\",\"000000000457\",\"000000000458\",\"000000000459\",\"000000000460\",\"000000000461\",\"000000000462\",\"000000000463\",\"000000000464\",\"000000000465\",\"000000000466\",\"000000000467\",\"000000000468\",\"000000000469\",\"000000000470\",\"000000000471\",\"000000000472\",\"000000000473\",\"000000000474\",\"000000000475\",\"000000000476\",\"000000000477\",\"000000000478\",\"000000000479\",\"000000000480\",\"000000000481\",\"000000000482\",\"000000000483\",\"000000000484\",\"000000000485\",\"000000000486\",\"000000000487\",\"000000000488\",\"000000000489\",\"000000000490\",\"000000000491\",\"000000000492\",\"000000000493\",\"000000000494\",\"000000000495\",\"000000000496\",\"000000000497\",\"000000000498\",\"000000000499\",\"000000000500\",\"000000000501\",\"000000000502\",\"000000000503\",\"000000000504\",\"000000000505\",\"000000000506\",\"000000000507\",\"000000000508\",\"000000000509\",\"000000000510\",\"000000000511\",\"000000000512\",\"000000000513\",\"000000000514\",\"000000000515\",\"000000000516\",\"000000000517\",\"000000000518\",\"000000000519\",\"000000000520\",\"000000000521\",\"000000000522\",\"000000000523\",\"000000000524\",\"000000000525\",\"000000000526\",\"000000000527\",\"000000000528\",\"000000000529\",\"000000000530\",\"000000000531\",\"000000000532\",\"000000000533\",\"000000000534\",\"000000000535\",\"000000000536\",\"000000000537\",\"000000000538\",\"000000000539\",\"000000000540\",\"000000000541\",\"000000000542\",\"000000000543\",\"000000000544\",\"000000000545\",\"000000000546\",\"000000000547\",\"000000000548\",\"000000000549\",\"000000000550\",\"000000000551\",\"000000000552\",\"000000000553\",\"000000000554\",\"000000000555\",\"000000000556\",\"000000000557\",\"000000000558\",\"000000000559\",\"000000000560\",\"000000000561\",\"000000000562\",\"000000000563\",\"000000000564\",\"000000000565\",\"000000000566\",\"000000000567\",\"000000000568\",\"000000000569\",\"000000000570\",\"000000000571\",\"000000000572\",\"000000000573\",\"000000000574\",\"000000000575\",\"000000000576\",\"000000000577\",\"000000000578\",\"000000000579\",\"000000000580\",\"000000000581\",\"000000000582\",\"000000000583\",\"000000000584\",\"000000000585\",\"000000000586\",\"000000000587\",\"000000000588\",\"000000000589\",\"000000000590\",\"000000000591\",\"000000000592\",\"000000000593\",\"000000000594\",\"000000000595\",\"000000000596\",\"000000000597\",\"000000000598\",\"000000000599\",\"000000000600\",\"000000000601\",\"000000000602\",\"000000000603\",\"000000000604\",\"000000000605\",\"000000000606\",\"000000000607\",\"000000000608\",\"000000000609\",\"000000000610\",\"000000000611\",\"000000000612\",\"000000000613\",\"000000000614\",\"000000000615\",\"000000000616\",\"000000000617\",\"000000000618\",\"000000000619\",\"000000000620\",\"000000000621\",\"000000000622\",\"000000000623\",\"000000000624\",\"000000000625\",\"000000000626\",\"000000000627\",\"000000000628\",\"000000000629\",\"000000000630\",\"000000000631\",\"000000000632\",\"000000000633\",\"000000000634\",\"000000000635\",\"000000000636\",\"000000000637\",\"000000000638\",\"000000000639\",\"000000000640\",\"000000000641\",\"000000000642\",\"000000000643\",\"000000000644\",\"000000000645\",\"000000000646\",\"000000000647\",\"000000000648\",\"000000000649\",\"000000000650\",\"000000000651\",\"000000000652\",\"000000000653\",\"000000000654\",\"000000000655\",\"000000000656\",\"000000000657\",\"000000000658\",\"000000000659\",\"000000000660\",\"000000000661\",\"000000000662\",\"000000000663\",\"000000000664\",\"000000000665\",\"000000000666\",\"000000000667\",\"000000000668\",\"000000000669\",\"000000000670\",\"000000000671\",\"000000000672\",\"000000000673\",\"000000000674\",\"000000000675\",\"000000000676\",\"000000000677\",\"000000000678\",\"000000000679\",\"000000000680\",\"000000000681\",\"000000000682\",\"000000000683\",\"000000000684\",\"000000000685\",\"000000000686\",\"000000000687\",\"000000000688\",\"000000000689\",\"000000000690\",\"000000000691\",\"000000000692\",\"000000000693\",\"000000000694\",\"000000000695\",\"000000000696\",\"000000000697\",\"000000000698\",\"000000000699\",\"000000000700\",\"000000000701\",\"000000000702\",\"000000000703\",\"000000000704\",\"000000000705\",\"000000000706\",\"000000000707\",\"000000000708\",\"000000000709\",\"000000000710\",\"000000000711\",\"000000000712\",\"000000000713\",\"000000000714\",\"000000000715\",\"000000000716\",\"000000000717\",\"000000000718\",\"000000000719\",\"000000000720\",\"000000000721\",\"000000000722\",\"000000000723\",\"000000000724\",\"000000000725\",\"000000000726\",\"000000000727\",\"000000000728\",\"000000000729\",\"000000000730\",\"000000000731\",\"000000000732\",\"000000000733\",\"000000000734\",\"000000000735\",\"000000000736\",\"000000000737\",\"000000000738\",\"000000000739\",\"000000000740\",\"000000000741\",\"000000000742\",\"000000000743\",\"000000000744\",\"000000000745\",\"000000000746\",\"000000000747\",\"000000000748\",\"000000000749\",\"000000000750\",\"000000000751\",\"000000000752\",\"000000000753\",\"000000000754\",\"000000000755\",\"000000000756\",\"000000000757\",\"000000000758\",\"000000000759\",\"000000000760\",\"000000000761\",\"000000000762\",\"000000000763\",\"000000000764\",\"000000000765\",\"000000000766\",\"000000000767\",\"000000000768\",\"000000000769\",\"000000000770\",\"000000000771\",\"000000000772\",\"000000000773\",\"000000000774\",\"000000000775\",\"000000000776\",\"000000000777\",\"000000000778\",\"000000000779\",\"000000000780\",\"000000000781\",\"000000000782\",\"000000000783\",\"000000000784\",\"000000000785\",\"000000000786\",\"000000000787\",\"000000000788\",\"000000000789\",\"000000000790\",\"000000000791\",\"000000000792\",\"000000000793\",\"000000000794\",\"000000000795\",\"000000000796\",\"000000000797\",\"000000000798\",\"000000000799\",\"000000000800\",\"000000000801\",\"000000000802\",\"000000000803\",\"000000000804\",\"000000000805\",\"000000000806\",\"000000000807\",\"000000000808\",\"000000000809\",\"000000000810\",\"000000000811\",\"000000000812\",\"000000000813\",\"000000000814\",\"000000000815\",\"000000000816\",\"000000000817\",\"000000000818\",\"000000000819\",\"000000000820\",\"000000000821\",\"000000000822\",\"000000000823\",\"000000000824\",\"000000000825\",\"000000000826\",\"000000000827\",\"000000000828\",\"000000000829\",\"000000000830\",\"000000000831\",\"000000000832\",\"000000000833\",\"000000000834\",\"000000000835\",\"000000000836\",\"000000000837\",\"000000000838\",\"000000000839\",\"000000000840\",\"000000000841\",\"000000000842\",\"000000000843\",\"000000000844\",\"000000000845\",\"000000000846\",\"000000000847\",\"000000000848\",\"000000000849\",\"000000000850\",\"000000000851\",\"000000000852\",\"000000000853\",\"000000000854\",\"000000000855\",\"000000000856\",\"000000000857\",\"000000000858\",\"000000000859\",\"000000000860\",\"000000000861\",\"000000000862\",\"000000000863\",\"000000000864\",\"000000000865\",\"000000000866\",\"000000000867\",\"000000000868\",\"000000000869\",\"000000000870\",\"000000000871\",\"000000000872\",\"000000000873\",\"000000000874\",\"000000000875\",\"000000000876\",\"000000000877\",\"000000000878\",\"000000000879\",\"000000000880\",\"000000000881\",\"000000000882\",\"000000000883\",\"000000000884\",\"000000000885\",\"000000000886\",\"000000000887\",\"000000000888\",\"000000000889\",\"000000000890\",\"000000000891\",\"000000000892\",\"000000000893\",\"000000000894\",\"000000000895\",\"000000000896\",\"000000000897\",\"000000000898\",\"000000000899\",\"000000000900\",\"000000000901\",\"000000000902\",\"000000000903\",\"000000000904\",\"000000000905\",\"000000000906\",\"000000000907\",\"000000000908\",\"000000000909\",\"000000000910\",\"000000000911\",\"000000000912\",\"000000000913\",\"000000000914\",\"000000000915\",\"000000000916\",\"000000000917\",\"000000000918\",\"000000000919\",\"000000000920\",\"000000000921\",\"000000000922\",\"000000000923\",\"000000000924\",\"000000000925\",\"000000000926\",\"000000000927\",\"000000000928\",\"000000000929\",\"000000000930\",\"000000000931\",\"000000000932\",\"000000000933\",\"000000000934\",\"000000000935\",\"000000000936\",\"000000000937\",\"000000000938\",\"000000000939\",\"000000000940\",\"000000000941\",\"000000000942\",\"000000000943\",\"000000000944\",\"000000000945\",\"000000000946\",\"000000000947\",\"000000000948\",\"000000000949\",\"000000000950\",\"000000000951\",\"000000000952\",\"000000000953\",\"000000000954\",\"000000000955\",\"000000000956\",\"000000000957\",\"000000000958\",\"000000000959\",\"000000000960\",\"000000000961\",\"000000000962\",\"000000000963\",\"000000000964\",\"000000000965\",\"000000000966\",\"000000000967\",\"000000000968\",\"000000000969\",\"000000000970\",\"000000000971\",\"000000000972\",\"000000000973\",\"000000000974\",\"000000000975\",\"000000000976\",\"000000000977\",\"000000000978\",\"000000000979\",\"000000000980\",\"000000000981\",\"000000000982\",\"000000000983\",\"000000000984\",\"000000000985\",\"000000000986\",\"000000000987\",\"000000000988\",\"000000000989\",\"000000000990\",\"000000000991\",\"000000000992\",\"000000000993\",\"000000000994\",\"000000000995\",\"000000000996\",\"000000000997\",\"000000000998\",\"000000000999\",\"000000001000\"]",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/reservation",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/reservation",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/reservation"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/reservation\/room\/availability",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/reservation\/room\/availability",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/reservation\/room\/availability"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "26"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 400,
                            "body": "{\"status\":\"Error\",\"status_code\":400,\"message\":\"Validation error\",\"data\":{\"property_code\":[\"The property code field is required.\"],\"guestCount\":[\"The guest count field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/reservation\/property\/{resort_code}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/reservation\/property\/:resort_code",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/reservation\/property\/:resort_code",
                            "variable": [
                                {
                                    "id": "resort_code",
                                    "key": "resort_code",
                                    "value": "illum",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "25"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 400,
                            "body": "{\"status\":\"Error\",\"status_code\":400,\"message\":\"Not found\",\"data\":\"No matching property for illum\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Deliver property reservations",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/opera\/channel\/{{property_code}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/opera\/channel\/{{property_code}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "fugiat",
                                    "description": ""
                                },
                                {
                                    "id": "resort_id",
                                    "key": "resort_id",
                                    "value": "CLHS",
                                    "description": "Property ID or property code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns reservations waiting for PMS delivery. The legacy Opera route\nuses this action to serialize the next reservation as XML.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "text\/plain; charset=UTF-8"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "18"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 400,
                            "body": "Property with this does not exists.",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users and Access",
            "description": "Role resources.",
            "item": [
                {
                    "name": "GET api\/v1.0\/role",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/role",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/role"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "57"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/role\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/role\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/role\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "exercitationem",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "56"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/user",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "55"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/user\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "54"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1.0\/user\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/user\/super\/admins",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user\/super\/admins",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user\/super\/admins"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "53"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/user\/resort\/managers",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user\/resort\/managers",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user\/resort\/managers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "52"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/user\/resort\/supervisors",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/user\/resort\/supervisors",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/user\/resort\/supervisors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "51"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Calendar",
            "description": "Calendar generation and maintenance.",
            "item": [
                {
                    "name": "GET api\/v1.0\/calendar",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/calendar",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/calendar"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "17"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"Records fetched successfully\",\"data\":{\"current_page\":1,\"data\":[{\"id\":1,\"datum\":\"2022-08-17\",\"created_at\":\"2024-07-22T13:06:21.000000Z\",\"updated_at\":\"2024-07-22T13:06:21.000000Z\"},{\"id\":2,\"datum\":\"2022-08-18\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":3,\"datum\":\"2022-08-19\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":4,\"datum\":\"2022-08-20\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":5,\"datum\":\"2022-08-21\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":6,\"datum\":\"2022-08-22\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":7,\"datum\":\"2022-08-23\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":8,\"datum\":\"2022-08-24\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":9,\"datum\":\"2022-08-25\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":10,\"datum\":\"2022-08-26\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":11,\"datum\":\"2022-08-27\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":12,\"datum\":\"2022-08-28\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":13,\"datum\":\"2022-08-29\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":14,\"datum\":\"2022-08-30\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":15,\"datum\":\"2022-08-31\",\"created_at\":\"2024-07-22T13:06:22.000000Z\",\"updated_at\":\"2024-07-22T13:06:22.000000Z\"},{\"id\":16,\"datum\":\"2024-07-01\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":17,\"datum\":\"2024-07-02\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":18,\"datum\":\"2024-07-03\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":19,\"datum\":\"2024-07-04\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":20,\"datum\":\"2024-07-05\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":21,\"datum\":\"2024-07-06\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":22,\"datum\":\"2024-07-07\",\"created_at\":\"2024-07-22T13:06:23.000000Z\",\"updated_at\":\"2024-07-22T13:06:23.000000Z\"},{\"id\":23,\"datum\":\"2024-07-08\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":24,\"datum\":\"2024-07-09\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":25,\"datum\":\"2024-07-10\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":26,\"datum\":\"2024-07-11\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":27,\"datum\":\"2024-07-12\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":28,\"datum\":\"2024-07-13\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":29,\"datum\":\"2024-07-14\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":30,\"datum\":\"2024-07-15\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":31,\"datum\":\"2024-07-16\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":32,\"datum\":\"2024-07-17\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":33,\"datum\":\"2024-07-18\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":34,\"datum\":\"2024-07-19\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":35,\"datum\":\"2024-07-20\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":36,\"datum\":\"2024-07-21\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":37,\"datum\":\"2024-07-22\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":38,\"datum\":\"2024-07-23\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":39,\"datum\":\"2024-07-24\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":40,\"datum\":\"2024-07-25\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":41,\"datum\":\"2024-07-26\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":42,\"datum\":\"2024-07-27\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":43,\"datum\":\"2024-07-28\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":44,\"datum\":\"2024-07-29\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":45,\"datum\":\"2024-07-30\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":46,\"datum\":\"2024-07-31\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":47,\"datum\":\"2024-08-01\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":48,\"datum\":\"2024-08-02\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":49,\"datum\":\"2024-08-03\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":50,\"datum\":\"2024-08-04\",\"created_at\":\"2024-07-22T13:06:24.000000Z\",\"updated_at\":\"2024-07-22T13:06:24.000000Z\"},{\"id\":51,\"datum\":\"2024-08-05\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":52,\"datum\":\"2024-08-06\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":53,\"datum\":\"2024-08-07\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":54,\"datum\":\"2024-08-08\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":55,\"datum\":\"2024-08-09\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":56,\"datum\":\"2024-08-10\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":57,\"datum\":\"2024-08-11\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":58,\"datum\":\"2024-08-12\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":59,\"datum\":\"2024-08-13\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":60,\"datum\":\"2024-08-14\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":61,\"datum\":\"2024-08-15\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":62,\"datum\":\"2024-08-16\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":63,\"datum\":\"2024-08-17\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":64,\"datum\":\"2024-08-18\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":65,\"datum\":\"2024-08-19\",\"created_at\":\"2024-07-22T13:06:25.000000Z\",\"updated_at\":\"2024-07-22T13:06:25.000000Z\"},{\"id\":66,\"datum\":\"2024-08-20\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":67,\"datum\":\"2024-08-21\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":68,\"datum\":\"2024-08-22\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":69,\"datum\":\"2024-08-23\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":70,\"datum\":\"2024-08-24\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":71,\"datum\":\"2024-08-25\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":72,\"datum\":\"2024-08-26\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":73,\"datum\":\"2024-08-27\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":74,\"datum\":\"2024-08-28\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":75,\"datum\":\"2024-08-29\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":76,\"datum\":\"2024-08-30\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":77,\"datum\":\"2024-08-31\",\"created_at\":\"2024-07-22T13:06:26.000000Z\",\"updated_at\":\"2024-07-22T13:06:26.000000Z\"},{\"id\":78,\"datum\":\"2021-12-29\",\"created_at\":\"2024-07-22T14:46:39.000000Z\",\"updated_at\":\"2024-07-22T14:46:39.000000Z\"},{\"id\":79,\"datum\":\"2024-09-01\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":80,\"datum\":\"2024-09-02\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":81,\"datum\":\"2024-09-03\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":82,\"datum\":\"2024-09-04\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":83,\"datum\":\"2024-09-05\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":84,\"datum\":\"2024-09-06\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":85,\"datum\":\"2024-09-07\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":86,\"datum\":\"2024-09-08\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":87,\"datum\":\"2024-09-09\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":88,\"datum\":\"2024-09-10\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":89,\"datum\":\"2024-09-11\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":90,\"datum\":\"2024-09-12\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":91,\"datum\":\"2024-09-13\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":92,\"datum\":\"2024-09-14\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":93,\"datum\":\"2024-09-15\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":94,\"datum\":\"2024-09-16\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":95,\"datum\":\"2024-09-17\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":96,\"datum\":\"2024-09-18\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":97,\"datum\":\"2024-09-19\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":98,\"datum\":\"2024-09-20\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":99,\"datum\":\"2024-09-21\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"},{\"id\":100,\"datum\":\"2024-09-22\",\"created_at\":\"2024-07-23T14:14:52.000000Z\",\"updated_at\":\"2024-07-23T14:14:52.000000Z\"}],\"first_page_url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=1\",\"from\":1,\"last_page\":24,\"last_page_url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=24\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=5\",\"label\":\"5\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=6\",\"label\":\"6\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=7\",\"label\":\"7\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=8\",\"label\":\"8\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=9\",\"label\":\"9\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=10\",\"label\":\"10\",\"active\":false},{\"url\":null,\"label\":\"...\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=23\",\"label\":\"23\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=24\",\"label\":\"24\",\"active\":false},{\"url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar?page=2\",\"path\":\"http:\\\/\\\/staging.channel-p.com\\\/api\\\/v1.0\\\/calendar\",\"per_page\":100,\"prev_page_url\":null,\"to\":100,\"total\":2334}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/calendar\/generate\/{years}\/{date}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/calendar\/generate\/:years\/:date",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/calendar\/generate\/:years\/:date",
                            "variable": [
                                {
                                    "id": "years",
                                    "key": "years",
                                    "value": "iusto",
                                    "description": ""
                                },
                                {
                                    "id": "date",
                                    "key": "date",
                                    "value": "eum",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "16"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\"status\":\"Error\",\"status_code\":500,\"message\":\"Server error\",\"data\":\"SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect date value: 'eum' for column ``.``.`start_date` at row 1 (Connection: mysql, SQL: CALL generate_dates(eum,iusto))\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1.0\/calendar\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/calendar\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/calendar\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the calendar."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Amenities",
            "description": "Amenity category resources.",
            "item": [
                {
                    "name": "GET api\/v1.0\/resort\/amenity\/category",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/amenity\/category",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/amenity\/category"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "40"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/resort\/amenity\/category",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/amenity\/category",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/amenity\/category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/resort\/amenity\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "est",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "39"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/resort\/amenity\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "est",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/resort\/amenity\/category\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/resort\/amenity\/category\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "blanditiis",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/amenity",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/amenity",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/amenity"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "38"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/amenity",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/amenity",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/amenity"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/amenity\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/amenity\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/amenity\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "illum",
                                    "description": "The ID of the amenity."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "37"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1.0\/amenity\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/amenity\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/amenity\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "accusamus",
                                    "description": "The ID of the amenity."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/amenity\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/amenity\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/amenity\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ut",
                                    "description": "The ID of the amenity."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Platform API",
            "description": "",
            "item": [
                {
                    "name": "Operational health report for load balancers, uptime monitors, and operators.",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/health",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/health"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"status\":\"ok\",\"checkedAt\":\"2026-08-04T16:08:16+00:00\",\"appName\":\"Harmony Channels\",\"environment\":\"production\",\"version\":\"unknown\",\"services\":{}},\"meta\":{}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 503,
                            "body": "{\"data\":{\"status\":\"degraded\",\"checkedAt\":\"2026-08-04T16:08:16+00:00\",\"appName\":\"Harmony Channels\",\"environment\":\"production\",\"version\":\"unknown\",\"services\":{}},\"meta\":{}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1.0\/beds24\/accounts",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/beds24\/accounts",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/beds24\/accounts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "22"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1.0\/beds24\/accounts",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/beds24\/accounts",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/beds24\/accounts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"twmuwqmpq\",\"refresh_token\":\"sit\",\"invite_code\":\"laudantium\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1.0\/beds24\/accounts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/beds24\/accounts\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/beds24\/accounts\/{{id}}",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "quia",
                                    "description": "The ID of the account."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"ydrlhslwkmfa\",\"status\":\"revoked\",\"refresh_token\":\"minus\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1.0\/properties\/{property_code}\/price-parity\/rules\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "aut",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "nihil",
                                    "description": "The ID of the rule."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1.0\/properties\/{property_code}\/price-parity\/rules\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "excepturi",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "qui",
                                    "description": "The ID of the rule."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1.0\/properties\/{property_code}\/price-parity\/scan",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/scan",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/scan",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "atque",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"snapshot_id\":2}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1.0\/properties\/{property_code}\/price-parity\/violations",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/violations",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/violations",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "animi",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1.0\/properties\/{property_code}\/price-parity\/violations\/{id}",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/violations\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/violations\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "soluta",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ipsum",
                                    "description": "The ID of the violation."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"acknowledged\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Beds24 Integration",
            "description": "",
            "item": [
                {
                    "name": "Show Beds24 connection",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "24"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Connect a property to Beds24",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"beds24_property_id\":123456,\"token_mode\":\"per_property\",\"beds24_account_id\":11,\"refresh_token\":\"ipsam\",\"invite_code\":\"velit\",\"webhook_secret\":\"id\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Beds24 connection status",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "occaecati",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"suspended\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show the token strategy used by a property",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24\/token-mode",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24\/token-mode",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "sint",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "23"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Change a property between global and per-property token mode",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24\/token-mode",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24\/token-mode",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "voluptatem",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mode\":\"global\",\"account_id\":1,\"refresh_token\":\"inventore\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Map a local room type to Beds24",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24\/rooms\/{{room_type_id}}\/map",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24\/rooms\/{{room_type_id}}\/map",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "fuga",
                                    "description": ""
                                },
                                {
                                    "id": "roomType",
                                    "key": "roomType",
                                    "value": "aliquam",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"beds24_room_id\":3456789,\"total_inventory\":35,\"metadata\":[]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Queue Beds24 synchronization",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/beds24\/sync",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/beds24\/sync",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "voluptas",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2025-09-16\",\"to\":\"2025-09-30\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Receive a Beds24 webhook",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/beds24\/webhooks",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/beds24\/webhooks"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payload\":{\"roomId\":\"123456\",\"propId\":\"12345\",\"action\":\"SYNC_ROOM\"}}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "PMS Credential Administration",
            "description": "",
            "item": [
                {
                    "name": "List property PMS credentials",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/pms-credentials",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/pms-credentials",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"status\":\"Success\",\"status_code\":200,\"message\":\"PMS credentials fetched\",\"data\":{\"credentials\":[]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a PMS credential",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/pms-credentials",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/pms-credentials",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Booking PMS Production\",\"scopes\":[\"inventory.write\",\"rates.write\",\"reservations.read\",\"reservations.acknowledge\"],\"expires_at\":\"2027-08-04T00:00:00Z\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"status\":\"Success\",\"status_code\":201,\"message\":\"PMS credential created\",\"data\":{\"credential\":{\"id\":1,\"name\":\"Booking PMS Production\",\"status\":\"active\"},\"api_key\":\"pms_xxxxx\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update, suspend, activate, or revoke a PMS credential",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "quis",
                                    "description": "The ID of the pms credential."
                                },
                                {
                                    "id": "credential",
                                    "key": "credential",
                                    "value": "1",
                                    "description": "Credential ID."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Booking PMS Suspended\",\"status\":\"suspended\",\"scopes\":[\"voluptatem\"],\"expires_at\":\"2027-08-04T00:00:00Z\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Revoke a PMS credential",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "inventore",
                                    "description": "The ID of the pms credential."
                                },
                                {
                                    "id": "credential",
                                    "key": "credential",
                                    "value": "1",
                                    "description": "Credential ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Rotate a PMS credential",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{credential_id}}\/rotate",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/pms-credentials\/{{credential_id}}\/rotate",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                },
                                {
                                    "id": "credential",
                                    "key": "credential",
                                    "value": "1",
                                    "description": "Credential ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"eum\",\"scopes\":[\"illo\"],\"expires_at\":\"eveniet\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"status\":\"Success\",\"status_code\":201,\"message\":\"PMS credential rotated\",\"data\":{\"credential\":{\"id\":2,\"status\":\"active\"},\"api_key\":\"pms_xxxxx\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Price Parity",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1.0\/properties\/{property_code}\/price-parity\/rules",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "molestiae",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "20"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a price parity rule",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/rules",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "culpa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Public OTA parity\",\"baseline_source\":\"direct\",\"channel\":\"booking.com\",\"room_type_id\":10,\"rate_code\":\"BAR\",\"currency_code\":\"NGN\",\"tolerance_amount\":0,\"tolerance_percent\":0,\"require_same_package\":true,\"require_same_cancellation\":true,\"include_taxes\":true,\"include_fees\":true,\"active\":true,\"priority\":100,\"metadata\":[]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Ingest normalized channel offers and evaluate parity",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/offers",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/offers",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "in",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"source\":\"booking.com\",\"external_reference\":\"scan-20250916-001\",\"captured_at\":\"2025-09-16T10:00:00Z\",\"offers\":[[]]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Price Parity Operators",
            "description": "",
            "item": [
                {
                    "name": "List property operators who receive queued parity alerts.",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "21"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"status\":\"Error\",\"status_code\":401,\"message\":\"Unauthorized access please login\",\"data\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a property-scoped parity alert operator.",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "recusandae",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Revenue Manager\",\"email\":\"revenue@example.com\",\"active\":true,\"alert_types\":[\"warning\",\"critical\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a property-scoped parity alert operator.",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ipsam",
                                    "description": "The ID of the operator."
                                },
                                {
                                    "id": "operator",
                                    "key": "operator",
                                    "value": "12",
                                    "description": "Operator identifier."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Night Manager\",\"email\":\"night@example.com\",\"active\":true,\"alert_types\":[\"critical\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove a property-scoped parity alert operator.",
                    "request": {
                        "url": {
                            "host": "{{base_url}}",
                            "path": "api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators\/{{id}}",
                            "query": [],
                            "raw": "{{base_url}}\/api\/v1.0\/properties\/{{property_code}}\/price-parity\/operators\/{{id}}",
                            "variable": [
                                {
                                    "id": "property_code",
                                    "key": "property_code",
                                    "value": "CLHS",
                                    "description": "Property code."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "hic",
                                    "description": "The ID of the operator."
                                },
                                {
                                    "id": "operator",
                                    "key": "operator",
                                    "value": "12",
                                    "description": "Operator identifier."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}
