Hotel Order/booking creation¶
General terms¶
Endpoint: /api/Order/Create
To create an Order, the Mixvel_OrderCreateRQ method is used. Booking can only be made based on a commercial (Offer), received from the system in the messages Mixvel_HotelPageRQ or Mixvel_HotelListRQ. In the request, it is necessary to provide the identifier of the commercial offer, which defines the selected hotel and/or service parameters, as well as complete contact details and information about the guests.
Important to consider when creating a hotel order:
- A hotel order can be added to an existing aviation MixOrder.
- An aviation order cannot be added to an existing hotel MixOrder.
- When making Mixvel_OrderCreateRQ for a hotel, only a technical order (order context) is created without pre-booking. The response Mixvel_OrderViewRS does not contain booking items(OrderItem).
- At the payment stage through Mixvel_OrderChangeRQ a full booking is formed, and the complete Mixvel_OrderViewRS with booking items (OrderItem)is returned in the response.
The booking contains information about the selected hotel (address, contacts, website), check-in and check-out times, accommodation features, fees, total cost, guest data, and photos of the selected room.
Request structure¶
The input data of the request must satisfy the Mixvel_OrderCreateRQ.xsd schema and contain the following basic data (full parameters can be found in the xsd scheme or in the xml examples of a specific message):
| Parameter XPath | Filling example | Description | Comments |
|---|---|---|---|
| Mixvel_OrderCreateRQ/ Request/ CreateOrder/ SelectedOffer/ OfferRefID | 4ac70570-4bd0-4fb7-82b7-a2a94c44232c | Commercial offer identifier | Received at the hotel and room search stage. |
| …/ SelectedOffer/ SelectedHotel/ Rooms/ Room/ RoomRefID | 8118bf78-1de8-41d0-b081-f14ec3e038f3 | Specific room identifier | |
| Mixvel_HotelOrderCreateRQ/ Request/ HotelOrderCreate/ Rooms/ Room/ CommentFreeText | string | Comment on the specific room | Length from 0 to 200 characters. |
| …/ Room/ PaxRefID | 1 | Guest identifier to which the offer relates | |
| Mixvel_OrderCreateRQ/ Request/ DataLists/ ContactInfoList | complex | Structure describing the contact information of the guest, including phone number, email address, and other contact information when specifying the guest's email in the structure. | |
| Mixvel_OrderCreateRQ/ Request/ DataLists/ PaxList/ Pax | complex | Structure describing information about a specific guest, including their unique identifier, link to the parent guest, age, and guest category. | |
| MixVel_HotelOrderCreateRQ/ HotelBookRequest/ DataLists/ PaxList/ Pax/ AgeMeasure | 0 | Guest's age | Optional element, an integer from 0. |
| MixVel_HotelOrderCreateRQ/ HotelBookRequest/ DataLists/ PaxList/ Pax/ Individual | complex | Guest information | Structure, see below. |
| …/ GenderCode | F или M | Guest's gender | Male or female. |
| …/ GivenName | Anna, Anna-Maria, Anna Maria | Guest's first name | - Input only in Latin script; - Spaces and hyphens are allowed; - Letters from local alphabets like "ü" are not allowed. |
| …/ Surname | Rimsky, Rimsky-Korsakov, Rimsky Korsakov | Guest's last name | - Input only in Latin script; - Spaces and hyphens are allowed; - Letters from local alphabets like "ü" are not allowed. |
| MixVel_HotelOrderCreateRQ/ HotelBookRequest/ DataLists/ PaxList/ Pax/ PaxID | token | - Guest's identifier; - Reference to this identifier is contained in the request body as PaxRefID. |
Mandatory field. |
| MixVel_HotelOrderCreateRQ/ HotelBookRequest/ DataLists/ PaxList/ Pax/ PTC | ADT | Guest category | ADT (>17 years), CNN (0–17 years). |
| Mixvel_HotelOfferPriceRQ/ PayloadAttributes/ PrimaryLangID | RU | Response language from directories | Optional, default is RU. |
| MixVel_HotelOrderCreateRQ/ HotelBookRequest/ DataLists/ PaxList/ Pax/ CitizenshipCountryCode | RUS | Guest's citizenship | - By default, it is transmitted as RUS (without the ability to choose); - The hotel clarifies the guest's citizenship upon check-in from the provided documents; - Optional. |
| Mixvel_HotelOrderCreateRQ/ Request/ MixOrder/ MixOrderRefID | token | Reference to an existing MixOrder (order cart) | Optional; - The order cart is a MixVel entity that allows for the combination of multiple orders. |
| Mixvel_HotelOrderCreateRQ/ Request/ MixOrder/ Paxes/ PaxRefID | token | Reference to a previously created guest in MixOrder | Optional. |
| Mixvel_HotelOrderCreateRQ/ Request/ HotelOrderCreate/ ContactPerson/ Email | string | Contact person's email address | |
| Mixvel_HotelOrderCreateRQ/ Request/ HotelOrderCreate/ ContactPerson/ Name | string | Contact person's name | Can be a guest, secretary, etc. |
| Mixvel_HotelOrderCreateRQ/ Request/ HotelOrderCreate/ ContactPerson/ PhoneNumber | string | Contact person's phone number | |
| Mixvel_HotelOrderCreateRQ/ Request/ PaymentFunctions/ PaymentProcessingDetails/ Amount | token | Total amount to be paid | Includes all surcharges. |
| …/CurCode | RUB | Currency code | For hotels - only RUB, according to ISO 4217. |
| Mixvel_HotelOrderCreateRQ/ Request/ PaymentFunctions/ PaymentProcessingDetails/ PaymentProcessingDetailsPaymentMethod/ DirectBill | string | Payment by bank transfer | One payment method is mandatory. |
| Mixvel_HotelOrderCreateRQ/ Request/ PaymentFunctions/ PaymentProcessingDetails/ PaymentProcessingDetailsPaymentMethod/ OtherPaymentMethod | string | Payment in cash | One payment method is mandatory. |
| Mixvel_HotelOrderCreateRQ/ Request/ PaymentFunctions/ PaymentProcessingDetails/ PaymentProcessingDetailsPaymentMethod/ PaymentCardTrxPaymentCard | string | Payment by credit card | One payment method is mandatory. |
Example of the Mixvel_HotelOrderCreateRQ request:
Show request example
<?xml version="1.0" encoding="UTF-8"?>
<MixEnv:Envelope xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelope/1_06">
<Header/>
<Body id="ID1">
<MessageInfo MessageId="703423d1-595c-49f5-98c2-5dcabe950276" TimeSent="2025-09-18T03:04:38.6129323Z"/>
<AppData>
<m:Mixvel_OrderCreateRQ xmlns:m="https://www.mixvel.com/API/XSD/Mixvel_OrderCreateRQ/1_01">
<Request>
<CreateOrder>
<SelectedOffer>
<OfferRefID>4ac70570-4bd0-4fb7-82b7-a2a94c44232c</OfferRefID>
<SelectedHotel>
<Rooms>
<Room>
<CommentFreeText>Test 1337</CommentFreeText>
<Paxes>
<PaxRefID>Pax-1</PaxRefID>
</Paxes>
<RoomRefID>8118bf78-1de8-41d0-b081-f14ec3e038f3</RoomRefID>
</Room>
</Rooms>
</SelectedHotel>
</SelectedOffer>
</CreateOrder>
<DataLists>
<ContactInfoList>
<ContactInfo>
<ContactInfoID>Contact-1</ContactInfoID>
<EmailAddress>
<ContactTypeText>personal</ContactTypeText>
<EmailAddressText>d.ivanov@gmail.com</EmailAddressText>
</EmailAddress>
<Phone>
<ContactTypeText>personal</ContactTypeText>
<PhoneNumber>+79000001111</PhoneNumber>
</Phone>
</ContactInfo>
</ContactInfoList>
<PaxList>
<Pax>
<AgeMeasure>25</AgeMeasure>
<Individual>
<GenderCode>M</GenderCode>
<GivenName>Ivan</GivenName>
<Surname>Ivanov</Surname>
</Individual>
<PaxID>Pax-1</PaxID>
<PTC>ADT</PTC>
</Pax>
</PaxList>
</DataLists>
</Request>
</m:Mixvel_OrderCreateRQ>
</AppData>
</Body>
</MixEnv:Envelope>
Response structure¶
The system's response to the booking request corresponds to the Mixvel_OrderViewRS.xsd schema and contains information about the order, hotel, and guests. The table below lists the main message parameters (the full list is available in the XSD schema or XML examples):
| Parameter XPath | Filling example | Description | Comments |
|---|---|---|---|
| Mixvel_OrderViewRS/ Response/ DataLists/ ContactInfoList | complex | Guest contact information for the order | |
| Mixvel_OrderViewRS/ Response/ DataLists/ HotelList/Hotel/ProviderGeneralInfo | complex | Hotel information | |
| …/ CheckInCheckOutTime | 14:00 | Check-in/check-out time | |
| …/ BasicInfo | complex | Basic hotel information | |
| …/ HotelDirectContacts | complex | Hotel contact details | |
| …/ HotelFacility | complex | Accommodation features and available services | |
| …/ Photo | complex | Hotel and room photos | |
| Mixvel_OrderViewRS/ Response/ DataLists/ HotelList/Hotel | complex | Hotel information | |
| …/ HotelID | ef22b7ac-a176-46b4-b530-03384f817af8 | Hotel ID | |
| …/ HotelName | Мастер-Отель | Hotel name | |
| …/ ProviderHotelName | complex | Full hotel name | |
| …/ ProviderLocationDetails | complex | Hotel contact details: country, city, address | |
| Mixvel_OrderViewRS/ Response/ DataLists/ PaxList | complex | Personal information of guests in the order | |
| …/ OrderRefID | 82477-250918-OEY1584 | Link to the ID of the paid order | |
| …/ PaxID | 1 | Guest ID | |
| …/ PTC | ADT | Guest category | Adult (ADT, >17 years), child (CNN, 0–17 years). |
| Mixvel_OrderViewRS/ Response/ MixOrder | complex | Order cart information | |
| …/ MixOrderID | 82477-250918-MEY1583 | Unique order cart ID | |
| …/ HotelOrder/CreationDateTime | 2025-09-18T01:54:59.1360076Z | Date and time of order creation | Spaces and hyphens are allowed. |
| …/ HotelOrder/HotelRefID | ef22b7ac-a176-46b4-b530-03384f817af8 | Link to hotel ID | Mandatory field. |
| …/ HotelOrder/OrderID | 82477-250918-OEY1584 | MixVel order number | Mandatory field. |
| …/ HotelOrder/OwnerCode Provider | HBP | Provider code in MixVel system | Mandatory field with stock affiliation indicator. |
| …/ HotelOrder/RelevanceDateTime | 2025-09-18T01:54:59.3867029Z | Date and time of booking creation | Mandatory field. |
| …/ HotelOrder/TotalAmount | token | Итоговая стоимость заказа | Total amount of all bookings in the order. |
| …/ HotelOrder/TotalAmount CurCode | RUB | Three-letter currency code |
Note: For a single hotel order (Order) in MixVel, one hotel voucher is generated. If there are multiple rooms in the order, all of them are listed in one voucher. The information in the voucher corresponds to the data in Mixvel_OrderViewRS. If a booking is canceled, a cancellation confirmation voucher is generated.
Example of the Mixvel_OrderViewRS response:
Show response example
<?xml version="1.0" encoding="utf-8"?>
<MixEnv:Envelope xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelope/1_06">
<Header/>
<Body>
<MessageInfo MessageId="38d5891c-38e2-4364-b685-4942790edf5e" ReplyTo="703423d1-595c-49f5-98c2-5dcabe950276" TimeSent="2025-09-18T01:54:59.407633Z"/>
<AppData>
<View:Mixvel_OrderViewRS xmlns:View="https://www.mixvel.com/API/XSD/Mixvel_OrderViewRS/1_01">
<Response>
<DataLists>
<ContactInfoList>
<ContactInfo>
<ContactInfoID>Contact-1</ContactInfoID>
<EmailAddress>
<ContactTypeText>personal</ContactTypeText>
<EmailAddressText>d.korotkov@mixvel.com</EmailAddressText>
</EmailAddress>
<Phone>
<ContactTypeText>personal</ContactTypeText>
<PhoneNumber>+79202457834</PhoneNumber>
</Phone>
</ContactInfo>
</ContactInfoList>
<HotelList>
<Hotel>
<ProviderGeneralInfo>
<CheckInCheckOutTime>
<CheckInTime>14:00</CheckInTime>
<CheckOutTime>12:00</CheckOutTime>
</CheckInCheckOutTime>
<BasicInfo>
<ChildrenInfo>Разрешается проживание детей любого возраста.(Children of any age are allowed to reside.)</ChildrenInfo>
<HotelDescription> К вашим услугам современные комфортабельные номера, оформленные в разных стилях, где всегда царит атмосфера домашнего уюта. Внимательный персонал круглосуточно заботится о беззаботном проживании гостей, а невысокие цены приятно удивляют в течение всего года. Одно из преимуществ гостиницы Мастер-Отель Первомайская– это удобное расположение рядом со станцией метро Первомайская, от которой всего 15 минут до центра столицы. Гостиница Мастер-Отель отлично подходит для отдыха и работы, для проживания в одиночестве или всей семьей. В ней уютно себя чувствуют молодые люди и родители с маленькими детьми, пенсионеры и бизнесмены. Как и другие недорогие гостиницы Москвы, отель Мастер-Отель предоставляет на выбор сто номеров разных категорий. Интерьеры всех номеров, холлов и ресторанных залов выполнены в соответствии с высокими европейскими требованиями и оснащены качественной современной мебелью. В недорогие гостиницы Москвы приезжают люди с самыми разными вкусами, поэтому в отеле Мастер-Отель можно найти и строгую классику, и современный модерн, и колоритный фольклорный стиль. Каждый номер предоставляет максимум удобств проживающим, в том числе отлично оснащенный санузел, холодильник, телевизор, телефон и фен. Не все дешевые гостиницы Москвы, как Мастер-Отель, могут предложить своим постояльцам услуги доступа к сети Интернет, факс. </HotelDescription>
(You have at your disposal modern comfortable rooms decorated in different styles, where the atmosphere of home coziness always reigns. Attentive staff takes care of the carefree stay of guests around the clock, and the low prices pleasantly surprise throughout the year. One of the advantages of the Master-Hotel Pervomaiskaya is its convenient location near the Pervomaiskaya metro station, from which it is only 15 minutes to the city center. The Master-Hotel is perfect for relaxation and work, for staying alone or with the whole family. Young people and parents with small children, retirees, and businessmen feel comfortable here. Like other budget hotels in Moscow, the Master-Hotel offers a choice of one hundred rooms of different categories. The interiors of all rooms, lobbies, and restaurant halls are made in accordance with high European standards and equipped with quality modern furniture. Budget hotels in Moscow attract people with very different tastes, so at the Master-Hotel, you can find both strict classics and modern design, as well as colorful folk style. Each room provides maximum comfort for guests, including a well-equipped bathroom, refrigerator, television, telephone, and hairdryer. Not all cheap hotels in Moscow, like the Master-Hotel, can offer their guests internet access and fax services. )
<HotelTypeName>Городского типа (City type)</HotelTypeName>
<StarCategoryName>-</StarCategoryName>
</BasicInfo>
<HotelDirectContacts>
<Phone>7(906)068-11-44, +7(906)068-11-33</Phone>
<Website>http://master-hotel.ru/</Website>
</HotelDirectContacts>
<HotelFacility>
<HotelFacilityName>Салон красоты (Beauty salon)</HotelFacilityName>
<HotelFacilityName>Обслуживание в номерах (Room service)</HotelFacilityName>
<HotelFacilityName>Сауна (Sauna)</HotelFacilityName>
<HotelFacilityName>Допускается размещение домашних животных (условия могут измениться)(Pets are allowed (conditions may change)</HotelFacilityName>
<HotelFacilityName>Вызов такси (Taxi call)</HotelFacilityName>
<HotelFacilityName>Ресторан (Restaurant) </HotelFacilityName>
<HotelFacilityName>Круглосуточная регистрация (24-hour registration)</HotelFacilityName>
<HotelFacilityName>Номера для некурящих (Non-smoking rooms)</HotelFacilityName>
<HotelFacilityName>Бар (Bar)</HotelFacilityName>
<HotelFacilityName>Места для курения (Smoking areas)</HotelFacilityName>
<HotelFacilityName>Wi-Fi</HotelFacilityName>
<HotelFacilityName>Курение запрещено на всей территории (Smoking is prohibited throughout the property)</HotelFacilityName>
</HotelFacility>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626923.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=1392ab4c03a1c4d7f13f5c62dfdaee5898cf674e6920ade520e40043db43a38a</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626927.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=e24cd635d04b291a35858d7f1187913be087b8ed04cfb731adb3d2e7de89e935</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626929.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=ba4432e3c61896beea57508fd6c076633ce953dc6778adec61adabbf9e0c3e2f</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626930.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=c53d4fea6790ee8d779198744f11cc96a53b43df5945cd7955717ca86920d134</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626931.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=77370c0e2649eb6a2a897bb8bcd5d4928652c4129c9a4ce0c62cafbf8036d6a0</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626932.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=b72ceccbdf8fcedbca1b377280f27f56683c00307f3943386f5c0388f8577be9</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626933.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=9b54e4b52bf7ab9a5915348044de4334d2c83a305679c1baaa2df4a607f6e4d0</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626934.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=c26c9d72e3eed8a077de2193e059aca1ad39c9fe553e5b016472fc25b2f092f4</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626935.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=c03e03f7320d5660cb63c5607e4560f38f4710351338b73bfed5410f3910eac6</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626936.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=090db03905547b4c7d769b562094292a32165ee0b6ded58f101d57c88acb3c73</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626937.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=8c9a0ce8afab2337a5b1817339e163bf12035d9edf124db14a88c039fb670ce0</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626938.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=fe871b4cb5dc50d9bb5ad3359e1c3ce8d657ae262707038bcd055dfb6db55b23</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626939.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=d08ea9a9c7d24e3b32bc1e23859ddb55a19962d5fce3face26afb71034b04b6a</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626940.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=742d264fb0c1d739ef59a4ed17ca548c3d8909dfe187d4f2a6f861319bdd1226</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626941.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=ce1b101c8bc8aa3da79662403c84e591481f038fe15da5c2e3cf75be7d42e61e</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626942.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=e5c6b8506abae9354b3cb4601f364abadb13a0596374ee9fd444e8f8d89f7f9b</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626943.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=6bf8f65fc63c5765e46da1bbad06b2d6bc004c80061e2d0aaa403f631266d4eb</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>false</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/37626944.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=4ea70ec2d68ea08b34cf7906c0051dcaef710d70258cb433448618760223058a</URL>
</PhotoUrl>
</Photo>
<Photo>
<IsMain>true</IsMain>
<PhotoUrl>
<URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/131687/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250918T014724Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=343ff34147ca10aad22171c7b46ed9643d0a39f19fda55476e4051db8ea89cd7</URL>
</PhotoUrl>
</Photo>
</ProviderGeneralInfo>
<HotelID>ef22b7ac-a176-46b4-b530-03384f817af8</HotelID>
<HotelName>Мастер-Отель Первомайская (Master Hotel Pervomayskaya)</HotelName>
<ProviderHotelName>Мастер-Отель Первомайская (Master Hotel Pervomayskaya) </ProviderHotelName>
<ProviderLocationDetails>
<CityName>Москва (Moscow)</CityName>
<Coordinates>
<Latitude>55.7974554701</Latitude>
<Longitude>37.8003654722</Longitude>
</Coordinates>
<CountryName>Россия (Russia)</CountryName>
<HotelAddress>105264, Россия, г. Москва, Измайловский бульвар, д. 49 (105264, Russia, Moscow, Izmailovsky Boulevard, 49)</HotelAddress>
</ProviderLocationDetails>
<Updated>2024-12-10T13:33:10Z</Updated>
</Hotel>
</HotelList>
<PaxList>
<Pax>
<AgeMeasure>35</AgeMeasure>
<Individual>
<GenderCode>M</GenderCode>
<GivenName>Daniil</GivenName>
<Surname>Korotkov</Surname>
</Individual>
<OrderRefID>82477-250918-OEY1584</OrderRefID>
<PaxID>Pax-1</PaxID>
<PTC>ADT</PTC>
</Pax>
</PaxList>
</DataLists>
<MixOrder>
<MixOrderID>82477-250918-MEY1583</MixOrderID>
<HotelOrder>
<CreationDateTime>2025-09-18T01:54:59.1360076Z</CreationDateTime>
<HotelRefID>ef22b7ac-a176-46b4-b530-03384f817af8</HotelRefID>
<OrderID>82477-250918-OEY1584</OrderID>
<OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
<RelevanceDateTime>2025-09-18T01:54:59.3867029Z</RelevanceDateTime>
<TotalAmount CurCode="RUB">90.00</TotalAmount>
</HotelOrder>
<TotalAmount CurCode="RUB">90.00</TotalAmount>
</MixOrder>
</Response>
</View:Mixvel_OrderViewRS>
</AppData>
</Body>
</MixEnv:Envelope>