Skip to content

Full catalog of accommodation packages

With this method we request the complete information about the packages (activity + accommodation) available for a specific accommodation. It includes information about the rates of the different rooms available for the accommodation.

Access method

POST /Package/FullCatalog

Request structure

  • People: (list) Required. List of people included in the package. The order in which people are added to this list later determines the index to use in the Room property.

    • Person: (object) Required. Person information.

      • Type: (int) Required. Person type.

        Possible values
        • 0: Baby
        • 1: Child
        • 2: Adult
        • 3: Senior
        • 4: Generic
      • Age: (int) Optional. Person age. Required only if the person is a child or a baby (types 1 and 2).

  • Activity: (object) Required. Activity information.

    • FromDate: (date) Required. Activity start date. ISO 8601 format (yyyy-MM-dd).
    • ToDate: (date) Required. Activity end date. ISO 8601 format (yyyy-MM-dd).
    • PrePackageIds: (list) Required. List of activity prepackage identifiers.
      • (string): Required. Prepackage identifier.
  • Accommodation: (object) Required. Accommodation information.

    • AccommodationId: (string) Required. Accommodation identifier.
    • CheckIn: (date) Required. Accommodation check-in date. ISO 8601 format (yyyy-MM-dd).
    • CheckOut: (date) Required. Accommodation check-out date. ISO 8601 format (yyyy-MM-dd).
    • RoomDistribution: (list) Required. List of rooms that will make up the package.
      • Room: (list) Required. Information about the people who make up this room.
        • (int): Required. Index corresponding to the position of the person in the People list.

Request example

Example: 2 rooms: \"1 adult + 1 child\" and \"1 adult\"
{
    "People": [
        {
            "Type": 2
        },
        {
            "Type": 2
        },
        {
            "Type": 1,
            "Age": 5
        },
        {
            "Type": 2
        }
    ],
    "Activity": {
        "FromDate": "2023-01-25",
        "ToDate": "2023-01-26",
        "PrePackageIds": [
            "1fu1tmxgjrzyh"
        ]
    },
    "Accommodation": {
        "AccommodationId": "291641/weqn6yqht5bfw",
        "CheckIn": "2023-01-25",
        "CheckOut": "2023-01-28",
        "RoomDistribution": [
            [
                0,
                1,
                2
            ],
            [
                3
            ]
        ]
    }
}

