[2025-09-18 04:29:43] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/full_test?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"text/html; charset=UTF-8","body":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Document</title>\n  \n  <style>\n    body {\n      background: #d5d2d2 !important;\n      font-family: Arial, sans-serif;\n    }\n    #rooms_list.disabled {\n      pointer-events: none;\n    }\n  </style>\n\n  <!-- You MUST include jQuery 3.4+ before Fomantic -->\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>\n  <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.css\">\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.js\"></script>\n\n  <script src=\"https://pfau-software.de/json-viewer/dist/iife/index.js\"></script>\n  <script>\n    function setActiveMenuItem() {\n      const path = window.location.hash;\n      const menuItems = document.querySelectorAll('.ui.menu .item');\n      menuItems.forEach(item => {\n        if (item.getAttribute('href') === path) {\n          item.classList.add('active');\n        } else {\n          item.classList.remove('active');\n        }\n      });\n    }\n\n    function createInput(id, name, placeholder,type,value) {\n      const input = document.createElement(\"input\");\n      input.id = id;\n      input.name = name;\n      input.placeholder = placeholder;\n      input.className = \"ui input\";\n      input.type = type;\n      input.value = value;\n      return input;\n    }\n\n    function createFormField(id, name, placeholder,type,value,label_text) {\n      const field = document.createElement(\"div\");\n      field.className = \"field\";\n      const label = document.createElement(\"label\");\n      label.htmlFor = id;\n      label.textContent = label_text ?? placeholder;\n      field.appendChild(label);\n      field.appendChild(createInput(id, name, placeholder,type,value));\n      return field;\n    }\n\n    function pings(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/ping?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function hotelSearch(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/HotelSearch?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&checkIn=2023-10-01&checkOut=2023-10-02&cityCode=NYC')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function GetHotelDescriptiveInfo(event, hotelCode = 198335) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch(`/Omnibees/GetHotelDescriptiveInfo?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${hotelCode}`)\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          let resort_data = data.HotelDescriptiveContentsType.HotelDescriptiveContents[0];\n          let policies = ``;\n          resort_data.Policies.ChildTerms.forEach(policy => {\n            policies += `<p>${policy.Name} - ${policy.MinAge} to ${policy.MaxAge}</p>`;\n          });\n\n          let amenities = ``;\n          resort_data.HotelInfo.HotelAmenities.forEach(amenity => {\n            amenities += `<li>${amenity.HotelAmenity}</li>`;\n          });\n          \n          let hotel_card = `\n          <div class=\"ui card\">\n            <div class=\"content\">\n              <a class=\"header\">${resort_data.HotelRef.HotelName}</a>\n              <div class=\"meta\">\n                <span class=\"date\">\n                 Checkin Time: ${resort_data.HotelInfo.CheckInHours.Start} - Checkout Time: ${resort_data.HotelInfo.CheckInHours.End}\n                </span>\n              </div>\n              <div class=\"description\">\n                ${resort_data.HotelInfo.Descriptions.DescriptiveText}\n              </div>\n            </div>\n            <div class=\"extra content\">\n              Age Policies:\n              ${policies}\n              <br/>\n              Amenities:\n              <ul>${amenities}</ul>\n            </div>\n          </div>\n          `;\n\n          document.getElementById(\"viewArea\").innerHTML = \"\";\n          document.getElementById(\"viewArea\").innerHTML = hotel_card;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ResortSelector(Container,resorts){\n      let hotel_selector = createDropdown(\"hotel_selector\", \"hotel_selector\", resorts);\n\n      let resort_selector = document.createElement(\"div\");\n      resort_selector.className = \"field\";\n\n      let resort_label = document.createElement(\"label\");\n      resort_label.textContent = \"Select a hotel\";\n      resort_label.htmlFor = \"hotel_selector\";\n\n      resort_selector.appendChild(resort_label);\n      resort_selector.appendChild(hotel_selector);\n\n      Container.appendChild(resort_selector);\n\n      let rates_selector = document.createElement(\"div\");\n      rates_selector.className = \"field\";\n      let rates_label = document.createElement(\"label\");\n      rates_label.textContent = \"Select a rate plan\";\n      rates_label.htmlFor = \"rates_selector\";\n\n      rates_selector.appendChild(rates_label);\n      let rates_selector_input = document.createElement(\"select\");\n      rates_selector_input.id = \"rates_selector\";\n      rates_selector_input.name = \"rates_selector\";\n      rates_selector_input.className = \"ui loading disabled dropdown\";\n      rates_selector.appendChild(rates_selector_input);\n      Container.appendChild(rates_selector);\n\n      // Initialize the dropdown\n      $(hotel_selector).dropdown(\n        { \n          placeholder: 'Select a hotel', \n          onChange: function(value) {\n            \n            GetHotelRatePlans(event, value, function(data){\n              // Clear previous options\n              rates_selector_input.innerHTML = '';\n              \n              // Populate the rates selector with new options\n              data.RatePlans.RatePlan\t.forEach(rate => {\n                let option = document.createElement(\"option\");\n                option.value = rate.RatePlanID;\n                option.textContent = rate.RatePlanName;\n                rates_selector_input.appendChild(option);\n              });\n\n              // Reinitialize the dropdown\n              $(rates_selector_input).dropdown();\n              $(rates_selector_input).parent().removeClass(\"disabled loading\");\n            }\n          );\n      } });\n    }\n    \n    function createRatesSelector(rates,selector){\n\n    }\n\n    function Calendars(Container){\n      let cin = createDateField(\"checkIn\", \"checkIn\", \"2025-10-01\");\n      let cinContainer = document.createElement(\"div\");\n      cinContainer.className = \"field\";\n      \n      let cinLabel = document.createElement(\"label\");\n      cinLabel.textContent = \"Check In\";\n      cinLabel.htmlFor = \"checkIn\";\n      cinContainer.appendChild(cinLabel);\n      cinContainer.appendChild(cin);\n\n\n      let cout = createDateField(\"checkOut\", \"checkOut\", \"2025-10-02\");\n      let coutContainer = document.createElement(\"div\");\n      coutContainer.className = \"field\";\n\n      let coutLabel = document.createElement(\"label\");\n      coutLabel.textContent = \"Check Out\";\n      coutLabel.htmlFor = \"checkOut\";\n      coutContainer.appendChild(coutLabel);\n      coutContainer.appendChild(cout);\n\n\n      Container.appendChild(cinContainer);\n      Container.appendChild(coutContainer);\n\n      $(cin).calendar({\n        type: 'date',\n        endCalendar: $(\"#checkOut\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n      $(cout).calendar({\n        type: 'date',\n        startCalendar: $(\"#checkIn\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n\n    }\n\n    function PaxSelector(Container){\n\n      let adults = document.createElement(\"input\");\n      adults.type = \"number\";\n      adults.name = \"adults\";\n      adults.id = \"adults\";\n      adults.value = 1;\n      adults.className = \"ui input\";\n      \n      let adultsLabel = document.createElement(\"label\");\n      adultsLabel.textContent = \"Adults\";\n      adultsLabel.htmlFor = \"adults\";\n      \n      let adultsDiv = document.createElement(\"div\");\n      adultsDiv.className = \"ui input\";\n      adultsDiv.appendChild(adults);\n\n      let adultsField = document.createElement(\"div\");\n      adultsField.className = \"field\";\n      adultsField.appendChild(adultsLabel);\n      adultsField.appendChild(adultsDiv);\n      Container.appendChild(adultsField);\n\n      let childs = document.createElement(\"input\");\n      childs.type = \"number\";\n      childs.name = \"childs\";\n      childs.id = \"childs\";\n      childs.value = 0;\n      childs.className = \"ui input\";\n      \n      let childsLabel = document.createElement(\"label\");\n      childsLabel.textContent = \"Childs\";\n      childsLabel.htmlFor = \"childs\";\n      \n      let childsDiv = document.createElement(\"div\");\n      childsDiv.className = \"ui input\";\n      childsDiv.appendChild(childs);\n\n      let childsField = document.createElement(\"div\");\n      childsField.className = \"field\";\n      childsField.appendChild(childsLabel);\n      childsField.appendChild(childsDiv);\n      Container.appendChild(childsField);\n\n      let childs_ages = document.createElement(\"input\");\n      childs_ages.type = \"text\";\n      childs_ages.name = \"childs_ages\";\n      childs_ages.id = \"childs_ages\";\n      childs_ages.value = \"\";\n      childs_ages.className = \"ui input\";\n\n      let childs_agesLabel = document.createElement(\"label\");\n      childs_agesLabel.textContent = \"Childs Ages\";\n      childs_agesLabel.htmlFor = \"childs_age\";\n\n      let childsDiv_age = document.createElement(\"div\");\n      childsDiv_age.className = \"ui input\";\n      childsDiv_age.appendChild(childs_ages);\n\n      let childsField_age = document.createElement(\"div\");\n      childsField_age.className = \"field\";\n      childsField_age.appendChild(childs_agesLabel);\n      childsField_age.appendChild(childsDiv_age);\n      Container.appendChild(childsField_age);\n    }\n\n    function ShowReservationStartForm(event){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      \n      let Container = document.createElement(\"div\");\n      Container.className = \"ui form segment\";\n      viewArea.appendChild(Container);\n\n      let header = document.createElement(\"h3\");\n      header.textContent = \"Hotel Availability Calendar\";\n      header.className = \"ui header\";\n      Container.appendChild(header);\n      \n      let resorts = [\n        { value: 6220, text: \"Royal Solaris Los Cabos\" }\n      ];\n\n      let main_row = document.createElement(\"div\");\n      main_row.className = \"two fields\";\n      Container.appendChild(main_row);\n\n      ResortSelector(main_row, resorts);\n      \n\n\n      let second_row = document.createElement(\"div\");\n      second_row.className = \"fields\";\n      Container.appendChild(second_row);\n\n      Calendars(second_row);\n\n      let third_row = document.createElement(\"div\");\n      third_row.className = \"fields\";\n      Container.appendChild(third_row);\n      PaxSelector(second_row);\n\n      let fourth_row = document.createElement(\"div\");\n      fourth_row.className = \"fields\";\n      Container.appendChild(fourth_row);\n\n\n      let searchButton = document.createElement(\"button\");\n      searchButton.className = \"ui primary button\";\n      searchButton.textContent = \"Search Availability\";\n      searchButton.onclick = function() {\n        GetHotelAvail(event);\n      };\n\n      \n\n      let btnContainer = document.createElement(\"div\");\n      btnContainer.className = \"sixteen wide field\";\n      btnContainer.appendChild(searchButton);\n\n      let searchButton2 = document.createElement(\"button\");\n      searchButton2.className = \"ui orange button\";\n      searchButton2.textContent = \"second search\";\n      searchButton2.onclick = function() {\n        HotelAvailCalendar(event);\n      };\n      btnContainer.appendChild(searchButton2);\n\n      fourth_row.appendChild(btnContainer);\n\n\n      let rooms_segment = document.createElement(\"div\");\n      rooms_segment.className = \"ui segment\";\n\n      let rooms_list = document.createElement(\"div\");\n      rooms_list.className = \"ui list\";\n      rooms_list.id = \"rooms_list\";\n\n      let rooms_header = document.createElement(\"h4\");\n      rooms_header.textContent = \"Available Rooms\";\n      rooms_header.className = \"ui header\";\n      rooms_segment.appendChild(rooms_header);\n\n      rooms_segment.appendChild(rooms_list);\n\n      viewArea.appendChild(rooms_segment);\n\n      let warnings_area = document.createElement(\"div\");\n      warnings_area.className = \"ui list\";\n      warnings_area.id = \"warnings_area\";\n      viewArea.appendChild(warnings_area);\n\n      event.target.classList.add(\"active\");\n      setActiveMenuItem();\n    }\n\n\n    function showRooms(rooms,rates,reservation_details){\n\n      let rooms_list = document.getElementById(\"rooms_list\");\n      rooms_list.innerHTML = \"\"; // Clear previous rooms\n\n      if (!rooms || rooms.length === 0) {\n        let noRoomsMessage = document.createElement(\"div\");\n        noRoomsMessage.textContent = \"No rooms available for the selected dates.\";\n        noRoomsMessage.className = \"ui message\";\n        rooms_list.appendChild(noRoomsMessage);\n        return;\n      }\n      \n\n      rooms.forEach(room => {\n        let roomItem = document.createElement(\"div\");\n        roomItem.className = \"item\";\n\n        let roomContent = document.createElement(\"div\");\n        roomContent.className = \"content\";\n\n        let roomHeader = document.createElement(\"div\");\n        roomHeader.className = \"header\";\n        roomHeader.textContent = `${room.RoomID} - ${room.RoomName}`;\n\n        let roomDescription = document.createElement(\"div\");\n        roomDescription.className = \"description\";\n        roomDescription.textContent = `${room.RoomDescription.Description}`;\n\n        roomContent.appendChild(roomHeader);\n        roomContent.appendChild(roomDescription);\n        roomItem.appendChild(roomContent);\n\n        rooms_list.appendChild(roomItem);\n\n        let floatingDiv = document.createElement(\"div\");\n        floatingDiv.className = \"right floated content\";\n\n        let price = document.createElement(\"div\");\n        price.className = \"ui small header\";\n        price.setAttribute('data-idroom', room.RoomID);\n        floatingDiv.appendChild(price);\n\n        let bookButton = document.createElement(\"button\");\n        bookButton.className = \"ui orange button\";\n        bookButton.textContent = \"Book Now\";\n        bookButton.onclick = function() {\n          // Implement booking functionality here\n          //alert(`Booking for room: ${room.RoomID}`);\n          reservation_details.roomCode = room.RoomID;\n          startCheckout(reservation_details);\n        };\n        floatingDiv.appendChild(bookButton);\n        roomItem.appendChild(floatingDiv);\n      });\n\n    }\n\n    function HotelAvailCalendar(){\n       let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let adultsCount = document.getElementById(\"adults\").value;\n      let childsCount = document.getElementById(\"childs\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      const postData = {\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n        hotelCode: hotelCode,\n        checkIn: checkIn,\n        checkOut: checkOut,\n        ratesPlan: ratesPlan,\n        guests: {\n          adults: adultsCount,\n          children: childsCount\n        }\n      };\n\n      fetch(`/Omnibees/HotelAvailCalendar`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        \n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          \n        });\n    }\n\n    function GetHotelRatePlans(event,resort,action){\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      fetch(`/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${resort}`)\n        .then(response => response.json())\n        .then(data => {\n          if(typeof action === 'function') {\n            action(data);\n          } else {\n            jsonViewer.data = data;\n          }\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          if(typeof action !== 'function') {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          }\n        });\n    }\n\n    function GetHotelAvail(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\"; // Clear previous warnings\n\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n      let adults = document.getElementById(\"adults\").value;\n      let children = document.getElementById(\"childs\").value;\n      let children_ages = document.getElementById(\"childs_ages\").value;\n\n      fetch(`/Omnibees/GetHotelAvail`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify({\n          api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n          checkIn: checkIn,\n          checkOut: checkOut,\n          hotelCode: hotelCode,\n          ratesPlan: ratesPlan,\n          adults: adults,\n          children: children,\n          children_ages: children_ages\n        })\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n\n            let reservation_details = {\n              checkIn: checkIn,\n              checkOut: checkOut,\n              hotelCode: hotelCode,\n              ratesPlan: ratesPlan,\n              adults: adults,\n              children: children,\n              children_ages: children_ages\n            };\n\n            showRooms(data.RoomStaysType.RoomStays[0].RoomTypes,data.RoomStaysType.RoomStays[0].RoomRates,reservation_details);\n\n            data.RoomStaysType.RoomStays[0].RoomRates\t.forEach(roomRate => {\n\n              let tot = roomRate.Total.AmountAfterTax;\n              $(`[data-idroom=${roomRate.RoomID}]`).text(`$: ${tot} USD`);\n            });\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function createDateField(name,id, value) {\n      let dateField = document.createElement(\"input\");\n      dateField.type = \"text\";\n      dateField.name = name;\n      dateField.id = id + \"_field\";\n      dateField.value = value;\n\n      let div = document.createElement(\"div\");\n      div.className = \"ui input left icon\";\n      div.appendChild(dateField);\n\n      let icon = document.createElement(\"i\");\n      icon.className = \"calendar icon\";\n      div.appendChild(icon);\n\n      let Container = document.createElement(\"div\");\n      Container.className = \"ui calendar\";\n      Container.id = id;\n\n      Container.appendChild(div);\n\n      return Container;\n    }\n\n    function createDropdown(name, id, options) {\n      let select = document.createElement(\"select\");\n      select.name = name;\n      select.id = id;\n      select.className = \"ui dropdown\";\n      let defaultOption = document.createElement(\"option\");\n      defaultOption.value = \"\";\n      defaultOption.textContent = \"Select an option\";\n      select.appendChild(defaultOption);\n      options.forEach(option => {\n        let opt = document.createElement(\"option\");\n        opt.value = option.value;\n        opt.textContent = option.text;\n        select.appendChild(opt);\n      });\n\n      return select;\n    }\n\n    function localStart() {\n      $(\".generalRequest\").unbind().click(function(event) {\n        event.preventDefault();\n        const rute = $(this).data(\"rute\");\n        const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n        jsonViewerContainer.classList.add(\"loading\");\n        jsonViewerContainer.classList.add(\"disabled\");\n        postSecuence = false;\n        if($(this).data(\"postsecuence\"))\n          postSecuence = $(this).data(\"postsecuence\");\n        \n        let postData = {};\n\n        if ($(this).data(\"form\")) {\n          const form = document.getElementById($(this).data(\"form\"));\n          const formData = new FormData(form);\n          formData.forEach((value, key) => {\n            postData[key] = value;\n          });\n        }\n\n        fetch(`/Omnibees/${rute}?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n          .then(response => response.json())\n          .then(data => {\n            jsonViewer.data = data;\n            console.log(\"Data fetched:\", data);\n            console.log(\"Post secuence:\", postSecuence);\n            if(postSecuence){\n              console.log(\"Executing post secuence\" + postSecuence);\n              window[postSecuence](data);\n            }\n          })\n          .catch(error => console.error('Error:', error))\n          .finally(() => {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          });\n      });\n    }\n\n    function startCheckout(reservation_details){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Checkout\";\n      container.appendChild(title);\n\n      var form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"resortCode\", \"resortCode\", \"resortCode\", \"text\", reservation_details.hotelCode));\n      form.appendChild(createFormField(\"roomCode\", \"roomCode\", \"roomCode\", \"text\", reservation_details.roomCode));\n      form.appendChild(createFormField(\"RatePlanID\", \"RatePlanID\", \"RatePlanID\", \"text\", reservation_details.ratesPlan));\n      form.appendChild(createFormField(\"checkIn\", \"checkIn\", \"checkIn\", \"text\", reservation_details.checkIn));\n      form.appendChild(createFormField(\"checkOut\", \"checkOut\", \"checkOut\", \"text\", reservation_details.checkOut));\n      form.appendChild(createFormField(\"adults\", \"adults\", \"adults\", \"text\", reservation_details.adults));\n      form.appendChild(createFormField(\"children\", \"children\", \"children\", \"text\", reservation_details.children));\n      form.appendChild(createFormField(\"children_ages\", \"children_ages\", \"children_ages\", \"text\", reservation_details.children_ages));\n\n      let title_pax = document.createElement(\"h3\");\n      title_pax.textContent = \"Pax contact details\";\n      form.appendChild(title_pax);\n\n      let contactArea = document.createElement(\"div\");\n\n      for(let i=0; i < parseInt(reservation_details.adults); i++){\n        let paxForm = contactForPax(i+1);\n        contactArea.appendChild(paxForm);\n      }\n      form.appendChild(contactArea);\n\n      container.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(container);\n      document.getElementById(\"rooms_list\").classList.add(\"disabled\");\n\n      let SendHotelReservation = document.createElement(\"div\");\n      SendHotelReservation.className = \"ui teal button\";\n      SendHotelReservation.textContent = \"Send Hotel Reservation\";\n      SendHotelReservation.onclick = function() {\n        // Implement booking functionality here\n        //alert(`Sending reservation`);\n        SendHotelReservationFunction(form);\n      };\n      form.appendChild(SendHotelReservation);\n    }\n\n    function contactForPax(index){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Contact for Pax #\" + index;\n      container.appendChild(title);\n\n      let form = document.createElement(\"div\");\n      form.className = \"ui form\";\n\n      let first_name = document.createElement(\"input\");\n      first_name.type = \"text\";\n      first_name.name = \"first_name_\" + index;\n      first_name.placeholder = \"First Name\";\n      form.appendChild(first_name);\n\n      let last_name = document.createElement(\"input\");\n      last_name.type = \"text\";\n      last_name.name = \"last_name_\" + index;\n      last_name.placeholder = \"Last Name\";\n      form.appendChild(last_name);\n\n      let email = document.createElement(\"input\");\n      email.type = \"email\";\n      email.name = \"email_\" + index;\n      email.placeholder = \"Email\";\n      form.appendChild(email);\n\n      let phone = document.createElement(\"input\");\n      phone.type = \"tel\";\n      phone.name = \"phone_\" + index;\n      phone.placeholder = \"Phone\";\n      form.appendChild(phone);\n      container.appendChild(form);\n      return container\n    }\n\n\n    function SendHotelReservationFunction(form) {\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\";\n      let formData = new FormData(form);\n      let jsonData = {};\n\n      formData.forEach( (value, key) => {\n        jsonData[key] = value;\n      });\n\n      jsonData.api_key = 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du';\n\n      fetch(`/Omnibees/SendHotelResInitiate`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(jsonData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.HotelReservationsType !== null){\n              if(data.HotelReservationsType.HotelReservations.length >0){\n                var reservation_code = data.HotelReservationsType.HotelReservations[0].UniqueID.ID;\n                var transaction_id = data.TransactionIdentifier;\n                console.log('Reservation Code:', reservation_code);\n                console.log('Transaction ID:', transaction_id);\n                alert(`Reservation successful! Your reservation code is: ${reservation_code}`);\n                ShowCommitArea(reservation_code, transaction_id);\n              }\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          //event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ShowCommitArea(reservation_code, transaction_id) {\n      var commit_area = document.createElement(\"div\");\n      commit_area.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Commit Reservation\";\n      commit_area.appendChild(title);\n\n      let form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"reservationId\", \"reservationId\", \"Reservation ID\", \"text\", reservation_code));\n\n      form.appendChild(createFormField(\"transactionId\", \"transactionId\", \"Transaction ID\", \"text\", transaction_id));\n\n      var button = document.createElement(\"div\");\n      button.className = \"ui teal button\";\n      button.textContent = \"Commit Reservation\";\n      button.onclick = function() {\n        sendCommit(reservation_code, transaction_id);\n      };\n      form.appendChild(button);\n\n      commit_area.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(commit_area);\n    }\n\n    function sendCommit(reservationId, transactionId) {\n      var commitData = {\n        reservationId: reservationId,\n        transactionId: transactionId,\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du'\n      };\n\n      fetch(`/Omnibees/SendHotelResCommit`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(commitData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.ResResponseType == \"Commited\"){\n              alert(`Reservation committed successfully!`);\n            }else{\n              alert(`Reservation commit failed: ${data.ResResponseType}`);\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error));\n    }\n\n    function showReservationList(data){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n      viewArea.appendChild(container);\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Reservations List\";\n      container.appendChild(title);\n\n      let list = document.createElement(\"div\");\n      list.className = \"ui list\";\n      container.appendChild(list);\n\n      data.HotelReservationsType.HotelReservations.forEach(reservation => {\n        let item = document.createElement(\"div\");\n        item.className = \"item\";\n\n        let content = document.createElement(\"div\");\n        content.className = \"content\";\n\n        let header = document.createElement(\"div\");\n        header.className = \"header\";\n        header.textContent = `Reservation ID: ${reservation.UniqueID.ID} `;\n\n        let description = document.createElement(\"div\");\n        description.className = \"description\";\n        description.innerHTML = ``;\n        reservation.RoomStaysType.RoomStays.forEach(room => {\n          description.innerHTML += `<p>Room: ${room.IndexNumber} \n          - CheckIn: ${room.RoomRates.EffectiveDate} \n          - CheckOut: ${room.RoomRates.ExpireDate} \n          - Total: ${room.Total.AmountAfterTax}\n          </p>`;\n        });\n        content.appendChild(description);\n\n        content.appendChild(header);\n        item.appendChild(content);\n        list.appendChild(item);\n      });\n    }\n\n  </script>\n</head>\n<body onload=\"localStart()\">\n  <br>\n  <div class=\"ui container\">\n    <div class=\"ui grid\">\n      <div class=\"sixteen wide column\">\n        <div class=\"ui header\">\n          Omnibees API Test\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"six wide column\">\n          <div class=\"ui vertical fluid  menu\">\n            <a class=\"item\" href=\"#Omnibees/ping\" onClick=\"pings(event);\">Ping</a>\n\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCountry\" data-rute=\"GetCountry\">GetCountry</a>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetState\" data-rute=\"GetState\" data-form=\"getStateForm\">GetState</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getStateForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCity\" data-rute=\"GetCity\" data-form=\"getCityForm\">GetCity</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getCityForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_city\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_city\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_city\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_city\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetZones\" data-rute=\"GetZones\" data-form=\"getZonesForm\">GetZones</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getZonesForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_zone\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_zone\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_zone\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_zone\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code_zone\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code_zone\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"cities_data_uid_zone\">cities data uid</label>\n                    <input type=\"text\" id=\"cities_data_uid_zone\" name=\"cities_data_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <div class=\"ui divider\"></div>\n            <a class=\"item\" href=\"#Omnibees/HotelSearch\" onClick=\"hotelSearch(event)\">HotelSearch</a>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelDescriptiveInfo</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_198335\" class=\"item\" onClick=\"GetHotelDescriptiveInfo(event,6220)\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            \n            <a class=\"item\" href=\"#Omnibees/HotelAvailCalendar\" onClick=\"ShowReservationStartForm(event)\">Reservation Start</a>\n            <div class=\"item\">\n              <form action=\"\" id=\">HotelAvailCalendarForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelRatePlans</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_6220\" class=\"item\" onClick=\"GetHotelRatePlans(event,6220,'')\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            <a class=\"item\" href=\"#Omnibees/SendHotelRes\">SendHotelRes</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCommit\">SendHotelResCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModify\">SendHotelResModify</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModifyCommit\">SendHotelResModifyCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCancel\">SendHotelResCancel</a>\n            \n            <a class=\"item generalRequest\" href=\"#Omnibees/GetBookings\" data-rute=\"GetBookings\" data-form=\"getBookingsForm\" data-postSecuence=\"showReservationList\">GetBookings</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getBookingsForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            \n          </div>\n        </div>\n        <div class=\"ten wide column\" id=\"viewArea\">\n          \n        </div>\n      </div>\n      <div class=\"sixteen wide column\">\n        <div class=\"ui divider\"></div>\n        <div class=\"ui header\">\n           Logs\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"sixteen wide column\">\n          <div class=\"ui basic segment\" id=\"jsonViewerContainer\" style=\"padding:0;\">\n            <andypf-json-viewer id=\"jsonViewer\"></andypf-json-viewer>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n  <script>\n    const jsonViewer = document.getElementById(\"jsonViewer\");\n    jsonViewer.id = \"json\"\n    jsonViewer.expanded = 2\n    jsonViewer.indent = 2\n    jsonViewer.showDataTypes = true\n    jsonViewer.theme = \"monokai\"\n    jsonViewer.showToolbar = true\n    jsonViewer.showSize = true\n    jsonViewer.showCopy = true\n    jsonViewer.expandIconType = \"square\"\n    jsonViewer.data = { example: \"data\" }\n\n\n    \n  </script>\n</body>\n</html>"}} {"uid":"a5fd2f7"}
[2025-09-18 04:29:53] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9e1e4c7f-b8b1-38fa-7f2b-f9ab19087b4a","TimeStamp":"2025-09-18T11:29:53.346785Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":19269,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":19269,"ServiceDescription":{"Name":"All inclusive","Language":null,"Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"88c7ad8"}
[2025-09-18 05:50:59] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_1c58bea4-eb74-a878-df2b-eccba4c4f895","TimeStamp":"2025-09-18T12:50:59.1883035Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":19269,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":19269,"ServiceDescription":{"Name":"All inclusive","Language":null,"Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"86c0029"}
[2025-09-18 05:51:24] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_e1ff81d4-f830-bc2d-1edc-a6824c38aec4","TimeStamp":"2025-09-18T12:51:24.2115721Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":19269,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":19269,"ServiceDescription":{"Name":"All inclusive","Language":null,"Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"153a648"}
[2025-09-18 06:16:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_444bb6f5-03ba-be93-7903-f76c66c8b14b","TimeStamp":"2025-09-18T13:16:28.6725462Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19269,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":19269,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":19269,"ServiceDescription":{"Name":"All inclusive","Language":null,"Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"0509264"}
[2025-09-18 06:16:40] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-02-02","checkOut":"2026-02-07","hotelCode":"6220","ratesPlan":"560301","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_949d3789-d88a-e444-f613-5ade2805da40","TimeStamp":"2025-09-18T13:16:40.2105659Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-02-02T00:00:00","Duration":null,"End":"2026-02-07T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560301],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"aa25b0b"}
[2025-09-18 06:16:49] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-02-02","checkOut":"2026-02-07","hotelCode":"6220","ratesPlan":"560302","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_617c87a7-4236-e1ef-2468-7aac45b1c2a9","TimeStamp":"2025-09-18T13:16:49.5437283Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-02-02T00:00:00","Duration":null,"End":"2026-02-07T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"793b6e9"}
[2025-09-18 06:39:54] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"http://omnibees.clubsolaris.com/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"64804c0"}
[2025-09-18 08:26:04] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"http://omnibees.clubsolaris.com/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"7ae915c"}
[2025-09-18 08:26:04] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"http://omnibees.clubsolaris.com/wordpress/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"3fd93fc"}
[2025-09-18 08:28:34] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-02-02","checkOut":"2026-02-07","hotelCode":"6220","ratesPlan":"560301","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_24bfb38b-cfc7-8c44-b18a-f5037b94b78a","TimeStamp":"2025-09-18T15:28:34.1300828Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-02-02T00:00:00","Duration":null,"End":"2026-02-07T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560301],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"15d7688"}
[2025-09-18 08:29:35] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-02-02","checkOut":"2026-02-07","hotelCode":"6220","ratesPlan":"560302","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_ec076403-05dd-4362-f909-35bb50fc83bb","TimeStamp":"2025-09-18T15:29:35.4237403Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-02-02T00:00:00","Duration":null,"End":"2026-02-07T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"a3aa496"}
[2025-09-18 08:29:46] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-04","checkOut":"2025-11-08","hotelCode":"6220","ratesPlan":"560302","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_ee87ffc4-0fc6-39ab-9470-0d1973508c5a","TimeStamp":"2025-09-18T15:29:46.3295586Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"95fd735"}
[2025-09-18 08:29:51] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-04","checkOut":"2025-11-08","hotelCode":"6220","ratesPlan":"560301","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_f40d5c1f-ec67-8a88-6b38-9b07852c27b2","TimeStamp":"2025-09-18T15:29:51.718529Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":null,"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560301],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"769eb1e"}
[2025-09-18 08:29:56] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-04","checkOut":"2025-11-08","hotelCode":"6220","ratesPlan":"412005","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_41fc2a4e-3896-39ec-f3e6-e3421c12d7cf","TimeStamp":"2025-09-18T15:29:56.4122335Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39123,"RoomName":"Deluxe ocean view with jacuzzi","RoomDescription":{"Language":1,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":0,"MaxOccupancy":null,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":17,"MaxOccupancy":2},{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1046.40000000000009094947017729282379150390625,"AmountAfterTax":1046.40000000000009094947017729282379150390625,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1046.40000000000009094947017729282379150390625,"AmountAfterTax":1046.40000000000009094947017729282379150390625,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39123,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"c9e46bc"}
[2025-09-18 08:30:05] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-04","checkOut":"2025-11-08","hotelCode":"6220","ratesPlan":"549179","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_6045911e-7148-f898-6dee-7936414ab061","TimeStamp":"2025-09-18T15:30:05.1015145Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","AmountBeforeTax":804.9199999999999590727384202182292938232421875,"AmountAfterTax":804.9199999999999590727384202182292938232421875,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[549179],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39123,"RoomName":"Deluxe ocean view with jacuzzi","RoomDescription":{"Language":1,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":0,"MaxOccupancy":null,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":17,"MaxOccupancy":2},{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":549179,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":201.229999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":100.6200000000000045474735088646411895751953125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":201.229999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":100.6200000000000045474735088646411895751953125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":201.229999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":100.6200000000000045474735088646411895751953125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":201.229999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":100.6200000000000045474735088646411895751953125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":804.9199999999999590727384202182292938232421875,"AmountAfterTax":804.9199999999999590727384202182292938232421875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":804.9199999999999590727384202182292938232421875,"AmountAfterTax":804.9199999999999590727384202182292938232421875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":549179,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":213.469999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":106.7399999999999948840923025272786617279052734375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":213.469999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":106.7399999999999948840923025272786617279052734375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":213.469999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":106.7399999999999948840923025272786617279052734375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":213.469999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":106.7399999999999948840923025272786617279052734375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":853.8799999999999954525264911353588104248046875,"AmountAfterTax":853.8799999999999954525264911353588104248046875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":853.8799999999999954525264911353588104248046875,"AmountAfterTax":853.8799999999999954525264911353588104248046875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":549179,"RoomID":39123,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":237.460000000000007958078640513122081756591796875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":118.7300000000000039790393202565610408782958984375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":237.460000000000007958078640513122081756591796875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":118.7300000000000039790393202565610408782958984375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":237.460000000000007958078640513122081756591796875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":118.7300000000000039790393202565610408782958984375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":237.460000000000007958078640513122081756591796875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":118.7300000000000039790393202565610408782958984375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":949.8400000000000318323145620524883270263671875,"AmountAfterTax":949.8400000000000318323145620524883270263671875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":949.8400000000000318323145620524883270263671875,"AmountAfterTax":949.8400000000000318323145620524883270263671875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":804.9199999999999590727384202182292938232421875,"AmountAfterTax":804.9199999999999590727384202182292938232421875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"2ab6ee3"}
[2025-09-18 08:30:43] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":""}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9cead33c-c269-1647-5bb2-8f29bc85bd08","TimeStamp":"2025-09-18T15:30:43.297841Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":null,"ShortText":"Invalid hotel code: Hotel with code 0 returned no data. The reason can be invalid hotel id or no authorization to get data for this hotel","Code":392,"RPH":null,"Type":null}]},"ErrorsType":null,"RatePlans":null,"TPA_Extensions":null}}} {"uid":"7847ab9"}
[2025-09-18 08:30:45] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9755d552-8acc-8ae9-9ef0-6fd86cc0b48d","TimeStamp":"2025-09-18T15:30:44.9897699Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":null}}} {"uid":"c9e7e9b"}
[2025-09-18 08:31:20] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-04","checkOut":"2025-11-08","hotelCode":"6220","ratesPlan":"412005","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_8c1c4eaa-d348-be28-b49c-7f378d7e5542","TimeStamp":"2025-09-18T15:31:20.0036215Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00","AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-04T00:00:00","Duration":null,"End":"2025-11-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39123,"RoomName":"Deluxe ocean view with jacuzzi","RoomDescription":{"Language":1,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":0,"MaxOccupancy":null,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":17,"MaxOccupancy":2},{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1046.40000000000009094947017729282379150390625,"AmountAfterTax":1046.40000000000009094947017729282379150390625,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1046.40000000000009094947017729282379150390625,"AmountAfterTax":1046.40000000000009094947017729282379150390625,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39123,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":145.5,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":986.3999999999999772626324556767940521240234375,"AmountAfterTax":986.3999999999999772626324556767940521240234375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"03fee3f"}
[2025-09-18 08:32:23] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39123","RatePlanID":"412005","checkIn":"2025-11-04","checkOut":"2025-11-08","adults":"2","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"123123123123","first_name_2":"alex","last_name_2":"hernandez","email_2":"alex.hc0325@gmail.com","phone_2":"123123123123","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_7c4978c9-c535-b470-5ddd-467988c2ab0f","TimeStamp":"2025-09-18T15:32:22.324667Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:32:22.6618231Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019789-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39123,"RoomName":"Deluxe ocean view with jacuzzi","RoomDescription":{"Language":null,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-04T00:00:00","ExpireDate":"2025-11-08T00:00:00","RatePlanID":412005,"RoomID":39123,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":291,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice.","Language":null,"Description":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days : Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":[0,1]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019789-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"123123123123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null},{"ResGuestRPH":1,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"123123123123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":false,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1164,"AmountAfterTax":1164,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"PartnerReservation123"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"7c4978c9-c535-b470-5ddd-467988c2ab0f"}}} {"uid":"6776073"}
[2025-09-18 08:32:46] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019789-6220","transactionId":"7c4978c9-c535-b470-5ddd-467988c2ab0f","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_82564bc5-b2bb-0248-5b28-925afd4cdbe4","TimeStamp":"2025-09-18T15:32:46.3133999Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"7c4978c9-c535-b470-5ddd-467988c2ab0f"}}} {"uid":"d666ea8"}
[2025-09-18 08:33:54] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-17","checkOut":"2025-11-22","hotelCode":"6220","ratesPlan":"412005","adults":"2","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_d8733d73-26e0-e52e-f4be-76148275c605","TimeStamp":"2025-09-18T15:33:53.679Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","AmountBeforeTax":1233,"AmountAfterTax":1233,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":246.599999999999994315658113919198513031005859375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":123.2999999999999971578290569595992565155029296875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1233,"AmountAfterTax":1233,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1233,"AmountAfterTax":1233,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":261.6000000000000227373675443232059478759765625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":130.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":2,"MaxGuestApplicable":2,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1308,"AmountAfterTax":1308,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1308,"AmountAfterTax":1308,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":1233,"AmountAfterTax":1233,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"a5407ee"}
[2025-09-18 08:34:09] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9a3350f4-41f7-438a-5f49-d1f2bddd39a6","TimeStamp":"2025-09-18T15:34:09.091635Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":null}}} {"uid":"98a27e5"}
[2025-09-18 08:34:12] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-10-13","checkOut":"2025-10-17","hotelCode":"6220","ratesPlan":"412005","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":null,"PageNumber":null,"EchoToken":null,"TimeStamp":"2025-09-18T15:34:12.4447691Z","Target":0,"Version":0,"PrimaryLangID":1,"POS":null,"WarningsType":{"Warnings":[{"Language":1,"ShortText":"Authorization error: Invalid username, password and/or id.","Code":497,"RPH":null,"Type":null}]},"Success":null,"ErrorsType":null,"HotelStaysType":null,"Criteria":null,"RoomStaysType":null,"Services":null,"TPA_Extensions":null}}} {"uid":"3e2bf03"}
[2025-09-18 08:34:23] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-17","checkOut":"2025-11-22","hotelCode":"6220","ratesPlan":"412005","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_edfd3a05-472c-f0a3-31f7-9daee9549454","TimeStamp":"2025-09-18T15:34:23.3232507Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"b2cf8f0"}
[2025-09-18 08:35:00] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39121","RatePlanID":"412005","checkIn":"2025-11-17","checkOut":"2025-11-22","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"123123123123","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_34e0b5de-5a55-5ae3-4c21-e9987cc6d01a","TimeStamp":"2025-09-18T15:34:59.3051382Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:34:59.621903Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019779-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":null,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice.","Language":null,"Description":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days : Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019779-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"123123123123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"PartnerReservation123"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"34e0b5de-5a55-5ae3-4c21-e9987cc6d01a"}}} {"uid":"14ff357"}
[2025-09-18 08:35:06] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019779-6220","transactionId":"34e0b5de-5a55-5ae3-4c21-e9987cc6d01a","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_83a16c27-2249-21aa-d743-7acde5b6dbb7","TimeStamp":"2025-09-18T15:35:06.0077488Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"34e0b5de-5a55-5ae3-4c21-e9987cc6d01a"}}} {"uid":"69242ea"}
[2025-09-18 08:35:20] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-17","checkOut":"2025-11-22","hotelCode":"6220","ratesPlan":"412005","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_d771e407-9435-a6ec-08c0-3e9fcef513f5","TimeStamp":"2025-09-18T15:35:20.4248891Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00","AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-17T00:00:00","Duration":null,"End":"2025-11-22T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":108,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":184.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-17T00:00:00","ExpireDate":"2025-11-22T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":108,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":108,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":108,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-20T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":108,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-21T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":196.19999999999998863131622783839702606201171875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":108,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":981,"AmountAfterTax":981,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":924,"AmountAfterTax":924,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"e5186d6"}
[2025-09-18 08:35:29] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-23","checkOut":"2025-11-28","hotelCode":"","ratesPlan":"","adults":"1","children":"0","children_ages":""}},"response":{"status":400,"type":"application/json","body":{"message":"Resort ID is required","error_code":0}}} {"uid":"82b2f25"}
[2025-09-18 08:35:33] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_b131cd99-4880-de1b-00c9-6fc1d42c1548","TimeStamp":"2025-09-18T15:35:32.5361114Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":null}}} {"uid":"387958d"}
[2025-09-18 08:35:36] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-11-23","checkOut":"2025-11-28","hotelCode":"6220","ratesPlan":"412005","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_fcb5428e-eeea-e6ba-3263-d5151b943739","TimeStamp":"2025-09-18T15:35:35.9382827Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-11-23T00:00:00","Duration":null,"End":"2025-11-28T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-11-23T00:00:00","Duration":null,"End":"2025-11-28T00:00:00","AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-11-23T00:00:00","Duration":null,"End":"2025-11-28T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[412005],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-23T00:00:00","ExpireDate":"2025-11-28T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-23T00:00:00","ExpireDate":"2025-11-28T00:00:00","RatePlanID":412005,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":224.400000000000005684341886080801486968994140625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1122,"AmountAfterTax":1122,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1122,"AmountAfterTax":1122,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":1,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"9036c44"}
[2025-09-18 08:35:57] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"412005","checkIn":"2025-11-23","checkOut":"2025-11-28","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"123123123123","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_ce2d2369-75da-e624-2876-86fb85072d9f","TimeStamp":"2025-09-18T15:35:56.0612105Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:35:56.2684725Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019676-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-23T00:00:00","ExpireDate":"2025-11-28T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice.","Language":null,"Description":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days : Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019676-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"123123123123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"PartnerReservation123"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"ce2d2369-75da-e624-2876-86fb85072d9f"}}} {"uid":"9c4098a"}
[2025-09-18 08:36:10] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"412005","checkIn":"2025-11-23","checkOut":"2025-11-28","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"123123123123","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_affe57b9-377b-7ce8-8281-bb45c6784973","TimeStamp":"2025-09-18T15:36:09.4405516Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:36:09.7293762Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019808-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-11-23T00:00:00","ExpireDate":"2025-11-28T00:00:00","RatePlanID":412005,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-11-23T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-24T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-25T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-26T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-11-27T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":211.80000000000001136868377216160297393798828125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice.","Language":null,"Description":"CANCELLATION 2 NIGHTS PENALTY : Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days : Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019808-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"123123123123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1059,"AmountAfterTax":1059,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"PartnerReservation123"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"affe57b9-377b-7ce8-8281-bb45c6784973"}}} {"uid":"f612d6b"}
[2025-09-18 08:36:46] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019808-6220","transactionId":"affe57b9-377b-7ce8-8281-bb45c6784973","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_2de18908-7b8b-c92e-fd31-9e33f7f49556","TimeStamp":"2025-09-18T15:36:46.1125352Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"affe57b9-377b-7ce8-8281-bb45c6784973"}}} {"uid":"e3388cc"}
[2025-09-18 08:37:44] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_478c4ed3-bf63-ee8a-7458-715d87b910dc","TimeStamp":"2025-09-18T15:37:43.9482976Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":null}}} {"uid":"baf5562"}
[2025-09-18 08:37:48] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-01-04","checkOut":"2026-01-10","hotelCode":"6220","ratesPlan":"560302","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_cbaf539e-af36-1ed3-45d0-7c6b14b0a207","TimeStamp":"2025-09-18T15:37:48.6414104Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-10T00:00:00","AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-10T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":10,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":{"Percent":1},"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-04T00:00:00","ExpireDate":"2026-01-10T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"939f502"}
[2025-09-18 08:38:18] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560302","checkIn":"2026-01-04","checkOut":"2026-01-10","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"192783697812","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_619dfb68-571d-7892-f3fa-7f6a6ae06b5e","TimeStamp":"2025-09-18T15:38:17.2945336Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:38:17.5515214Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019818-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":{"Percent":1},"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-04T00:00:00","ExpireDate":"2026-01-10T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019818-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"192783697812","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"PartnerReservation123"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"619dfb68-571d-7892-f3fa-7f6a6ae06b5e"}}} {"uid":"e385f07"}
[2025-09-18 08:38:23] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019818-6220","transactionId":"619dfb68-571d-7892-f3fa-7f6a6ae06b5e","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_a51a6a04-fe3c-e7a6-a9a0-7b2e7f47b486","TimeStamp":"2025-09-18T15:38:22.7315958Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"619dfb68-571d-7892-f3fa-7f6a6ae06b5e"}}} {"uid":"bde39bd"}
[2025-09-18 08:38:43] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019818-6220","transactionId":"619dfb68-571d-7892-f3fa-7f6a6ae06b5e","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_323f89c7-00af-15ae-6fa5-98c43b034c60","TimeStamp":"2025-09-18T15:38:43.6093134Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":1,"ShortText":"Booking status invalid: OBWar_Invalid Reservation Transaction Status-549","Code":118,"RPH":null,"Type":null}]},"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"CreateDateTime":"0001-01-01T00:00:00","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":3,"PMS_ResStatusType":null},"POS":null,"UniqueID":{"ID":"RES019818-6220","Type":14,"Reason":null},"RoomStaysType":null,"ResGuestsType":null,"ResGlobalInfo":null,"Services":null}]},"ResResponseType":null,"RetransmissionIndicator":null,"TransactionIdentifier":null}}} {"uid":"fd62b17"}
[2025-09-18 08:39:07] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_2b93737e-5f1a-8094-89a5-c79b35b9749c","TimeStamp":"2025-09-18T15:39:06.9977459Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":null}}} {"uid":"76b3c2c"}
[2025-09-18 08:39:16] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-01-04","checkOut":"2026-01-10","hotelCode":"6220","ratesPlan":"560302","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_87ff9f38-5bdf-fd74-a709-d44e41cc0f8b","TimeStamp":"2025-09-18T15:39:16.0281865Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-10T00:00:00","AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-10T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":9,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":{"Percent":1},"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-04T00:00:00","ExpireDate":"2026-01-10T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":true,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"d792c53"}
[2025-09-18 08:40:55] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560302","checkIn":"2026-01-04","checkOut":"2026-01-10","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"7162536712","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_877e8f4b-ae2a-4b0c-0fcf-bd045e6f47e5","TimeStamp":"2025-09-18T15:40:54.6895365Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T15:40:54.9479994Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019734-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-04T00:00:00","ExpireDate":"2026-01-10T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-04T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-08T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-09T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019734-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"7162536712","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1416,"AmountAfterTax":1416,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"FLS87AKHJSBDHJAKS"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"877e8f4b-ae2a-4b0c-0fcf-bd045e6f47e5"}}} {"uid":"320fb6c"}
[2025-09-18 08:41:00] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019734-6220","transactionId":"877e8f4b-ae2a-4b0c-0fcf-bd045e6f47e5","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_1e11e1a9-a196-31bc-5bfa-d59dac8e8f9d","TimeStamp":"2025-09-18T15:41:00.3877871Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"877e8f4b-ae2a-4b0c-0fcf-bd045e6f47e5"}}} {"uid":"7cd838c"}
[2025-09-18 09:27:48] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"6306017"}
[2025-09-18 09:33:35] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"http://omnibees.clubsolaris.com/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"3b1f383"}
[2025-09-18 09:38:04] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/HotelAvailCalendar","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220","checkIn":"2026-01-04","checkOut":"2026-01-10","ratesPlan":"560302","guests":{"adults":"1","children":"0"}}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_b4517030-9be2-9df1-2400-7cb9033442e0","TimeStamp":"2025-09-18T16:38:04.6026428Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-07T00:00:00","Restrictions":[{"Time":2,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":null},"Price":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-07T00:00:00","AmountBeforeTax":845.3999999999999772626324556767940521240234375,"AmountAfterTax":845.3999999999999772626324556767940521240234375,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"StayDateRange":{"Start":"2026-01-04T00:00:00","Duration":null,"End":"2026-01-10T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":2,"ResGuestRPH":null},{"Age":12,"AgeQualifyCode":8,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"Location":null,"TPA_Extensions":{"AmountIncludingMarkup":null,"AmountNotIncludingMarkup":null,"AmountIsPackageRates":null,"IsForMobile":false,"OnlyPreferredHotels":false,"BestOnlyWithTaxes":null},"InfoSource":null,"Award":null}},"RoomStaysType":{"RoomStays":[{"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-04T00:00:00","ExpireDate":"2026-01-10T00:00:00","RatePlanID":549179,"RoomID":39120,"RatesType":{"Rates":[{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-04T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-05T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-06T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-07T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-08T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"ClosedOnArrival":null,"ClosedOnDeparture":null,"EffectiveDate":"2026-01-09T00:00:00","MinLOS":2,"MaxLOS":null,"Total":{"AmountBeforeTax":225,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"IsExclusiveMobile":false},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":131,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":null,"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":2,"Childs":1}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}]}],"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":8,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":null,"Offers":null,"PaymentPolicies":null,"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"Total":null,"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false}}}} {"uid":"1311be3"}
[2025-09-18 10:48:26] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetBookings?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","resort_uuid":"","start_date":"","end_date":""}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":0,"PageNumber":0,"MaxResponses":null,"EchoToken":"system_c70ea94b-e95b-5976-704b-4f61b1cd3a45","TimeStamp":"2025-09-18T17:48:26.7945689Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[]},"ResResponseType":null,"RetransmissionIndicator":null,"TransactionIdentifier":null}}} {"uid":"70cf35c"}
[2025-09-18 10:48:28] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_c249f229-06ab-c1cf-80fc-18b45e0292b0","TimeStamp":"2025-09-18T17:48:28.0810341Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"c9fbd6a"}
[2025-09-18 10:48:34] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/full_test?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"text/html; charset=UTF-8","body":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Document</title>\n  \n  <style>\n    body {\n      background: #d5d2d2 !important;\n      font-family: Arial, sans-serif;\n    }\n    #rooms_list.disabled {\n      pointer-events: none;\n    }\n  </style>\n\n  <!-- You MUST include jQuery 3.4+ before Fomantic -->\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>\n  <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.css\">\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.js\"></script>\n\n  <script src=\"https://pfau-software.de/json-viewer/dist/iife/index.js\"></script>\n  <script>\n    function setActiveMenuItem() {\n      const path = window.location.hash;\n      const menuItems = document.querySelectorAll('.ui.menu .item');\n      menuItems.forEach(item => {\n        if (item.getAttribute('href') === path) {\n          item.classList.add('active');\n        } else {\n          item.classList.remove('active');\n        }\n      });\n    }\n\n    function createInput(id, name, placeholder,type,value) {\n      const input = document.createElement(\"input\");\n      input.id = id;\n      input.name = name;\n      input.placeholder = placeholder;\n      input.className = \"ui input\";\n      input.type = type;\n      input.value = value;\n      return input;\n    }\n\n    function createFormField(id, name, placeholder,type,value,label_text) {\n      const field = document.createElement(\"div\");\n      field.className = \"field\";\n      const label = document.createElement(\"label\");\n      label.htmlFor = id;\n      label.textContent = label_text ?? placeholder;\n      field.appendChild(label);\n      field.appendChild(createInput(id, name, placeholder,type,value));\n      return field;\n    }\n\n    function pings(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/ping?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function hotelSearch(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/HotelSearch?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&checkIn=2023-10-01&checkOut=2023-10-02&cityCode=NYC')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function GetHotelDescriptiveInfo(event, hotelCode = 198335) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch(`/Omnibees/GetHotelDescriptiveInfo?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${hotelCode}`)\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          let resort_data = data.HotelDescriptiveContentsType.HotelDescriptiveContents[0];\n          let policies = ``;\n          resort_data.Policies.ChildTerms.forEach(policy => {\n            policies += `<p>${policy.Name} - ${policy.MinAge} to ${policy.MaxAge}</p>`;\n          });\n\n          let amenities = ``;\n          resort_data.HotelInfo.HotelAmenities.forEach(amenity => {\n            amenities += `<li>${amenity.HotelAmenity}</li>`;\n          });\n          \n          let hotel_card = `\n          <div class=\"ui card\">\n            <div class=\"content\">\n              <a class=\"header\">${resort_data.HotelRef.HotelName}</a>\n              <div class=\"meta\">\n                <span class=\"date\">\n                 Checkin Time: ${resort_data.HotelInfo.CheckInHours.Start} - Checkout Time: ${resort_data.HotelInfo.CheckInHours.End}\n                </span>\n              </div>\n              <div class=\"description\">\n                ${resort_data.HotelInfo.Descriptions.DescriptiveText}\n              </div>\n            </div>\n            <div class=\"extra content\">\n              Age Policies:\n              ${policies}\n              <br/>\n              Amenities:\n              <ul>${amenities}</ul>\n            </div>\n          </div>\n          `;\n\n          document.getElementById(\"viewArea\").innerHTML = \"\";\n          document.getElementById(\"viewArea\").innerHTML = hotel_card;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ResortSelector(Container,resorts){\n      let hotel_selector = createDropdown(\"hotel_selector\", \"hotel_selector\", resorts);\n\n      let resort_selector = document.createElement(\"div\");\n      resort_selector.className = \"field\";\n\n      let resort_label = document.createElement(\"label\");\n      resort_label.textContent = \"Select a hotel\";\n      resort_label.htmlFor = \"hotel_selector\";\n\n      resort_selector.appendChild(resort_label);\n      resort_selector.appendChild(hotel_selector);\n\n      Container.appendChild(resort_selector);\n\n      let rates_selector = document.createElement(\"div\");\n      rates_selector.className = \"field\";\n      let rates_label = document.createElement(\"label\");\n      rates_label.textContent = \"Select a rate plan\";\n      rates_label.htmlFor = \"rates_selector\";\n\n      rates_selector.appendChild(rates_label);\n      let rates_selector_input = document.createElement(\"select\");\n      rates_selector_input.id = \"rates_selector\";\n      rates_selector_input.name = \"rates_selector\";\n      rates_selector_input.className = \"ui loading disabled dropdown\";\n      rates_selector.appendChild(rates_selector_input);\n      Container.appendChild(rates_selector);\n\n      // Initialize the dropdown\n      $(hotel_selector).dropdown(\n        { \n          placeholder: 'Select a hotel', \n          onChange: function(value) {\n            \n            GetHotelRatePlans(event, value, function(data){\n              // Clear previous options\n              rates_selector_input.innerHTML = '';\n              \n              // Populate the rates selector with new options\n              data.RatePlans.RatePlan\t.forEach(rate => {\n                let option = document.createElement(\"option\");\n                option.value = rate.RatePlanID;\n                option.textContent = rate.RatePlanName;\n                rates_selector_input.appendChild(option);\n              });\n\n              // Reinitialize the dropdown\n              $(rates_selector_input).dropdown();\n              $(rates_selector_input).parent().removeClass(\"disabled loading\");\n            }\n          );\n      } });\n    }\n    \n    function createRatesSelector(rates,selector){\n\n    }\n\n    function Calendars(Container){\n      let cin = createDateField(\"checkIn\", \"checkIn\", \"2025-10-01\");\n      let cinContainer = document.createElement(\"div\");\n      cinContainer.className = \"field\";\n      \n      let cinLabel = document.createElement(\"label\");\n      cinLabel.textContent = \"Check In\";\n      cinLabel.htmlFor = \"checkIn\";\n      cinContainer.appendChild(cinLabel);\n      cinContainer.appendChild(cin);\n\n\n      let cout = createDateField(\"checkOut\", \"checkOut\", \"2025-10-02\");\n      let coutContainer = document.createElement(\"div\");\n      coutContainer.className = \"field\";\n\n      let coutLabel = document.createElement(\"label\");\n      coutLabel.textContent = \"Check Out\";\n      coutLabel.htmlFor = \"checkOut\";\n      coutContainer.appendChild(coutLabel);\n      coutContainer.appendChild(cout);\n\n\n      Container.appendChild(cinContainer);\n      Container.appendChild(coutContainer);\n\n      $(cin).calendar({\n        type: 'date',\n        endCalendar: $(\"#checkOut\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n      $(cout).calendar({\n        type: 'date',\n        startCalendar: $(\"#checkIn\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n\n    }\n\n    function PaxSelector(Container){\n\n      let adults = document.createElement(\"input\");\n      adults.type = \"number\";\n      adults.name = \"adults\";\n      adults.id = \"adults\";\n      adults.value = 1;\n      adults.className = \"ui input\";\n      \n      let adultsLabel = document.createElement(\"label\");\n      adultsLabel.textContent = \"Adults\";\n      adultsLabel.htmlFor = \"adults\";\n      \n      let adultsDiv = document.createElement(\"div\");\n      adultsDiv.className = \"ui input\";\n      adultsDiv.appendChild(adults);\n\n      let adultsField = document.createElement(\"div\");\n      adultsField.className = \"field\";\n      adultsField.appendChild(adultsLabel);\n      adultsField.appendChild(adultsDiv);\n      Container.appendChild(adultsField);\n\n      let childs = document.createElement(\"input\");\n      childs.type = \"number\";\n      childs.name = \"childs\";\n      childs.id = \"childs\";\n      childs.value = 0;\n      childs.className = \"ui input\";\n      \n      let childsLabel = document.createElement(\"label\");\n      childsLabel.textContent = \"Childs\";\n      childsLabel.htmlFor = \"childs\";\n      \n      let childsDiv = document.createElement(\"div\");\n      childsDiv.className = \"ui input\";\n      childsDiv.appendChild(childs);\n\n      let childsField = document.createElement(\"div\");\n      childsField.className = \"field\";\n      childsField.appendChild(childsLabel);\n      childsField.appendChild(childsDiv);\n      Container.appendChild(childsField);\n\n      let childs_ages = document.createElement(\"input\");\n      childs_ages.type = \"text\";\n      childs_ages.name = \"childs_ages\";\n      childs_ages.id = \"childs_ages\";\n      childs_ages.value = \"\";\n      childs_ages.className = \"ui input\";\n\n      let childs_agesLabel = document.createElement(\"label\");\n      childs_agesLabel.textContent = \"Childs Ages\";\n      childs_agesLabel.htmlFor = \"childs_age\";\n\n      let childsDiv_age = document.createElement(\"div\");\n      childsDiv_age.className = \"ui input\";\n      childsDiv_age.appendChild(childs_ages);\n\n      let childsField_age = document.createElement(\"div\");\n      childsField_age.className = \"field\";\n      childsField_age.appendChild(childs_agesLabel);\n      childsField_age.appendChild(childsDiv_age);\n      Container.appendChild(childsField_age);\n    }\n\n    function ShowReservationStartForm(event){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      \n      let Container = document.createElement(\"div\");\n      Container.className = \"ui form segment\";\n      viewArea.appendChild(Container);\n\n      let header = document.createElement(\"h3\");\n      header.textContent = \"Hotel Availability Calendar\";\n      header.className = \"ui header\";\n      Container.appendChild(header);\n      \n      let resorts = [\n        { value: 6220, text: \"Royal Solaris Los Cabos\" }\n      ];\n\n      let main_row = document.createElement(\"div\");\n      main_row.className = \"two fields\";\n      Container.appendChild(main_row);\n\n      ResortSelector(main_row, resorts);\n      \n\n\n      let second_row = document.createElement(\"div\");\n      second_row.className = \"fields\";\n      Container.appendChild(second_row);\n\n      Calendars(second_row);\n\n      let third_row = document.createElement(\"div\");\n      third_row.className = \"fields\";\n      Container.appendChild(third_row);\n      PaxSelector(second_row);\n\n      let fourth_row = document.createElement(\"div\");\n      fourth_row.className = \"fields\";\n      Container.appendChild(fourth_row);\n\n\n      let searchButton = document.createElement(\"button\");\n      searchButton.className = \"ui primary button\";\n      searchButton.textContent = \"Search Availability\";\n      searchButton.onclick = function() {\n        GetHotelAvail(event);\n      };\n\n      \n\n      let btnContainer = document.createElement(\"div\");\n      btnContainer.className = \"sixteen wide field\";\n      btnContainer.appendChild(searchButton);\n\n      let searchButton2 = document.createElement(\"button\");\n      searchButton2.className = \"ui orange button\";\n      searchButton2.textContent = \"second search\";\n      searchButton2.onclick = function() {\n        HotelAvailCalendar(event);\n      };\n      btnContainer.appendChild(searchButton2);\n\n      fourth_row.appendChild(btnContainer);\n\n\n      let rooms_segment = document.createElement(\"div\");\n      rooms_segment.className = \"ui segment\";\n\n      let rooms_list = document.createElement(\"div\");\n      rooms_list.className = \"ui list\";\n      rooms_list.id = \"rooms_list\";\n\n      let rooms_header = document.createElement(\"h4\");\n      rooms_header.textContent = \"Available Rooms\";\n      rooms_header.className = \"ui header\";\n      rooms_segment.appendChild(rooms_header);\n\n      rooms_segment.appendChild(rooms_list);\n\n      viewArea.appendChild(rooms_segment);\n\n      let warnings_area = document.createElement(\"div\");\n      warnings_area.className = \"ui list\";\n      warnings_area.id = \"warnings_area\";\n      viewArea.appendChild(warnings_area);\n\n      event.target.classList.add(\"active\");\n      setActiveMenuItem();\n    }\n\n\n    function showRooms(rooms,rates,reservation_details){\n\n      let rooms_list = document.getElementById(\"rooms_list\");\n      rooms_list.innerHTML = \"\"; // Clear previous rooms\n\n      if (!rooms || rooms.length === 0) {\n        let noRoomsMessage = document.createElement(\"div\");\n        noRoomsMessage.textContent = \"No rooms available for the selected dates.\";\n        noRoomsMessage.className = \"ui message\";\n        rooms_list.appendChild(noRoomsMessage);\n        return;\n      }\n      \n\n      rooms.forEach(room => {\n        let roomItem = document.createElement(\"div\");\n        roomItem.className = \"item\";\n\n        let roomContent = document.createElement(\"div\");\n        roomContent.className = \"content\";\n\n        let roomHeader = document.createElement(\"div\");\n        roomHeader.className = \"header\";\n        roomHeader.textContent = `${room.RoomID} - ${room.RoomName}`;\n\n        let roomDescription = document.createElement(\"div\");\n        roomDescription.className = \"description\";\n        roomDescription.textContent = `${room.RoomDescription.Description}`;\n\n        roomContent.appendChild(roomHeader);\n        roomContent.appendChild(roomDescription);\n        roomItem.appendChild(roomContent);\n\n        rooms_list.appendChild(roomItem);\n\n        let floatingDiv = document.createElement(\"div\");\n        floatingDiv.className = \"right floated content\";\n\n        let price = document.createElement(\"div\");\n        price.className = \"ui small header\";\n        price.setAttribute('data-idroom', room.RoomID);\n        floatingDiv.appendChild(price);\n\n        let bookButton = document.createElement(\"button\");\n        bookButton.className = \"ui orange button\";\n        bookButton.textContent = \"Book Now\";\n        bookButton.onclick = function() {\n          // Implement booking functionality here\n          //alert(`Booking for room: ${room.RoomID}`);\n          reservation_details.roomCode = room.RoomID;\n          startCheckout(reservation_details);\n        };\n        floatingDiv.appendChild(bookButton);\n        roomItem.appendChild(floatingDiv);\n      });\n\n    }\n\n    function HotelAvailCalendar(){\n       let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let adultsCount = document.getElementById(\"adults\").value;\n      let childsCount = document.getElementById(\"childs\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      const postData = {\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n        hotelCode: hotelCode,\n        checkIn: checkIn,\n        checkOut: checkOut,\n        ratesPlan: ratesPlan,\n        guests: {\n          adults: adultsCount,\n          children: childsCount\n        }\n      };\n\n      fetch(`/Omnibees/HotelAvailCalendar`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        \n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          \n        });\n    }\n\n    function GetHotelRatePlans(event,resort,action){\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      fetch(`/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${resort}`)\n        .then(response => response.json())\n        .then(data => {\n          if(typeof action === 'function') {\n            action(data);\n          } else {\n            jsonViewer.data = data;\n          }\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          if(typeof action !== 'function') {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          }\n        });\n    }\n\n    function GetHotelAvail(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\"; // Clear previous warnings\n\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n      let adults = document.getElementById(\"adults\").value;\n      let children = document.getElementById(\"childs\").value;\n      let children_ages = document.getElementById(\"childs_ages\").value;\n\n      fetch(`/Omnibees/GetHotelAvail`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify({\n          api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n          checkIn: checkIn,\n          checkOut: checkOut,\n          hotelCode: hotelCode,\n          ratesPlan: ratesPlan,\n          adults: adults,\n          children: children,\n          children_ages: children_ages\n        })\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n\n            let reservation_details = {\n              checkIn: checkIn,\n              checkOut: checkOut,\n              hotelCode: hotelCode,\n              ratesPlan: ratesPlan,\n              adults: adults,\n              children: children,\n              children_ages: children_ages\n            };\n\n            showRooms(data.RoomStaysType.RoomStays[0].RoomTypes,data.RoomStaysType.RoomStays[0].RoomRates,reservation_details);\n\n            data.RoomStaysType.RoomStays[0].RoomRates\t.forEach(roomRate => {\n\n              let tot = roomRate.Total.AmountAfterTax;\n              $(`[data-idroom=${roomRate.RoomID}]`).text(`$: ${tot} USD`);\n            });\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function createDateField(name,id, value) {\n      let dateField = document.createElement(\"input\");\n      dateField.type = \"text\";\n      dateField.name = name;\n      dateField.id = id + \"_field\";\n      dateField.value = value;\n\n      let div = document.createElement(\"div\");\n      div.className = \"ui input left icon\";\n      div.appendChild(dateField);\n\n      let icon = document.createElement(\"i\");\n      icon.className = \"calendar icon\";\n      div.appendChild(icon);\n\n      let Container = document.createElement(\"div\");\n      Container.className = \"ui calendar\";\n      Container.id = id;\n\n      Container.appendChild(div);\n\n      return Container;\n    }\n\n    function createDropdown(name, id, options) {\n      let select = document.createElement(\"select\");\n      select.name = name;\n      select.id = id;\n      select.className = \"ui dropdown\";\n      let defaultOption = document.createElement(\"option\");\n      defaultOption.value = \"\";\n      defaultOption.textContent = \"Select an option\";\n      select.appendChild(defaultOption);\n      options.forEach(option => {\n        let opt = document.createElement(\"option\");\n        opt.value = option.value;\n        opt.textContent = option.text;\n        select.appendChild(opt);\n      });\n\n      return select;\n    }\n\n    function localStart() {\n      $(\".generalRequest\").unbind().click(function(event) {\n        event.preventDefault();\n        const rute = $(this).data(\"rute\");\n        const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n        jsonViewerContainer.classList.add(\"loading\");\n        jsonViewerContainer.classList.add(\"disabled\");\n        postSecuence = false;\n        if($(this).data(\"postsecuence\"))\n          postSecuence = $(this).data(\"postsecuence\");\n        \n        let postData = {};\n\n        if ($(this).data(\"form\")) {\n          const form = document.getElementById($(this).data(\"form\"));\n          const formData = new FormData(form);\n          formData.forEach((value, key) => {\n            postData[key] = value;\n          });\n        }\n\n        fetch(`/Omnibees/${rute}?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n          .then(response => response.json())\n          .then(data => {\n            jsonViewer.data = data;\n            console.log(\"Data fetched:\", data);\n            console.log(\"Post secuence:\", postSecuence);\n            if(postSecuence){\n              console.log(\"Executing post secuence\" + postSecuence);\n              window[postSecuence](data);\n            }\n          })\n          .catch(error => console.error('Error:', error))\n          .finally(() => {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          });\n      });\n    }\n\n    function startCheckout(reservation_details){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Checkout\";\n      container.appendChild(title);\n\n      var form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"resortCode\", \"resortCode\", \"resortCode\", \"text\", reservation_details.hotelCode));\n      form.appendChild(createFormField(\"roomCode\", \"roomCode\", \"roomCode\", \"text\", reservation_details.roomCode));\n      form.appendChild(createFormField(\"RatePlanID\", \"RatePlanID\", \"RatePlanID\", \"text\", reservation_details.ratesPlan));\n      form.appendChild(createFormField(\"checkIn\", \"checkIn\", \"checkIn\", \"text\", reservation_details.checkIn));\n      form.appendChild(createFormField(\"checkOut\", \"checkOut\", \"checkOut\", \"text\", reservation_details.checkOut));\n      form.appendChild(createFormField(\"adults\", \"adults\", \"adults\", \"text\", reservation_details.adults));\n      form.appendChild(createFormField(\"children\", \"children\", \"children\", \"text\", reservation_details.children));\n      form.appendChild(createFormField(\"children_ages\", \"children_ages\", \"children_ages\", \"text\", reservation_details.children_ages));\n\n      let title_pax = document.createElement(\"h3\");\n      title_pax.textContent = \"Pax contact details\";\n      form.appendChild(title_pax);\n\n      let contactArea = document.createElement(\"div\");\n\n      for(let i=0; i < parseInt(reservation_details.adults); i++){\n        let paxForm = contactForPax(i+1);\n        contactArea.appendChild(paxForm);\n      }\n      form.appendChild(contactArea);\n\n      container.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(container);\n      document.getElementById(\"rooms_list\").classList.add(\"disabled\");\n\n      let SendHotelReservation = document.createElement(\"div\");\n      SendHotelReservation.className = \"ui teal button\";\n      SendHotelReservation.textContent = \"Send Hotel Reservation\";\n      SendHotelReservation.onclick = function() {\n        // Implement booking functionality here\n        //alert(`Sending reservation`);\n        SendHotelReservationFunction(form);\n      };\n      form.appendChild(SendHotelReservation);\n    }\n\n    function contactForPax(index){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Contact for Pax #\" + index;\n      container.appendChild(title);\n\n      let form = document.createElement(\"div\");\n      form.className = \"ui form\";\n\n      let first_name = document.createElement(\"input\");\n      first_name.type = \"text\";\n      first_name.name = \"first_name_\" + index;\n      first_name.placeholder = \"First Name\";\n      form.appendChild(first_name);\n\n      let last_name = document.createElement(\"input\");\n      last_name.type = \"text\";\n      last_name.name = \"last_name_\" + index;\n      last_name.placeholder = \"Last Name\";\n      form.appendChild(last_name);\n\n      let email = document.createElement(\"input\");\n      email.type = \"email\";\n      email.name = \"email_\" + index;\n      email.placeholder = \"Email\";\n      form.appendChild(email);\n\n      let phone = document.createElement(\"input\");\n      phone.type = \"tel\";\n      phone.name = \"phone_\" + index;\n      phone.placeholder = \"Phone\";\n      form.appendChild(phone);\n      container.appendChild(form);\n      return container\n    }\n\n\n    function SendHotelReservationFunction(form) {\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\";\n      let formData = new FormData(form);\n      let jsonData = {};\n\n      formData.forEach( (value, key) => {\n        jsonData[key] = value;\n      });\n\n      jsonData.api_key = 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du';\n\n      fetch(`/Omnibees/SendHotelResInitiate`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(jsonData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.HotelReservationsType !== null){\n              if(data.HotelReservationsType.HotelReservations.length >0){\n                var reservation_code = data.HotelReservationsType.HotelReservations[0].UniqueID.ID;\n                var transaction_id = data.TransactionIdentifier;\n                console.log('Reservation Code:', reservation_code);\n                console.log('Transaction ID:', transaction_id);\n                alert(`Reservation successful! Your reservation code is: ${reservation_code}`);\n                ShowCommitArea(reservation_code, transaction_id);\n              }\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          //event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ShowCommitArea(reservation_code, transaction_id) {\n      var commit_area = document.createElement(\"div\");\n      commit_area.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Commit Reservation\";\n      commit_area.appendChild(title);\n\n      let form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"reservationId\", \"reservationId\", \"Reservation ID\", \"text\", reservation_code));\n\n      form.appendChild(createFormField(\"transactionId\", \"transactionId\", \"Transaction ID\", \"text\", transaction_id));\n\n      var button = document.createElement(\"div\");\n      button.className = \"ui teal button\";\n      button.textContent = \"Commit Reservation\";\n      button.onclick = function() {\n        sendCommit(reservation_code, transaction_id);\n      };\n      form.appendChild(button);\n\n      commit_area.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(commit_area);\n    }\n\n    function sendCommit(reservationId, transactionId) {\n      var commitData = {\n        reservationId: reservationId,\n        transactionId: transactionId,\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du'\n      };\n\n      fetch(`/Omnibees/SendHotelResCommit`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(commitData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.ResResponseType == \"Commited\"){\n              alert(`Reservation committed successfully!`);\n            }else{\n              alert(`Reservation commit failed: ${data.ResResponseType}`);\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error));\n    }\n\n    function showReservationList(data){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n      viewArea.appendChild(container);\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Reservations List\";\n      container.appendChild(title);\n\n      let list = document.createElement(\"div\");\n      list.className = \"ui list\";\n      container.appendChild(list);\n\n      data.HotelReservationsType.HotelReservations.forEach(reservation => {\n        let item = document.createElement(\"div\");\n        item.className = \"item\";\n\n        let content = document.createElement(\"div\");\n        content.className = \"content\";\n\n        let header = document.createElement(\"div\");\n        header.className = \"header\";\n        header.textContent = `Reservation ID: ${reservation.UniqueID.ID} `;\n\n        let description = document.createElement(\"div\");\n        description.className = \"description\";\n        description.innerHTML = ``;\n        reservation.RoomStaysType.RoomStays.forEach(room => {\n          description.innerHTML += `<p>Room: ${room.IndexNumber} \n          - CheckIn: ${room.RoomRates.EffectiveDate} \n          - CheckOut: ${room.RoomRates.ExpireDate} \n          - Total: ${room.Total.AmountAfterTax}\n          </p>`;\n        });\n        content.appendChild(description);\n\n        content.appendChild(header);\n        item.appendChild(content);\n        list.appendChild(item);\n      });\n    }\n\n  </script>\n</head>\n<body onload=\"localStart()\">\n  <br>\n  <div class=\"ui container\">\n    <div class=\"ui grid\">\n      <div class=\"sixteen wide column\">\n        <div class=\"ui header\">\n          Omnibees API Test\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"six wide column\">\n          <div class=\"ui vertical fluid  menu\">\n            <a class=\"item\" href=\"#Omnibees/ping\" onClick=\"pings(event);\">Ping</a>\n\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCountry\" data-rute=\"GetCountry\">GetCountry</a>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetState\" data-rute=\"GetState\" data-form=\"getStateForm\">GetState</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getStateForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCity\" data-rute=\"GetCity\" data-form=\"getCityForm\">GetCity</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getCityForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_city\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_city\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_city\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_city\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetZones\" data-rute=\"GetZones\" data-form=\"getZonesForm\">GetZones</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getZonesForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_zone\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_zone\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_zone\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_zone\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code_zone\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code_zone\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"cities_data_uid_zone\">cities data uid</label>\n                    <input type=\"text\" id=\"cities_data_uid_zone\" name=\"cities_data_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <div class=\"ui divider\"></div>\n            <a class=\"item\" href=\"#Omnibees/HotelSearch\" onClick=\"hotelSearch(event)\">HotelSearch</a>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelDescriptiveInfo</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_198335\" class=\"item\" onClick=\"GetHotelDescriptiveInfo(event,6220)\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            \n            <a class=\"item\" href=\"#Omnibees/HotelAvailCalendar\" onClick=\"ShowReservationStartForm(event)\">Reservation Start</a>\n            <div class=\"item\">\n              <form action=\"\" id=\">HotelAvailCalendarForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelRatePlans</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_6220\" class=\"item\" onClick=\"GetHotelRatePlans(event,6220,'')\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            <a class=\"item\" href=\"#Omnibees/SendHotelRes\">SendHotelRes</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCommit\">SendHotelResCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModify\">SendHotelResModify</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModifyCommit\">SendHotelResModifyCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCancel\">SendHotelResCancel</a>\n            \n            <a class=\"item generalRequest\" href=\"#Omnibees/GetBookings\" data-rute=\"GetBookings\" data-form=\"getBookingsForm\" data-postSecuence=\"showReservationList\">GetBookings</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getBookingsForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            \n          </div>\n        </div>\n        <div class=\"ten wide column\" id=\"viewArea\">\n          \n        </div>\n      </div>\n      <div class=\"sixteen wide column\">\n        <div class=\"ui divider\"></div>\n        <div class=\"ui header\">\n           Logs\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"sixteen wide column\">\n          <div class=\"ui basic segment\" id=\"jsonViewerContainer\" style=\"padding:0;\">\n            <andypf-json-viewer id=\"jsonViewer\"></andypf-json-viewer>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n  <script>\n    const jsonViewer = document.getElementById(\"jsonViewer\");\n    jsonViewer.id = \"json\"\n    jsonViewer.expanded = 2\n    jsonViewer.indent = 2\n    jsonViewer.showDataTypes = true\n    jsonViewer.theme = \"monokai\"\n    jsonViewer.showToolbar = true\n    jsonViewer.showSize = true\n    jsonViewer.showCopy = true\n    jsonViewer.expandIconType = \"square\"\n    jsonViewer.data = { example: \"data\" }\n\n\n    \n  </script>\n</body>\n</html>"}} {"uid":"3ce516d"}
[2025-09-18 10:48:43] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_e73f4a2e-bb1d-834d-a474-600f329153b5","TimeStamp":"2025-09-18T17:48:43.159667Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"a063954"}
[2025-09-18 10:48:50] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-12-14","checkOut":"2025-12-20","hotelCode":"6220","ratesPlan":"549179","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_1b8e0de4-313c-652e-4e2a-2a9b0c7d903c","TimeStamp":"2025-09-18T17:48:50.3976819Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","Restrictions":[{"Time":1,"RestrictionType":0,"TimeUnit":0}]},"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","AmountBeforeTax":822.5399999999999636202119290828704833984375,"AmountAfterTax":822.5399999999999636202119290828704833984375,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-20T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[549179],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39123,"RoomName":"Deluxe ocean view with jacuzzi","RoomDescription":{"Language":1,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":0,"MaxOccupancy":null,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":17,"MaxOccupancy":2},{"RoomID":39122,"RoomName":"Deluxe ocean view","RoomDescription":{"Language":1,"Description":"Amazing room has a sea facing view. This luxurious rooms features a king size bed or two double beds. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":73,"MaxOccupancy":4},{"RoomID":39121,"RoomName":"Deluce parcial ocean view","RoomDescription":{"Language":1,"Description":"Beautiful room with Partial Ocean view oversized balcony. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":109,"MaxOccupancy":4},{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":208,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":549179,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":137.090000000000003410605131648480892181396484375,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":208,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":822.5399999999999636202119290828704833984375,"AmountAfterTax":822.5399999999999636202119290828704833984375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":822.5399999999999636202119290828704833984375,"AmountAfterTax":822.5399999999999636202119290828704833984375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":549179,"RoomID":39121,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":144.919999999999987494447850622236728668212890625,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":109,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":869.51999999999998181010596454143524169921875,"AmountAfterTax":869.51999999999998181010596454143524169921875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":869.51999999999998181010596454143524169921875,"AmountAfterTax":869.51999999999998181010596454143524169921875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":549179,"RoomID":39122,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":153.729999999999989768184605054557323455810546875,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":73,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":922.3799999999999954525264911353588104248046875,"AmountAfterTax":922.3799999999999954525264911353588104248046875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":922.3799999999999954525264911353588104248046875,"AmountAfterTax":922.3799999999999954525264911353588104248046875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}},{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":549179,"RoomID":39123,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":1,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":161.56999999999999317878973670303821563720703125,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":17,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":969.4199999999999590727384202182292938232421875,"AmountAfterTax":969.4199999999999590727384202182292938232421875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":969.4199999999999590727384202182292938232421875,"AmountAfterTax":969.4199999999999590727384202182292938232421875,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":1,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":1,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}}],"Total":{"AmountBeforeTax":822.5399999999999636202119290828704833984375,"AmountAfterTax":822.5399999999999636202119290828704833984375,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":null,"TPA_Extensions":null}}} {"uid":"b1732ab"}
[2025-09-18 10:48:53] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-12-14","checkOut":"2025-12-20","hotelCode":"6220","ratesPlan":"560301","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_a0f56131-a65a-0092-7f6d-0e90b4750776","TimeStamp":"2025-09-18T17:48:53.0514583Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-20T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560301],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":10,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":560301,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[{"RPH":99128,"IsPerRoom":false}],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":[{"ServicePricingType":20,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":1,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":0,"SupplierCode":null}}],"TPA_Extensions":null}}} {"uid":"e9fe417"}
[2025-09-18 10:50:02] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560301","checkIn":"2025-12-14","checkOut":"2025-12-20","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"21312312","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_fae68251-29b8-6991-0135-437c3f6e8c61","TimeStamp":"2025-09-18T17:50:02.4406247Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":null,"WarningsType":null,"ErrorsType":{"Errors":[{"Language":1,"ShortText":"System error: Internal system error. Please contact technical support at integration.support@omnibees.com { echoToken = system_fae68251-29b8-6991-0135-437c3f6e8c61 }","Code":448}]},"POS":null,"HotelReservationsType":null,"ResResponseType":null,"RetransmissionIndicator":null,"TransactionIdentifier":null}}} {"uid":"27714d2"}
[2025-09-18 10:50:33] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560301","checkIn":"2025-12-14","checkOut":"2025-12-20","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"21312312","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_1ed4718e-a35d-1135-5af4-29dda5f86e5f","TimeStamp":"2025-09-18T17:50:32.05825Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T17:50:32.3235767Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019790-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-20T00:00:00","RatePlanID":560301,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-19T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019790-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"21312312","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":1044,"AmountAfterTax":1044,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"FLS87AKHJSBDHJAKS"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"1ed4718e-a35d-1135-5af4-29dda5f86e5f"}}} {"uid":"4f94e2a"}
[2025-09-18 10:51:18] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019790-6220","transactionId":"1ed4718e-a35d-1135-5af4-29dda5f86e5f","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_324988ce-8e3e-5eb2-c884-3921632a915e","TimeStamp":"2025-09-18T17:51:17.7675723Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"1ed4718e-a35d-1135-5af4-29dda5f86e5f"}}} {"uid":"fad4247"}
[2025-09-18 10:52:15] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9da7480a-ce7b-6ec7-eaab-68c633fa2cc3","TimeStamp":"2025-09-18T17:52:14.5381129Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"c69a4de"}
[2025-09-18 10:52:22] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-12-14","checkOut":"2025-12-18","hotelCode":"6220","ratesPlan":"560302","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_d6307c87-568c-8726-820c-0f042ded9aaa","TimeStamp":"2025-09-18T17:52:21.9913742Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-18T00:00:00","AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-12-14T00:00:00","Duration":null,"End":"2025-12-18T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":10,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-18T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[{"RPH":99128,"IsPerRoom":false}],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":[{"ServicePricingType":20,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":1,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":0,"SupplierCode":null}}],"TPA_Extensions":null}}} {"uid":"21b8598"}
[2025-09-18 10:52:45] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560302","checkIn":"2025-12-14","checkOut":"2025-12-18","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"192873798123","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_5383a2ae-20ce-30a3-e614-0727a6eede25","TimeStamp":"2025-09-18T17:52:44.1785828Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T17:52:44.5308506Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019773-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-14T00:00:00","ExpireDate":"2025-12-18T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-14T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019773-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"192873798123","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"FLS87AKHJSBDHJAKS"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"5383a2ae-20ce-30a3-e614-0727a6eede25"}}} {"uid":"c689f4b"}
[2025-09-18 10:52:49] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019773-6220","transactionId":"5383a2ae-20ce-30a3-e614-0727a6eede25","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_79eae73d-5c9c-109e-0b6c-53ad5b5f9421","TimeStamp":"2025-09-18T17:52:49.110828Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"5383a2ae-20ce-30a3-e614-0727a6eede25"}}} {"uid":"5f0c5e7"}
[2025-09-18 10:54:24] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_2abb0877-77f8-57c2-e53d-9753a864018b","TimeStamp":"2025-09-18T17:54:24.1534116Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"f4e56a9"}
[2025-09-18 10:54:29] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2026-01-05","checkOut":"2026-01-08","hotelCode":"6220","ratesPlan":"560301","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_a823356d-c107-bb54-742b-99437b9d5a5c","TimeStamp":"2025-09-18T17:54:29.1653247Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2026-01-05T00:00:00","Duration":null,"End":"2026-01-08T00:00:00","AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2026-01-05T00:00:00","Duration":null,"End":"2026-01-08T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560301],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":10,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-05T00:00:00","ExpireDate":"2026-01-08T00:00:00","RatePlanID":560301,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[{"RPH":99128,"IsPerRoom":false}],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":[{"ServicePricingType":20,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":1,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":0,"SupplierCode":null}}],"TPA_Extensions":null}}} {"uid":"6e03b7b"}
[2025-09-18 10:54:52] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560301","checkIn":"2026-01-05","checkOut":"2026-01-08","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"1927863","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_7463df1b-f055-be5c-31a2-2246da7484b3","TimeStamp":"2025-09-18T17:54:51.2228941Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T17:54:51.4869577Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019780-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2026-01-05T00:00:00","ExpireDate":"2026-01-08T00:00:00","RatePlanID":560301,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2026-01-05T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-06T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2026-01-07T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":236,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019780-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"1927863","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":708,"AmountAfterTax":708,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"FLS87AKHJSBDHJAKS"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"7463df1b-f055-be5c-31a2-2246da7484b3"}}} {"uid":"9b1e9d8"}
[2025-09-18 10:54:57] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019780-6220","transactionId":"7463df1b-f055-be5c-31a2-2246da7484b3","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_d850ddee-b359-0422-68e0-191723b10b1d","TimeStamp":"2025-09-18T17:54:57.6693806Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"7463df1b-f055-be5c-31a2-2246da7484b3"}}} {"uid":"d60a639"}
[2025-09-18 10:56:01] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_ff4a47e9-c345-3b59-6e38-e16fb6da59d1","TimeStamp":"2025-09-18T17:56:00.6411492Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"137697a"}
[2025-09-18 10:56:08] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-12-15","checkOut":"2025-12-19","hotelCode":"6220","ratesPlan":"560302","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_d88f0e24-4aa9-c3b3-fbe0-0392b59063c0","TimeStamp":"2025-09-18T17:56:08.0542484Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-12-15T00:00:00","Duration":null,"End":"2025-12-19T00:00:00","AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-12-15T00:00:00","Duration":null,"End":"2025-12-19T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":9,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-15T00:00:00","ExpireDate":"2025-12-19T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":10,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[{"RPH":99128,"IsPerRoom":false}],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":[{"ServicePricingType":20,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":1,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":0,"SupplierCode":null}}],"TPA_Extensions":null}}} {"uid":"8fa69a1"}
[2025-09-18 10:56:31] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":{"resortCode":"6220","roomCode":"39120","RatePlanID":"560302","checkIn":"2025-12-15","checkOut":"2025-12-19","adults":"1","children":"0","children_ages":"","first_name_1":"alex","last_name_1":"hernandez","email_1":"alex.hc0325@gmail.com","phone_1":"8167253132","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_26bce373-c993-b465-f90e-b343a6477a64","TimeStamp":"2025-09-18T17:56:30.1504427Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":{"HotelReservations":[{"TPA_Extensions":{"SupplierCode":"C1420_44922","ExternalTpiId":null,"ExternalName":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","CostCenter":null,"GenerateVCN":null,"ReservationGroupCode":null},"CreateDateTime":"2025-09-18T17:56:30.4185831Z","LastModifyDateTime":"0001-01-01T00:00:00","ResStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"POS":{"Sources":[{"ISOCountry":"MEX"}]},"UniqueID":{"ID":"RES019735-6220","Type":14,"Reason":null},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":null,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":null,"NumberOfUnits":0,"MaxOccupancy":null}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":null},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":null,"Language":null,"Description":"Política general : Horario de entrada: 3 pm\nHorario de salida: 11 am\nEdad mínima para registro: 18 años\nMenores son bienvenidos:\n0 a 4 años: gratis\n5 a 12 años: costo adicional dependiendo de la temporada.\nClientes deben presentar una identificación oficial en el registro.\nA la llegada de los clientes se aplicará una Retención de tarjeta de crédito/débito al Check in de nuestros huéspedes.\nSolicitudes especiales son sujetas a disponibilidad hasta el día del registro y puede generar un cargo adicional.\nSolitudes especiales no pueden ser garantizadas.\nTodos los pagos realizados por American Express aplica 5% de penalidad en caso de cancelación o reembolso.\nSólo se permiten huéspedes registrados en las habitaciones.\n\nSe realizará un cargo de $38  pesos mexicanos (MXN) por noche por habitación al momento del check-in por concepto de derecho de saneamiento ambiental implementado por el gobierno local.\n\nNo se aceptaran reservaciones de mas de 09 habitaciones bajo mismo nombre o fechas ya que será considerado como grupo con otras condiciones que las reservaciones individuales."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":false,"TPA_Extensions":{"POS":null,"WLCode":null,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-15T00:00:00","ExpireDate":"2025-12-19T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":0,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":null,"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice.","Language":null,"Description":"POLITICS 14 DAYS : Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days : Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\"","Language":null,"Description":null},"GuaranteesAcceptedType":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":[0]}]},"BasicPropertyInfo":{"CurrencyCode":null,"Position":null,"Address":null,"ContactNumbersType":null,"Award":null,"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"VendorMessagesType":null,"ImageURL":null},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":"RES019735-6220/1","RoomStayStatus":{"TransactionActionType":null,"PMS_ResStatusType":5},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":null}],"MoreIndicator":false},"ResGuestsType":{"ResGuests":[{"ResGuestRPH":0,"AgeQualifyingCode":10,"Age":0,"Profiles":{"ProfileInfos":[{"UniqueID":null,"Profile":{"Customer":{"Gender":2,"BirthDate":null,"Email":"alex.hc0325@gmail.com","Telephones":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"8167253132","PhoneTechType":1,"Extension":null,"PhoneLocationType":null}],"PersonName":{"NamePrefix":0,"GivenName":"alex","MiddleName":null,"Surname":"Omn hernandez"},"Address":{"CountryCode":null,"StateProvCode":null,"CityCode":null,"AddressLine":"Rua 25","CityName":"","PostalCode":"8000 Faro","StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"Document":null}}}]},"PrimaryIndicator":true,"SpecialRequests":null}]},"ResGlobalInfo":{"TimeSpan":null,"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":null,"TPA_Extensions":null,"Taxes":null},"HotelReservationsIDsType":{"HotelReservationIDs":[{"ResID_Type":25,"ResID_Value":"FLS87AKHJSBDHJAKS"}]},"Guarantee":{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":null,"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":{"EffectiveDate":null,"ExpireDate":null,"CardCode":1,"CardHolderName":"Consumer","CardNumber":null,"SeriesCode":null,"IsVCN":false,"CurrencyCode":null,"Amount":null},"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":null},"CommentsType":{"Comments":[{"Name":null,"Language":null,"Description":"Reservation comments\r\n\tThis is the reservations commentsNotes for room\r\n\tSpecial requests\r\n\t\tThis is my room special request\r\n\tComments\r\n\t\tThis is my 0 room comment\r\n"}]}},"Services":null}]},"ResResponseType":"Pending","RetransmissionIndicator":null,"TransactionIdentifier":"26bce373-c993-b465-f90e-b343a6477a64"}}} {"uid":"b37384c"}
[2025-09-18 10:56:36] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":{"reservationId":"RES019735-6220","transactionId":"26bce373-c993-b465-f90e-b343a6477a64","api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"application/json","body":{"MoreIndicator":false,"TotalRecords":null,"PageNumber":null,"MaxResponses":null,"EchoToken":"system_06567262-1348-c3b5-674d-09f3e04f1c20","TimeStamp":"2025-09-18T17:56:36.0471609Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"POS":null,"HotelReservationsType":null,"ResResponseType":"Commited","RetransmissionIndicator":null,"TransactionIdentifier":"26bce373-c993-b465-f90e-b343a6477a64"}}} {"uid":"898af81"}
[2025-09-18 11:07:11] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","checkIn":"2025-12-15","checkOut":"2025-12-19","hotelCode":"6220","ratesPlan":"560302","adults":"1","children":"0","children_ages":""}},"response":{"status":200,"type":"application/json","body":{"MaxResponses":50,"PageNumber":null,"EchoToken":"system_d7bd97a0-fafa-8b64-53d3-39cc013b3e14","TimeStamp":"2025-09-18T18:07:11.1819504Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelStaysType":{"HotelStays":[{"Status":"Open","RoomStayRPH":0,"Availability":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Price":{"Start":"2025-12-15T00:00:00","Duration":null,"End":"2025-12-19T00:00:00","AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109},"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]},"Criteria":{"AvailableOnlyIndicator":null,"Criterion":{"Position":null,"Address":null,"HotelRefs":[{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null}],"Radius":null,"HotelAmenity":null,"RoomAmenity":null,"Award":null,"ProfilesType":null,"RateRanges":null,"StayDateRange":{"Start":"2025-12-15T00:00:00","Duration":null,"End":"2025-12-19T00:00:00"},"RoomStayCandidatesType":{"RoomStayCandidates":[{"GuestCountsType":{"GuestCounts":[{"Age":null,"AgeQualifyCode":10,"Count":1,"ResGuestRPH":null}]},"RoomID":null,"Quantity":1,"RPH":0,"BookingCode":null}]},"RatePlanCandidatesType":null,"Location":null,"GetPricesPerGuest":true,"TPA_Extensions":{"AmountIncludingMarkup":true,"AmountNotIncludingMarkup":true,"AmountIsPackageRates":true,"MultimediaObjects":{"SendData":false},"IsForMobile":false,"OnlyPreferredHotels":null,"BestOnlyWithTaxes":null,"RatePlanIds":[560302],"RoomTypeIds":null,"MealPlanId":null,"RateRoomIds":null,"WLCode":null},"InfoSource":null,"GetPricesPerDay":null}},"RoomStaysType":{"RoomStays":[{"RPH":0,"RoomTypes":[{"RoomID":39120,"RoomName":"Deluxe room","RoomDescription":{"Language":1,"Description":"Comfortable room with one king bed or 2 double beds, oversized balcony with garden o city view. Room size: 42 m2 / 452 ft2."},"AmenitiesType":null,"Occupancies":[{"MinOccupancy":1,"MaxOccupancy":4,"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null},{"MinOccupancy":1,"MaxOccupancy":2,"AgeQualifyingCode":8,"MinAge":null,"MaxAge":null}],"NumberOfUnits":8,"MaxOccupancy":4}],"RatePlans":[{"EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":null,"CancelPenalties":null,"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":21},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":1,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":1,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":{"Percent":0},"Package":null}}],"RoomRates":[{"RoomStayCandidateRPH":0,"EffectiveDate":"2025-12-15T00:00:00","ExpireDate":"2025-12-19T00:00:00","RatePlanID":560302,"RoomID":39120,"RatesType":{"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-15T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":8,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-16T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":8,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-17T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":8,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null},{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":19,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":[{"EffectiveDate":"2025-12-18T00:00:00","MinLOS":null,"MaxLOS":null,"Total":{"AmountBeforeTax":174,"AmountAfterTax":0,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":7,"TPA_Extensions":null,"Taxes":null},"AgeQualifyingCode":10,"MinAge":null,"MaxAge":null,"MinGuestApplicable":1,"MaxGuestApplicable":1,"Status":null,"NumberOfUnits":null,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}],"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AgeQualifyingCode":null,"MinAge":null,"MaxAge":null,"MinGuestApplicable":null,"MaxGuestApplicable":null,"Status":null,"NumberOfUnits":9,"MinAdvancedBookingOffset":null,"StayThrough":null,"Duration":null,"FPLOS":null}]},"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":[{"AgeQualifyingCode":10,"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":18,"TPA_Extensions":null,"Taxes":null}}],"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null},"Taxes":null},"AdvanceBookingRestriction":null,"ServiceRPHs":[{"RPH":99128,"IsPerRoom":false}],"Discount":null,"PromotionCode":null,"GroupCode":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"OccupationFor":{"Adults":1,"Childs":0}},"Availability":[{"AvailabilityStatus":"AvailableForSale","WarningRPH":null}],"CancelPenalty":{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":1,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},"Guarantee":{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":1,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}}],"Total":{"AmountBeforeTax":696,"AmountAfterTax":696,"CurrencyCode":109,"AmountIncludingMarkup":false,"AmountIsPackage":false,"ChargeType":12,"TPA_Extensions":null,"Taxes":null},"GuestCountsType":null,"BasicPropertyInfo":{"CurrencyCode":109,"Position":{"Latitude":"23.045984","Longitude":"-109.696123"},"Address":{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Rtno. Punta Palmillas 33, Campo de Golf Fonatur, 23405 San José del Cabo, B.C.S., México","CityName":null,"PostalCode":null,"StateProv":null,"CountryName":null,"ZoneCode":null,"ZoneName":null},"ContactNumbersType":null,"Award":{"Rating":5,"Name":null},"HotelAmenities":null,"Policy":null,"HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"VendorMessagesType":null,"ImageURL":"https://media.omnibees.com/Images/6220/Property/223147.jpg"},"Reference":null,"CommentsType":null,"SpecialRequestsType":null,"IndexNumber":null,"RoomStayStatus":null,"TPA_Extensions":{"ApprovalInvoiced":null,"Services":null,"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null,"SupplierCode":"C1420_44922"},"Guarantees":null,"RoomStayCandidateRPH":null,"AvailabilityStatus":null,"WarningRPH":null,"RoomStayLanguage":1}],"MoreIndicator":false},"Services":[{"ServicePricingType":20,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":1,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":0,"SupplierCode":null}}],"TPA_Extensions":null}}} {"uid":"bcf1d09"}
[2025-09-18 11:07:28] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":""}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_7106dadf-c775-29b1-2f7a-cfede481f04a","TimeStamp":"2025-09-18T18:07:28.5565145Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":null,"ShortText":"Invalid hotel code: Hotel with code 0 returned no data. The reason can be invalid hotel id or no authorization to get data for this hotel","Code":392,"RPH":null,"Type":null}]},"ErrorsType":null,"RatePlans":null,"TPA_Extensions":null}}} {"uid":"9094ce1"}
[2025-09-18 11:07:31] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_313859ab-0644-ac48-9db5-032cad39b142","TimeStamp":"2025-09-18T18:07:30.9705629Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Net Hotel Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412005,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"B2B USCAN USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-08-21T00:00:00","Duration":null,"End":"2025-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-21T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":549179,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137952,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137965,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests and referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full payment for the reservation must be made 14 days prior to arrival.\n\nImportant: If payment is not made on the established days or before the guest's arrival, the reservation may be canceled with prior notice, and the guest will be charged the Rack (high) rate upon check-in.\n\nFor credit card payments, please consider the following:\nPayment with VISA or Mastercard has a bank fee of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank fee of 4.49% of the total, which must be absorbed by the agency.\nThe bank transfer fee is not the hotel's responsibility.\n\"If you request an invoice, please inform us at the time of booking and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499},{"Start":"2025-09-17T00:00:00","Duration":null,"End":"2025-09-30T00:00:00","GuaranteeDescription":{"Name":"Prepaid Virtual Card","Language":null,"Description":"Prepayment: full payment of the reservation must be paid 3 days before arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":24405},{"Start":"2025-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","GuaranteeDescription":{"Name":"Deposit Policy / Guarantee 7 days","Language":null,"Description":"Prepayment: Full payment for the reservation must be made 7 days before arrival.\n\nImportant: If payment for the reservation is not made on the established days or before the client's arrival, the reservation may be cancelled with prior notice and the client will be charged the Rack rate at check in.\n\nFor payment by credit card please consider the following:\nPayment with VISA or Mastercard has a bank commission of 2.73% of the total, which must be absorbed by the agency.\nPayment with American Express has a bank commission of 4.49% of the total, which must be absorbed by the agency.\n\n\"If you request an invoice, please inform us at the time of making the reservation and send the corresponding information. Once the guest has checked in, an invoice cannot be issued.\""},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9715},{"Start":"2025-10-01T00:00:00","Duration":null,"End":"2025-10-31T00:00:00","GuaranteeDescription":{"Name":"Invoiced Payment (Voucher)","Language":null,"Description":"Voucher is accepted as a payment method invoiced"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":18,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45504},{"Start":"2025-11-01T00:00:00","Duration":null,"End":"2025-11-30T00:00:00","GuaranteeDescription":{"Name":"Direct payment at the hotel","Language":null,"Description":"Huésped paga directo a su llegada en el hotel"},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":null,"AmountPercent":null,"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest and Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Round trip transportation","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":150,"AmountAfterTax":150,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"0b6c797"}
[2025-09-18 16:09:01] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.save","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"7dfba2d"}
[2025-09-18 16:09:15] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.prod","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"3c032a2"}
[2025-09-18 16:09:18] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/phpinfo","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"ce282c9"}
[2025-09-18 16:09:19] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/php_info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"b5a58f7"}
[2025-09-18 16:09:25] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/_profiler/phpinfo","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"c4ebc6b"}
[2025-09-18 16:09:26] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.example","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"8e7d68d"}
[2025-09-18 16:09:27] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/info","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"462ef78"}
[2025-09-18 16:09:28] slim-app.INFO: Petition {"incoming":{"Method":"POST","api":null,"Route":"https://omnibees.clubsolaris.com/","Data":{"0x":["akia_checker"]}},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"0a0a1fe"}