Response structure

  • Echotoken: (string). Token needed for subsequent requests: request prices, add items to the cart, etc.
  • Activities: (object). Property that contains the definition of the activities catalog. All activities available for the requested prepackage are listed here.
  • Accommodation: (object). Information about the package accommodation indicated in the request.

    • Id: (string). Accommodation identifier.
    • Name: (string). Accommodation name.
    • Description: (string). Accommodation description.
    • Address: (string). Accommodation address.
    • City: (string). Accommodation city.
    • Type: (int). Accommodation type.

      Possible values
      • 0: Unclassified
      • 1: Hotel
      • 2: Hostel
      • 3: Campsite
      • 4: Apartment
    • Category: (int). Category type.

      Possible values
      • 0: Unknown.
      • 1: 1 Star.
      • 2: 2 Stars.
      • 3: 3 Stars.
      • 4: 4 Stars.
      • 5: 5 Stars.
    • CategoryName: (string). Category name.

    • TypeName: (string). Accommodation type name.
    • Location: (object). Exact accommodation location.
      • Latitude: (decimal). Geolocation latitude.
      • Longitude: (decimal). Geolocation longitude.
    • Distances: (list). List of distances to the different package activities.
      • Distance: (object). Information about the distance to the package activity.
        • ActivityProviderId: (string). Activity provider identifier. See ProviderId in the activities catalog.
        • Distance: (decimal). Distance between the accommodation and the activity in meters.
    • AccommodationServices: (list). List of services available in the accommodation.
    • AccommodationService: (object). Information about the service available in the accommodation. - Name: (string). Service name. - IsFree: (string). Indicates whether it is included in the price.
    • AccommodationImages: (list). List of accommodation images.
      • Description: (string). Image description.
      • Order: (int). Display order.
      • Url: (string). Image URL address.
    • AccommodationRooms: (list). List with the different accommodation rooms.
      • AccommodationRoom: (object). Accommodation room information.

        • RoomRequestNumber: (string). Identifier of the requested distribution according to the room.

          Example
          • If 3 rooms for 2 adults each are requested.

            In this case, the identifiers defined between 1 and 3 will appear, but the rooms can be selected as desired. Examples:

            • 3 of type RoomRequestNumber = 1
            • 2 of type RoomRequestNumber = 1 and 1 of type RoomRequestNumber = 3
            • 1 of type RoomRequestNumber = 1, another of type RoomRequestNumber = 2 and another of type RoomRequestNumber = 3
          • If 3 rooms are requested, one for 2 adults, another for 2 children and another for 1 child and 1 adult.

            It will be necessary to select one of type RoomRequestNumber = 1, one RoomRequestNumber = 2 and another RoomRequestNumber = 3.

        • TypeName: (string). Room type name.

        • AccommodationRoomRates: (list). Array list with the rates of the accommodation rooms.
          • AccommodationRoomRate: (list). Information about the accommodation room rate.

            • Id: (string). Room identifier.
            • BoardCode: (int) board type code.

              Possible values
              • 10: Room only.
              • 20: Bed and breakfast.
              • 30: Half board.
              • 40: Full board.
              • 50: All inclusive.
            • BoardName: (string). Board type name.

            • Adults: (int). Number of adults.
            • Children: (int). Number of children.
            • RateClass: (int). Rate type.

              Possible values
              • 1: Non-refundable
              • 2: Refundable.
  • Flags: (list). List with additional information.

    • IncludesTickets: (boolean). Indicates whether tickets are included.
    • Promoted: (boolean). Indicates whether it is promoted.
  • PrePackages: (list). List of available prepackages. This value matches the prepackages requested in the call (PrePackageIds).
    • Id: (string). Prepackage identifier.
    • Name: (string). Prepackage name.
  • ActivityPackages: (list). List of package activities.
    • ActivityPackage: (object). Package activity information.
      • Id: (string). Activity package identifier.
      • Activities: (list). List of activities included in the package.
        • Activities: (object). Information about the activity included in the package.
          • ActivityId: (string). Activity identifier.
          • Quantity: (int). Quantity included.
  • Packages: (list) List of packages. This list is the union between the requested prepackages, the accommodation, and the activities.

    • Package: (list) Package information.
      • Id: (string). Package identifier.
      • PrePackageId: (string). Prepackage identifier.
      • AccommodationRateId: (string). Accommodation rate identifier.
      • AccommodationId: (string). Accommodation identifier.
      • ActivityPackageId: (string). Activity package identifier.
      • Price: (decimal). Package price.
      • CancellationPolicy: (object). Cancellation policies.
        • IsRefundable: (boolean). Indicates whether the package is refundable at any point.
        • Rules: (list). Rules that define the cancellation policies.
          • Rule: (object). Rule that defines this cancellation policy.
            • HoursInAdvanceOfAccess: (int). Hours in advance with respect to the access date to which this rule applies.
            • Percentage: (decimal). Penalty percentage with respect to the price.
  • Success: (boolean). Value that indicates whether the call was processed correctly or not.

  • Errors: (list). Array of errors.
    • Error: (object).
      • ErrorMessage: (string). Error message explaining why the request was not successful. If it was correct, it will return null.
      • ErrorCode: (int). Code that identifies the error.
  • ErrorEntityBreakDown (list): list that contains objects with the name and ID in case of error.
    • Id (string): identifier
    • Name (string): related name of the identifier.

Response example

Example
{
    "EchoToken": "ufydewqxxidxctaeg1fmya3azr",
    "Activities": {
        "Providers": [
            {
                "ProviderId": "44kwqs3opjcb1",
                "ProviderName": "La Molina",
                "ProviderDescription": "<p>La Molina es la estación decana de los deportes de invierno en España con el primer remonte comercial en 1943. En su historia recoge deporte y diversión para todos los públicos. La mayoría de su extensión está situada en la Cerdanya, tiene 61 km esquiables repartidos en 54 pistas para todos los niveles, un snowpark de grandes dimensiones y el super pipe más grande de los Pirineos.</p><p>Es una estación puntera con un espíritu deportivo y moderno que conjuga con su vertiente familiar y actividades para todas las edades. Kilómetros de pistas para todos los niveles, buena nieve y servicios de calidad. Y si quieres mas La Molina + Masella, dos estaciones un gran dominio esquiable.</p>",
                "ProviderCommercialConditions": "RECUERDA que puedes solicitar CAMBIOS y CANCELACIONES hasta 3 días antes de tu visita, sin incluir el día de la visita. Deberás solicitarlo antes de las 12h(AM).",
                "ExchangeVoucherPoint": "Oficinas situadas debajo del telecabina Alp2500",
                "AdvancedDateSelectorMethodName": "None",
                "IsForGroups": false,
                "IsForGiftCard": false,
                "IsForSeasonTickets": false,
                "RequiresReservation": true,
                "LimitOfNumberOfPeopleToBeGroup": 19,
                "Logo": "https://pre-tixalia.api.experticket.com/api/provider/logo?PartnerId=45cf6xmn1p6e4&Id=44kwqs3opjcb1",
                "PromotionalImages": [
                    {
                        "IsMainImage": true,
                        "Url": "https://pre-tixalia.api.experticket.com/api/provider/promotionalimage?PartnerId=45cf6xmn1p6e4&Id=rq8xabnwi7npn"
                    }
                ],
                "Tags": [
                    "q44os41h6b4sy",
                    "w4rkutdcs9qka",
                    "urfw4bh33qyty",
                    "hjscr9s4qeafc",
                    "nyzp8jpfgmf7r",
                    "wokchoiawwfkh",
                    "wg9qq3amgw37c",
                    "64xr3oqzpak44",
                    "s4x33fp9dd9hy",
                    "5rhijtzos9cge",
                    "kyu6ejde1x5m4",
                    "15dupafepdqre",
                    "o9nragwa4cd9y"
                ],
                "Location": {
                    "CountryCode": "es",
                    "City": "La Molina",
                    "Address": "Alp",
                    "ZipCode": "17537",
                    "Lat": 42.3446912,
                    "Lng": 1.95669780000003
                },
                "CancellationPolicy": {
                    "IsRefundable": true,
                    "Rules": [
                        {
                            "HoursInAdvanceOfAccess": 72.000000000000,
                            "Percentage": 100.000000000000
                        }
                    ]
                },
                "TicketEnclosures": [
                    {
                        "TicketEnclosureId": "mt31qpees4xsk",
                        "TicketEnclosureName": "La Molina + Masella",
                        "Logo": "https://pre-tixalia.api.experticket.com/api/ticketenclosure/logo?PartnerId=45cf6xmn1p6e4&Id=mt31qpees4xsk",
                        "TypeOfPersonDefinitionTypeChild": 1,
                        "TypeOfPersonDefinitionValueChild": 7.000000000000,
                        "TypeOfPersonDefinitionTypeAdult": 1,
                        "TypeOfPersonDefinitionValueAdult": 12.000000000000
                    },
                    {
                        "TicketEnclosureId": "p9r9155zhpe44",
                        "TicketEnclosureName": "La Molina",
                        "Logo": "https://pre-tixalia.api.experticket.com/api/ticketenclosure/logo?PartnerId=45cf6xmn1p6e4&Id=p9r9155zhpe44",
                        "TypeOfPersonDefinitionTypeChild": 1,
                        "TypeOfPersonDefinitionValueChild": 7.000000000000,
                        "TypeOfPersonDefinitionTypeAdult": 1,
                        "TypeOfPersonDefinitionValueAdult": 12.000000000000,
                        "TypeOfPersonDefinitionTypeSenior": 1,
                        "TypeOfPersonDefinitionValueSenior": 65.000000000000
                    }
                ],
                "ProductBases": [
                    {
                        "ProductBaseId": "moxcwcy3ntfpg",
                        "ProductBaseName": "Productos para empaquetar Forfait + Alquiler Material Snow",
                        "ProductBaseDescription": "Tarifa exclusiva para empaquetar con alojamiento, transporte, actividades u otros servicios.",
                        "Products": [
                            {
                                "ProductId": "yt1pgb1k61wdc",
                                "ProductName": "Forfait Adulto + Alquiler snow 2 días ",
                                "ProductDescription": "<p>Forfait para persona a partir de 12 años y material de snow. Válido para 2 días consecutivos. Incluye: tabla + botas. No incluye casco. No incluye seguro. El 25 de diciembre y el último día de la temporada horario especial.Alquiler de material, tarifa especial reservando con alojamiento.</p><p>Soporte para forfait PiriNeu365 recargable no incluido. 2€ de pago al retirar el forfait en taquilla.</p><p>Menores (0 a 6 años) y Veterano II (+75 años): Compra directa en taquillas.<br></p>",
                                "HoursInAdvanceOfPurchase": 72,
                                "DaysWithLimitedCapacity": "",
                                "MinimumNumberByTransaction": 1,
                                "NumberOfPeople": 1,
                                "NumberOfAdults": 1,
                                "NumberOfChildren": 0,
                                "NumberOfSenior": 0,
                                "NumberOfBabies": 0,
                                "NumberOfGeneric": 0,
                                "RequiresRealTimePrice": false,
                                "Tickets": [
                                    {
                                        "TicketId": "na19qnrm8zh3e",
                                        "TicketName": "Forfait + Alquiler snow La Molina Adulto",
                                        "TicketConditions": "",
                                        "TicketEnclosureId": "p9r9155zhpe44",
                                        "TypeOfPerson": {
                                            "Type": 3,
                                            "PersonNumber": 1
                                        },
                                        "IsQuotaTicket": true
                                    }
                                ],
                                "ValidDays": 2,
                                "ValidDaysType": 0,
                                "AccessDateCriteria": 0,
                                "BarcodeAssignment": 0,
                                "ProductPaxGroupingId": "mx3osekefh43g",
                                "SalesDocumentSettings": {
                                    "Disable": false,
                                    "ShowPrice": false,
                                    "AccessDateCriteriaOpenDateSalesDocument": 0
                                },
                                "PriceMode": 1,
                                "Release": 3,
                                "HasSaleFlowRule": false,
                                "IsForPackaging": true
                            }
                        ],
                        "ProductPaxGroupings": [
                            {
                                "ProductPaxGroupingId": "mx3osekefh43g",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 2 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            },
                            {
                                "ProductPaxGroupingId": "hh414t6zhjwm4",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 3 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            },
                            {
                                "ProductPaxGroupingId": "h4qduypnanicr",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 4 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            },
                            {
                                "ProductPaxGroupingId": "4gazafx5sjcph",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 5 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            },
                            {
                                "ProductPaxGroupingId": "7dqae9jimjq1q",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 6 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            },
                            {
                                "ProductPaxGroupingId": "h96fnsdhsunur",
                                "ProductPaxGroupingName": "Forfait la Molina + Alquiler snow 7 días ",
                                "Dates": "2023-01-25,2023-01-26"
                            }
                        ]
                    }
                ],
                "DemandAccessDate": true,
                "TaxType": 0,
                "PurchaseFlowType": 2,
                "Type": 0
            }
        ],
        "Success": true,
        "Timestamp": "2023-01-10T12:18:51.1201261"
    },
    "Accommodation": {
        "Id": "291641/weqn6yqht5bfw",
        "Name": "Chalets de l'Isard - Vacanceole",
        "Description": "Esta sencilla residencia se encuentra en Les Angles. Ubicada a 300 metros del centro del pueblo, la propiedad brinda un fácil acceso a todo lo que este destino tiene para ofrecer. El establecimiento está a 10 metros de las pistas. El alojamiento se encuentra a 13. 0 km de las principales conexiones con el transporte público. Chalets de l'Isard - Vacanceole tiene un total de 81 dormitorios disponibles para sus huéspedes. Asimismo, el alojamiento cuenta con Wi-Fi gratuito. Chalets de l'Isard - Vacanceole no ofrece servicio de recepción 24 horas. Desafortunadamente, no hay habitaciones en las que las personas que se hospeden en este alojamiento puedan pedir una cuna para los más pequeños. Las zonas comunes de la propiedad están adaptadas a personas con discapacidad. El establecimiento también dispone de una habitación accesible. Este establecimiento es ecológicamente sostenible. Los huéspedes de este establecimiento podrán aprovechar sus múltiples servicios de salud y bienestar. La residencia puede cobrar el importe de algunos de estos servicios. ",
        "Address": "Route du Pla del Mir",
        "City": "Les Angles",
        "Type": 0,
        "Category": 0,
        "CategoryName": "Unassigned",
        "TypeName": "Unassigned",
        "Location": {
            "Longitude": 2.070518970489502,
            "Latitude": 42.568477630615234
        },
        "Distances": [
            {
                "ActivityProviderId": "44kwqs3opjcb1",
                "Distance": 26601.1617431278
            }
        ],
        "AccommodationImages": [
            {
                "Description": "Vista general",
                "Order": 0,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_a_004.jpg"
            },
            {
                "Description": "Vestíbulo",
                "Order": 1,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_l_001.JPG"
            },
            {
                "Description": "Habitación",
                "Order": 2,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_w_001.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 3,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_001.jpg"
            },
            {
                "Description": "Piscina",
                "Order": 4,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_001.jpg"
            },
            {
                "Description": "Vestíbulo",
                "Order": 5,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_l_002.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 6,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_w_002.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 7,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_002.jpg"
            },
            {
                "Description": "Piscina",
                "Order": 8,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_002.jpg"
            },
            {
                "Description": "Vestíbulo",
                "Order": 9,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_l_003.JPG"
            },
            {
                "Description": "Habitación",
                "Order": 10,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_003.jpg"
            },
            {
                "Description": "Piscina",
                "Order": 11,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_003.JPG"
            },
            {
                "Description": "Habitación",
                "Order": 12,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_004.jpg"
            },
            {
                "Description": "Piscina",
                "Order": 13,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_004.jpg"
            },
            {
                "Description": "Vista general",
                "Order": 14,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_a_005.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 15,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_005.JPG"
            },
            {
                "Description": "Piscina",
                "Order": 16,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_005.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 17,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_006.jpg"
            },
            {
                "Description": "Piscina",
                "Order": 18,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_p_006.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 19,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_007.JPG"
            },
            {
                "Description": "Habitación",
                "Order": 20,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_008.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 21,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_009.JPG"
            },
            {
                "Description": "Vista general",
                "Order": 22,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_a_010.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 23,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_010.JPG"
            },
            {
                "Description": "Vista general",
                "Order": 24,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_a_011.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 25,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_011.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 26,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_012.jpg"
            },
            {
                "Description": "Habitación",
                "Order": 27,
                "Url": "https://photos.hotelbeds.com/giata/29/291641/291641a_hb_ro_013.jpg"
            }
        ],
        "AccommodationRooms": [
            {
                "RoomRequestNumber": 1,
                "TypeName": "APARTMENT 2 ROOMS 4 PAX",
                "AccommodationRoomRates": [
                    {
                        "Id": "fshgmdmcxww6s",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 2,
                        "Children": 1,
                        "RateClass": 2
                    }
                ]
            },
            {
                "RoomRequestNumber": 1,
                "TypeName": "APARTAMENTO CAPACIDAD 6 UN DORMITORIO",
                "AccommodationRoomRates": [
                    {
                        "Id": "oq55mb6g9es54",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 2,
                        "Children": 1,
                        "RateClass": 2
                    }
                ]
            },
            {
                "RoomRequestNumber": 1,
                "TypeName": "APARTAMENTO CAPACIDAD 8 DOS DORMITORIOS",
                "AccommodationRoomRates": [
                    {
                        "Id": "kf5sn4o5izt3n",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 2,
                        "Children": 1,
                        "RateClass": 2
                    }
                ]
            },
            {
                "RoomRequestNumber": 2,
                "TypeName": "APARTMENT 2 ROOMS 4 PAX",
                "AccommodationRoomRates": [
                    {
                        "Id": "gk5wmfxwdswmk",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 1,
                        "Children": 0,
                        "RateClass": 2
                    }
                ]
            },
            {
                "RoomRequestNumber": 2,
                "TypeName": "APARTAMENTO CAPACIDAD 6 UN DORMITORIO",
                "AccommodationRoomRates": [
                    {
                        "Id": "d15hmgeuk655n",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 1,
                        "Children": 0,
                        "RateClass": 2
                    }
                ]
            },
            {
                "RoomRequestNumber": 2,
                "TypeName": "APARTAMENTO CAPACIDAD 8 DOS DORMITORIOS",
                "AccommodationRoomRates": [
                    {
                        "Id": "yom4pzsufmjsy",
                        "Recheck": false,
                        "BoardCode": 10,
                        "BoardName": "SOLO HABITACIÓN",
                        "Adults": 1,
                        "Children": 0,
                        "RateClass": 2
                    }
                ]
            }
        ]
    },
    "PrePackages": [
        {
            "Id": "1fu1tmxgjrzyh",
            "Name": "Forfait la Molina + Alquiler snow 2 días "
        }
    ],
    "ActivityPackages": [
        {
            "Id": "ywh5xcbmiq5ry",
            "Activities": [
                {
                    "ActivityId": "yt1pgb1k61wdc",
                    "Quantity": 2
                }
            ]
        },
        {
            "Id": "c3dd5p43w64mr",
            "Activities": [
                {
                    "ActivityId": "yt1pgb1k61wdc",
                    "Quantity": 1
                }
            ]
        }
    ],
    "Packages": [
        {
            "Id": "ywh5xcbmiq5ry",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "fshgmdmcxww6s",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "ywh5xcbmiq5ry",
            "Price": 512.21
        },
        {
            "Id": "zwh891fknksfe",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "oq55mb6g9es54",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "ywh5xcbmiq5ry",
            "Price": 557.38
        },
        {
            "Id": "wchj6u74h5re6",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "kf5sn4o5izt3n",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "ywh5xcbmiq5ry",
            "Price": 662.77
        },
        {
            "Id": "c3dd5p43w64mr",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "gk5wmfxwdswmk",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "c3dd5p43w64mr",
            "Price": 392.61
        },
        {
            "Id": "fks9scxjy6cq1",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "d15hmgeuk655n",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "c3dd5p43w64mr",
            "Price": 437.78
        },
        {
            "Id": "de98pgh6qsino",
            "PrePackageId": "1fu1tmxgjrzyh",
            "AccommodationRateId": "yom4pzsufmjsy",
            "AccommodationId": "291641/weqn6yqht5bfw",
            "ActivityPackageId": "c3dd5p43w64mr",
            "Price": 543.17
        }
    ],
    "Success": true
}