# Reservations

## What is Reservations?

**Reservation** is a delivery method where SiteMinder actively sends reservations, modifications, and cancellations directly to the application's web service endpoint in real-time. This integration ensures that apps receive up-to-date booking information.

## Integration Requirements

Understand the essential requirements for API integration, including connectivity, authentication, message formats, and security protocols.

Understand the essential requirements for API integration, including connectivity, authentication, message formats, and security Understand the essential requirements for API integration, including connectivity, authentication, message formats, and security protocols.

<table data-header-hidden><thead><tr><th width="199.954833984375">Category</th><th>Requirement</th></tr></thead><tbody><tr><td><strong>Web Service Endpoint</strong></td><td><ul><li>The application must provide a single global endpoint for all hotels for SiteMinder to push <code>OTA_HotelResNotifRQ</code> messages and receive <code>OTA_HotelResNotifRQ</code> responses indicating success or failure.</li></ul></td></tr><tr><td><strong>Authentication</strong></td><td><ul><li>The application must provide a single username/password for all hotels.</li><li>SiteMinder will include authentication credentials within the <strong>SOAP Security header</strong> of each request <code>OTA_HotelResNotifRQ</code>.</li></ul></td></tr><tr><td><strong>Message Structure</strong></td><td><ul><li>All messages must adhere to the SOAP message format.</li><li>OTA message must be encapsulated within the SOAP Body.</li><li>Requests will include a SOAP Security Header for authentication.</li><li>Responses must be returned in a SOAP envelope with empty SOAP Header.</li></ul></td></tr><tr><td><strong>Content-Type</strong></td><td><code>application/xml; charset=utf-8</code></td></tr><tr><td><strong>Version</strong></td><td><code>SOAP 1.1</code></td></tr><tr><td><strong>Protocol &#x26; Security</strong></td><td><ul><li>All communication must occur over <strong>HTTPS</strong> using <strong>TLS 1.2 or higher</strong>.</li><li>Non-secure (HTTP) connections are <strong>not permitted</strong>.</li><li>Communication is synchronous request/response pairs.</li><li>Each message is atomic - processed entirely or not at all.</li></ul></td></tr></tbody></table>

## Message Exchange Flow

When reservations are received from a booking channel, or created, modified, or canceled in the property reservation system (Reservation Uploader/Data Publisher) and pushed to **SiteMinder Exchange (SMX)**, it delivers them to your application using a synchronous SOAP/HTTPS exchange. Each reservation triggers a separate request-response cycle.

1. **Reservation Message (SiteMinder to App):** `OTA_HotelResNotifRQ` Delivers a single reservation message (new booking, modification, or cancellation).
2. **Confirmation Response (App to SiteMinder):** `OTA_HotelResNotifRS` Confirms successful receipt or reports processing failure.

## Security Header <a href="#security-header" id="security-header"></a>

The Security Header is a mandatory SOAP header that authenticates every reservation request from SiteMinder to your application endpoint. It contains the username and password credentials that you provide to during integration setup.

**Key Requirements:**

* **Validation**: Your endpoint must validate these credentials on every request.
* **Scope**: One set of credentials is used for all properties in your integration.
* **Security**: Credentials are transmitted as plain text within the HTTPS encrypted channel.
* **Response**: Invalid credentials must return a SOAP fault with appropriate error code.

{% hint style="info" %}
The only acceptable value for the **Password @Type** attribute is *<http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText>.* Plain text passwords are acceptable as all communication is done over encrypted HTTP (HTTPS).
{% endhint %}

{% tabs %}
{% tab title="Reservation Message" %}
Requests will include a SOAP Security Header for authentication.

{% code overflow="wrap" expandable="true" %}

```xml
<SOAP-ENV:Envelope
	xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
	<SOAP-ENV:Header>
		<wsse:Security SOAP-ENV:mustUnderstand="1"
			xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
			<wsse:UsernameToken>
				<wsse:Username>USERNAME</wsse:Username>
				<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password>
			</wsse:UsernameToken>
		</wsse:Security>
	</SOAP-ENV:Header>
	<SOAP-ENV:Body>
		<OTA_HotelResNotifRQ
			xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" EchoToken="abc-123" TimeStamp="2018-05-04T19:40:04Z">
			<HotelReservations>
				<HotelReservation ResStatus="Reserved" CreateDateTime="2018-05-04T19:32:04Z">
					<!-- ... other elements and attributes have been omitted for brevity ... -->
				</HotelReservation>
			</HotelReservations>
		</OTA_HotelResNotifRQ>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
```

{% endcode %}
{% endtab %}

{% tab title="Reservation Response" %}
Responses must be returned in a SOAP envelope with an empty SOAP Header.

{% code overflow="wrap" expandable="true" %}

```xml
<soap-env:Envelope
	xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
	<soap-env:Body
		xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
		<OTA_HotelResNotifRS
			xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="cdcd51f2-769a-5a1d-841c-e6204d811f5c" TimeStamp="2025-05-08T00:56:53Z" Version="1.0">
			<Success/>
			<HotelReservations>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</HotelReservations>
		</OTA_HotelResNotifRS>
	</soap-env:Body>
</soap-env:Envelope>
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Multiplicity

In the SOAP Specification tables below **M** refers to the number of instances or occurrences of an element or attribute that are allowed or required in a given context. It defines how many times a particular component (element or attribute) can appear within a specific structure.

<table><thead><tr><th width="94">M</th><th>Definition</th></tr></thead><tbody><tr><td><strong>1</strong></td><td>The element or attribute must be present exactly once.</td></tr><tr><td><strong>0..1</strong></td><td>The element or attribute is optional; it can be present zero or one time.</td></tr><tr><td><strong>0..n</strong></td><td>The element or attribute can be present zero or more times, with no upper limit (where <strong>n</strong> represents an infinite number of occurrences).</td></tr><tr><td><strong>1..n</strong></td><td>The element or attribute must be present at least once and can be present any number of times, with no upper limit.</td></tr><tr><td><strong>n..m</strong></td><td>Specific range, the element or attribute must be present at least <strong>n</strong> times and no more than <strong>m</strong> times (where <strong>n</strong> and <strong>m</strong> are specific numbers).</td></tr></tbody></table>

## 1. Reservation Message

### OTA\_HotelResNotifRQ <a href="#ota_hotelresnotifrq" id="ota_hotelresnotifrq"></a>

{% tabs %}
{% tab title="Commit" %}

```xml
<OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" EchoToken="ABC-123" TimeStamp="2024-05-04T19:40:04Z">
    <HotelReservations>
        <HotelReservation ResStatus="Reserved" CreateDateTime="2018-05-04T19:32:04Z">
            <!-- ... other elements and attributes have been omitted for brevity ... -->
        </HotelReservation>
    </HotelReservations>
</OTA_HotelResNotifRQ>
```

{% endtab %}

{% tab title="Modify" %}

```xml
<OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" EchoToken="cc3048b5-55ca-4d77-b316-cb8e769c1381" TimeStamp="2017-09-19T18:13:53+00:00">
	<HotelReservations>
		<HotelReservation ResStatus="Reserved" CreateDateTime="2024-07-06T18:02:44+00:00" CreatorID="LINDA-RESAGENT" LastModifyDateTime="2024-07-06T18:13:51+00:00" LastModifierID="651651651651">
			<!-- ... other elements and attributes have been omitted for brevity ... -->
		</HotelReservation>
	</HotelReservations>
</OTA_HotelResNotifRQ>
```

{% endtab %}

{% tab title="Cancel" %}

```xml
<OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1" EchoToken="abc-123" TimeStamp="2018-09-20T07:55:07Z">
    <HotelReservations>
        <HotelReservation ResStatus="Cancelled" CreateDateTime="2018-05-04T19:32:04Z" LastModifyDateTime="2018-09-20T07:55:04Z">
           <!-- ... other elements and attributes have been omitted for brevity ... -->
        </HotelReservation>
    </HotelReservations>
</OTA_HotelResNotifRQ>
```

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="253">Element / @Attribute</th><th width="133">Type</th><th width="51" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>OTA_HotelResNotifRQ</code></td><td>Element</td><td align="center">1</td><td>Root element for the request.</td></tr><tr><td><code>@xmlns</code></td><td>String</td><td align="center">1</td><td>Defines the XML namespace for the request. Will be set to <code>http://www.opentravel.org/OTA/2003/05</code></td></tr><tr><td><code>@Version</code></td><td>Decimal</td><td align="center">1</td><td>Specifies the API version. Must be set to <code>1.0</code>.</td></tr><tr><td><code>@EchoToken</code></td><td>String</td><td align="center">1</td><td>Unique identifier for the request, used to match requests and responses.</td></tr><tr><td><code>@TimeStamp</code></td><td>DateTime</td><td align="center">1</td><td>Time when the request was generated.</td></tr></tbody></table>

### HotelReservation

```xml
<HotelReservations>
	<HotelReservation CreateDateTime="2025-07-06T15:27:41+00:00" LastModifyDateTime="2025-07-06T15:27:41+00:00">
		<UniqueID Type="14" ID="123456789"/>
		<!-- ... other elements and attributes have been omitted for brevity ... -->
	</HotelReservation>
</HotelReservations>
```

<table><thead><tr><th width="254">Element / @Attribute</th><th width="112">Type</th><th width="57" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>HotelReservations</code></td><td>Element</td><td align="center">1</td><td>Contains the reservation details.</td></tr><tr><td><code>HotelReservation</code></td><td>Element</td><td align="center">1</td><td>Contains the specific reservation information.</td></tr><tr><td><code>@ResStatus</code></td><td>Enumeration</td><td align="center">1</td><td><p>Indicates the current status of the reservation.</p><p>Valid values are dependent on the roles:</p><ul><li>Reserved</li><li>Waitlisted</li><li>Cancelled</li><li>No-show</li><li>In-house</li><li>Checked-Out</li></ul><p><mark style="color:red;"><strong>Mandatory</strong></mark><strong>:</strong> The SMX partner application should be able to accept all ResStatus values and respond with Success (200 OK status).</p></td></tr><tr><td><code>@CreateDateTime</code></td><td>DateTime</td><td align="center">1</td><td>This is the date when the reservation was first made. Format like <code>yyyy-MM-dd'T'HH:mm:ssZZ</code> i.e <code>2012-03-09T20:05:52+08:00</code></td></tr><tr><td><code>@CreatorID</code></td><td>String</td><td align="center">0..1</td><td>ID of the creator. The creator could be a software system identifier or an identifier of an employee responsible for the creation.</td></tr><tr><td><code>@LastModifyDateTime</code></td><td>DateTime</td><td align="center">0..1</td><td>This indicates the last date and time when the reservation was last modified. Format like <code>yyyy-MM-dd'T'HH:mm:ssZZ</code> i.e <code>2012-03-09T20:05:52+08:00</code></td></tr><tr><td><code>@LastModifierID</code></td><td>String</td><td align="center">0..1</td><td>Identifies the last software system or person to modify a record.</td></tr></tbody></table>

### Source

{% tabs %}
{% tab title="Source" %}

```xml
<POS>
	<Source>
		<RequestorID Type="22" ID="ABC"/>
		<BookingChannel Primary="true">
			<CompanyName Code="ABC">Channel Name</CompanyName>
		</BookingChannel>
	</Source>
	<!-- Additional Source element -->
</POS>
```

{% endtab %}

{% tab title="Second Source" %}

```xml
<POS>
	<Source>
		<RequestorID Type="22" ID="ABC"/>
		<BookingChannel Primary="true">
			<CompanyName Code="ABC">Channel Name</CompanyName>
		</BookingChannel>
	</Source>
	<Source>
		<BookingChannel Primary="false">
			<CompanyName Code="CBA">Affiliated Channel</CompanyName>
		</BookingChannel>
	</Source>
</POS>
```

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="208">Element / @Attribute</th><th width="112">Type</th><th width="71" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>POS</code></td><td>Element</td><td align="center">1</td><td>Contains source details.</td></tr><tr><td><code>Source</code></td><td>Element</td><td align="center">1..10</td><td>Contains BookingChannel details.</td></tr><tr><td><code>RequestorID</code></td><td>Element</td><td align="center">1</td><td>Only present in the first Source element. Identifies the system sending the reservation.</td></tr><tr><td><code>@ID</code></td><td>String</td><td align="center">1</td><td>Channel code. The ID used will be agreed by trading partners and remain consistent across messages.</td></tr><tr><td><code>BookingChannel</code></td><td>Element</td><td align="center">0..2</td><td>Contains booking channel information.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">1</td><td>The type of booking channel (e.g. Global Distribution System (GDS), Alternative Distribution System (ADS), Sales and Catering System (SCS), Property Management System (PMS), Central Reservation System (CRS), Tour Operator System (TOS), Internet and ALL). Refer to <a href="/pages/IG8dKV52Ty9x3QCHTV1x#booking-channel-type-bct">Booking Channel Type (BCT)</a>.</td></tr><tr><td><code>@Primary</code></td><td>Boolean</td><td align="center">0..1</td><td><p><code>true</code> for the primary booking channel in the first Source element.</p><p><code>false</code> in the second Source element, if present.</p></td></tr><tr><td><code>CompanyName</code></td><td>Element</td><td align="center">1</td><td>Name of the booking channel.</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>Code of the booking channel.</td></tr></tbody></table>

### UniqueID

```xml
<UniqueID ID="BDC-123456789"/>
```

<table><thead><tr><th width="216">Element / @Attribute</th><th width="112">Type</th><th width="64">M</th><th>Description</th></tr></thead><tbody><tr><td><code>UniqueID</code></td><td>Element</td><td>1</td><td>Used to provide PMS and/or CRS identifiers. An identifier used to uniquely reference an object in a system (e.g. an airline reservation reference, customer profile reference, booking confirmation number, or a reference to a previous availability quote).</td></tr><tr><td><code>@ID</code></td><td>String</td><td>1</td><td>A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</td></tr></tbody></table>

### RoomStays

```xml
<RoomStays>
	<RoomStay PromotionCode="AUTUNM2024">
		<!-- ... other elements and attributes have been omitted for brevity ... -->
	</RoomStay>
	<!-- Additional RoomStay elements -->
</RoomStays>
```

<table><thead><tr><th width="252">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>RoomStays</code></td><td>Element</td><td align="center">1</td><td>Contains details of all room stays.</td></tr><tr><td><code>RoomStay</code></td><td>Element</td><td align="center">1..n</td><td>One instance of <code>RoomStay</code> per room type booked.</td></tr><tr><td><code>@MarketCode</code></td><td>String</td><td align="center">0..1</td><td>The code that relates to the market being sold to (e.g., the corporate market, packages).</td></tr><tr><td><code>@SourceOfBusiness</code></td><td>String</td><td align="center">0..1</td><td>To specify where the business came from e.g. radio, newspaper ad, etc.</td></tr><tr><td><code>@PromotionCode</code></td><td>String</td><td align="center">0..1</td><td>If configured, this is the promotion code indicating, for instance, a specific marketing campaign (not the rate code).</td></tr></tbody></table>

### RoomTypes

```xml
<RoomTypes>
	<RoomType RoomTypeCode="TPL">
		<RoomDescription Name="Triple Room">Double bed and single bed.</RoomDescription>
	</RoomType>
</RoomTypes>
```

<table><thead><tr><th width="255">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>RoomTypes</code></td><td>Element</td><td align="center">0..1</td><td>Provides more information about the room type for this room stay.</td></tr><tr><td><code>RoomType</code></td><td>Element</td><td align="center">0..1</td><td>Provides details regarding rooms, usually guest rooms. It can be sent to give more information on the room type for this room stay.</td></tr><tr><td><code>@RoomType</code></td><td>String</td><td align="center">0..1</td><td>A code value that indicates the type of room for which this request is made, e.g.: double, king, etc. Values may use the Hotel Descriptive Content table or codes specific to the property or hotel brand.</td></tr><tr><td><code>@RoomTypeCode</code></td><td>String</td><td align="center">0..1</td><td>Specific system room type code, ex: A1K, A1Q etc.</td></tr><tr><td><code>@RoomCategory</code></td><td>Integer</td><td align="center">0..1</td><td>Indicates the category of the room. Typical values would be Moderate, Standard, or Deluxe. Refer to <a href="/pages/IG8dKV52Ty9x3QCHTV1x#segment-category-code-seg">Segment Category Code (SEG)</a></td></tr><tr><td><code>@RoomID</code></td><td>Integer</td><td align="center">0..1</td><td>A string value representing the unique identification of a room if the request is looking for a specific room.</td></tr><tr><td><code>@NonSmoking</code></td><td>Boolean</td><td align="center">0..1</td><td>Non-smoking indicator.</td></tr><tr><td><code>@Configuration</code></td><td>String</td><td align="center">0..1</td><td>Textual description of room configuration.</td></tr><tr><td><code>RoomDescription</code></td><td>Element</td><td align="center">0..1</td><td>Description of the room.</td></tr><tr><td><code>@Text</code></td><td>Element</td><td align="center">0..n</td><td>A text description of the room</td></tr><tr><td><code>AdditionalDetails</code></td><td>Element</td><td align="center">0..1</td><td>Container for additional information about this room.</td></tr><tr><td><code>AdditionalDetail</code></td><td>Element</td><td align="center">1..n</td><td></td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">0..1</td><td>Used to define the type of information being sent (e.g., rate description, property description, room information). Refer to <a href="/pages/IG8dKV52Ty9x3QCHTV1x#additional-detail-type-adt">Additional Detail Type (ADT)</a><br>Some common usages are:<br><strong>43</strong>: Meal plan information<br><strong>15</strong>: Promotion information</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>Trading partner code associated to AdditionalDetailType.</td></tr><tr><td><code>DetailDescription</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of AdditionalDetail information.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>A text description of AdditionalDetail</td></tr></tbody></table>

### RatePlans

```xml
<RatePlans>
	<RatePlan RatePlanCode="BAR">
		<RatePlanDescription>Best Available Rate.</RatePlanDescription>
		<Commission>
			<CommissionPayableAmount Amount="60.00" CurrencyCode="EUR"/>
		</Commission>
		<MealsIncluded MealPlanCode="14"/>
		<!-- Additional MealsIncluded elements -->
	</RatePlan>
</RatePlans>
```

<table><thead><tr><th width="284">Element / @Attribute</th><th width="112">Type</th><th width="61" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>RatePlans</code></td><td>Element</td><td align="center">0..1</td><td>Provides more information about the rate plan for this room stay.</td></tr><tr><td><code>RatePlan</code></td><td>Element</td><td align="center">0..1</td><td>Contains details about the specific rate plan.</td></tr><tr><td><code>@RatePlanCode</code></td><td>String</td><td align="center">0..1</td><td>Code of the rate booked.</td></tr><tr><td><code>@EffectiveDate</code></td><td></td><td align="center">0..1</td><td>The effective date of the RatePlan</td></tr><tr><td><code>@ExpireDate</code></td><td></td><td align="center">0..1</td><td>The expire date for a RatePlan, this should be considered an exclusive date, the date for which the current rate plan information is no longer valid.</td></tr><tr><td><code>@RatePlanName</code></td><td></td><td align="center">0..1</td><td>Provides the name of the rate plan or group. Typically used with RatePlanType to further describe the rate plan.</td></tr><tr><td><code>RatePlanDescription</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of the RatePlan.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>A text description of the RatePlan.</td></tr><tr><td><code>RatePlanInclusions</code></td><td>Element</td><td align="center">0..1</td><td>Defines charges that are included in this rate plan.</td></tr><tr><td><code>@TaxInclusive</code></td><td></td><td align="center">0..1</td><td>Indicates that service fees are included in the rate.</td></tr><tr><td><code>@ServiceFeeInclusive</code></td><td></td><td align="center">0..1</td><td>Indicates that tax is included in the rate.</td></tr><tr><td><code>RatePlanInclusionDescription</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of what is included in the rate plan.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of what is included in the rate plan.</td></tr><tr><td><code>MealsIncluded</code></td><td>Element</td><td align="center">0..1</td><td></td></tr><tr><td><code>@MealPlanIndicator</code></td><td></td><td align="center">0..1</td><td>When true, a meal plan is included in this rate plan. When false, a meal plan is not included in this rate plan.</td></tr><tr><td><code>@MealPlanCodes</code></td><td></td><td align="center">0..1</td><td>Used to identify the types of meals included with a rate plan. Refer to <a href="/pages/E3K5PNmESCObm8TXoLUy">Meal Plan Type (MPT)</a></td></tr><tr><td><code>AdditionalDetails</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of AdditionalDetail information.</td></tr><tr><td><code>AdditionalDetail</code></td><td>Element</td><td align="center">0..1</td><td>A text description of AdditionalDetail</td></tr><tr><td><code>@Type</code></td><td></td><td align="center">0..1</td><td>Used to define the type of information being sent (e.g., rate description, property description, room information). Refer to <a href="/pages/IG8dKV52Ty9x3QCHTV1x#additional-detail-type-adt">Additional Detail Type (ADT)</a><br>Some common usages are:<br><strong>43</strong>: Meal plan information<br><strong>15</strong>: Promotion information</td></tr><tr><td><code>@Code</code></td><td></td><td align="center">0..1</td><td>Trading partner code associated to AdditionalDetailType.</td></tr><tr><td><code>DetailDescription</code></td><td>Element</td><td align="center">0..1</td><td>Textual description of AdditionalDetail information.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>A text description of AdditionalDetail</td></tr></tbody></table>

### RoomRates

{% tabs %}
{% tab title="Room Rates" %}

```xml
<RoomRates>
	<RoomRate RoomTypeCode="TPL" RatePlanCode="BAR" NumberOfUnits="1">
		<Rates>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-05" ExpireDate="2024-10-08">
				<Base AmountBeforeTax="558.00" AmountAfterTax="620.00" CurrencyCode="EUR">
					<Taxes>
						<Tax Type="inclusive" Code="35" Amount="62.00" CurrencyCode="EUR"/>
						<!-- Additional Tax elements -->
					</Taxes>
				</Base>
				<Total AmountBeforeTax="558.00" AmountAfterTax="620.00" CurrencyCode="EUR">
					<Taxes>
						<Tax Type="inclusive" Code="35" Amount="62.00" CurrencyCode="EUR"/>
						<!-- Additional Tax elements -->
					</Taxes>
				</Total>
			</Rate>
		</Rates>
		<!-- Additional Rates elements -->
		<ServiceRPHs>
			<ServiceRPH RPH="1"/>
			<!-- Additional ServiceRPH elements -->
		</ServiceRPHs>
	</RoomRate>
</RoomRates>
```

{% endtab %}

{% tab title="Same Value per Night" %}

```xml
<RoomRates>
	<RoomRate RoomTypeCode="TPL" RatePlanCode="BAR" NumberOfUnits="1">
		<Rates>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-05" ExpireDate="2024-10-08">
				<Base AmountBeforeTax="558.00" AmountAfterTax="620.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
		</Rates>
	</RoomRate>
</RoomRates>
```

{% endtab %}

{% tab title="Different Value per Night" %}

```xml
<RoomRates>
	<RoomRate RoomTypeCode="TPL" RatePlanCode="BAR" NumberOfUnits="1">
		<Rates>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-05" ExpireDate="2024-10-06">
				<Base AmountBeforeTax="153.00" AmountAfterTax="170.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-06" ExpireDate="2024-10-07">
				<Base AmountBeforeTax="180.00" AmountAfterTax="200.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-07" ExpireDate="2024-10-08">
				<Base AmountBeforeTax="225.00" AmountAfterTax="250.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
		</Rates>
	</RoomRate>
</RoomRates>
```

{% endtab %}

{% tab title="Combined" %}

```xml
<RoomRates>
	<RoomRate RoomTypeCode="TPL" RatePlanCode="BAR" NumberOfUnits="1">
		<Rates>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-05" ExpireDate="2024-10-07">
				<Base AmountBeforeTax="360.00" AmountAfterTax="400.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
			<Rate UnitMultiplier="1" RateTimeUnit="Day" EffectiveDate="2024-10-07" ExpireDate="2024-10-08">
				<Base AmountBeforeTax="198.00" AmountAfterTax="220.00" CurrencyCode="EUR"/>
			<!-- ... other elements and attributes have been omitted for brevity ... -->
			</Rate>
		</Rates>
	</RoomRate>
</RoomRates>
```

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="253">Element / @Attribute</th><th width="128">Type</th><th width="62" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>RoomRates</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the rates applied to the room stay.</td></tr><tr><td><code>RoomRate</code></td><td>Element</td><td align="center">1..n</td><td>One RoomRate per RoomStay. Multiple rates are listed under the RoomRate.</td></tr><tr><td><code>@InvBlockCode</code></td><td>String</td><td align="center">0..1</td><td>Code that identifies an inventory block.</td></tr><tr><td><code>@RoomID</code></td><td>String</td><td align="center">0..1</td><td>A string value representing the unique identification of a room.</td></tr><tr><td><code>@NumberOfUnits</code></td><td>Integer</td><td align="center">0..1</td><td>Must be set to <code>1</code>. If there are multiple RoomStays for the same RoomTypeCode and RatePlanCode, multiple RoomStay elements should be sent.</td></tr><tr><td><code>@RoomTypeCode</code></td><td>String</td><td align="center">0..1</td><td>Code of the room booked.</td></tr><tr><td><code>@RatePlanCode</code></td><td>String</td><td align="center">0..1</td><td>Code of the rate plan booked. Must be included if RoomStay / RatePlans is present.</td></tr><tr><td><code>@RatePlanCategory</code></td><td>String</td><td align="center">0..1</td><td>Hotel systems often group multiple rate plans into a single category. This refers to that category that is specific to the hotel CRS/ PMS and should not be confused with a GDS rate category.</td></tr><tr><td><code>@EffectiveDate</code></td><td></td><td align="center">1</td><td>Indicates the starting date.</td></tr><tr><td><code>@ExpireDate</code></td><td></td><td align="center">1</td><td>ExpireDate is the first day after the applicable period (e.g. when expire date is 2012-04-03 the last date of the period is 2012-04-02). Format yyyy-MM-dd. This date is exclusive.</td></tr><tr><td><code>Rates</code></td><td>Element</td><td align="center">0..1</td><td>Container that will contain instances of Rates.</td></tr><tr><td><code>Rate</code></td><td>Element</td><td align="center">1..n</td><td>Rate will contain a timespan for which a rate will apply for a room type. Multiple instances of Rate will be sent if rate changes apply.</td></tr><tr><td><code>@UnitMultiplier</code></td><td>Integer</td><td align="center">1</td><td>Must be set to <code>1</code>.</td></tr><tr><td><code>@EffectiveDate</code></td><td>Date</td><td align="center">1</td><td>Starting date of the rate. This date is inclusive.</td></tr><tr><td><code>@ExpireDate</code></td><td>Date</td><td align="center">1</td><td>Expire date is the first day after the applicable period. This date is not inclusive.</td></tr><tr><td><code>Base</code></td><td>Element</td><td align="center">1</td><td>Base amount charged for the accommodation.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the taxes applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td align="center">0..n</td><td>Contains specific tax information.</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>Indicates the specific tax or fee that is being transferred. Refer to <a href="/pages/25577kjBcjKCgYHcsgBY">Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>Tax amount applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td align="center">0..1</td><td>Tax percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td align="center">0..5</td><td>Text description of the taxes.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>Textual description of the tax</td></tr><tr><td><code>Total</code></td><td>Element</td><td align="center">1</td><td>Total amount charged, including additional occupants and fees. If empty, assume the Base amount equals the Total amount.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the taxes applied.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>Tax amount applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td align="center">0..99</td><td>An individual tax per tax element. This element allows for both percentages and flat amounts. If one field is used, the other should be zero since logically, taxes should be calculated in only one of the two ways.</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td align="center">0..1</td><td>The type of tax being applied to the total. Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Integer</td><td align="center">0..1</td><td>A monetary amount of tax. if zero, assume use of the Percent attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td align="center">0..1</td><td>Tax percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td align="center">0..5</td><td>Text description of the taxes.</td></tr><tr><td><code>Text</code></td><td>String</td><td align="center">0..n</td><td>Textual description of the tax</td></tr><tr><td><code>ServiceRPHs</code></td><td>Element</td><td align="center">0..1</td><td>A collection of unsigned integers that reference the RPH (Reference Place holder) attribute in the Service object. The ServiceRPH attribute in the Service object is an indexing attribute that identifies the services attached this RoomRate.</td></tr><tr><td><code>ServiceRPH</code></td><td>Element</td><td align="center">1..n</td><td>This is a reference placeholder used as an index for a service to be associated with this stay</td></tr><tr><td><code>@RPH</code></td><td>Integer</td><td align="center">1</td><td>Provides a unique reference to the service.</td></tr></tbody></table>

### **GuestCounts**

```xml
<GuestCounts>
	<GuestCount AgeQualifyingCode="10" Count="2"/>
	<GuestCount AgeQualifyingCode="8" Age="7" Count="1"/>
	<GuestCount AgeQualifyingCode="8" Age="10" Count="1"/>
	<GuestCount AgeQualifyingCode="7" Count="1"/>
	<!-- Additional GuestCount elements -->
</GuestCounts>
```

<table><thead><tr><th width="250">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>GuestCounts</code></td><td>Element</td><td align="center">1</td><td>Total guest counts, divided by age group (adult, child, infant). Adult count must always be sent.</td></tr><tr><td><code>GuestCount</code></td><td>Element</td><td align="center">1..n</td><td>Represents the count for a specific age group.</td></tr><tr><td><code>@AgeQualifyingCode</code></td><td>Integer</td><td align="center">1</td><td><p><code>10</code> = Adult (mandatory)</p><p><code>8</code> = Child (optional)</p><p><code>7</code> = Infant (optional)</p></td></tr><tr><td><code>@Count</code></td><td>Integer</td><td align="center">1</td><td>Number of guests for this age group.</td></tr><tr><td><code>@Age</code></td><td>Integer</td><td align="center">0..1</td><td>Age of the guest, required only for children and infants.</td></tr><tr><td><code>@AgeBucket</code></td><td>String</td><td align="center">0..1</td><td>Defines the age range category or bucket a guest can be booked into. This is typically used in conjunction with the age qualifying code to further define the applicable age range.</td></tr></tbody></table>

### TimeSpan

```xml
<TimeSpan Start="2024-10-05" End="2024-10-08"/>
```

<table><thead><tr><th width="250">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>TimeSpan</code></td><td>Element</td><td align="center">1</td><td>Contains the timespan for the RoomStay.</td></tr><tr><td><code>@Start</code></td><td>Date</td><td align="center">1</td><td>Check-in date.</td></tr><tr><td><code>@End</code></td><td>Date</td><td align="center">1</td><td>Check-out date. Must be after Start.</td></tr></tbody></table>

### Guarantee (RoomStay Level)

```xml
<Guarantee GuaranteeCode="COMBINED_GUARANTEE" GuaranteeType="DepositRequired">
	<GuaranteesAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720">
				<CardHolderName>Leonard Woolf</CardHolderName>
				<CardNumber Mask="4021XXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber>
			</PaymentCard>
		</GuaranteeAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<Voucher SeriesCode="4555"/>
		</GuaranteeAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<DirectBill DirectBill_ID="4981003"/>
		</GuaranteeAccepted>
	</GuaranteesAccepted>
	<GuaranteeDescription>
		<Text>Combined Guarantees Accepted (Platinum Membership)</Text>
	</GuaranteeDescription>
</Guarantee>
```

<table><thead><tr><th width="274">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Guarantee</code></td><td>Element</td><td align="center">0..1</td><td>Guarantee provided with the reservation. Used if no deposit is paid for the reservation.</td></tr><tr><td><code>@GuaranteeCode</code></td><td>String</td><td align="center">0..1</td><td>Contains the details of accepted Guarantee Code.</td></tr><tr><td><code>@GuaranteeType</code></td><td>Enumeration</td><td align="center">0..1</td><td><p>An enumerated type defining the guarantee to be applied to this reservation.</p><p><strong>Value:</strong><br>CC/DC/Voucher<br>Deposit<br>DepositRequired<br>GuaranteeRequired<br>None<br>PrePay<br>Profile</p></td></tr><tr><td><code>GuaranteesAccepted</code></td><td>Element</td><td align="center">0.1</td><td>The guarantee information associated to the Room Stay. A maximum of 5 occurrences are available for use depending on the context.</td></tr><tr><td><code>GuaranteeAccepted</code></td><td>Element</td><td align="center">1..n</td><td><p>Guarantee Detail.</p><p>One of PaymentCard, Voucher, DirectBill elements must be included within GuranteeAccepted.</p></td></tr><tr><td><code>@PaymentTransactionTypeCode</code></td><td>String</td><td align="center">0..1</td><td><p>This is used to indicate either a <strong>charge</strong>, reserve (deposit) or refund.</p><p>charge: This indicates that an actual payment has been made.</p><p><strong>refund</strong>: This indicates that the payment amount of this PaymentDetail element is for a refund.</p><p><strong>reserve</strong>: This indicates that a hold for the indicated amount has been placed on a credit card or that a cash amount has been taken from the customer to guarantee final payment.</p></td></tr><tr><td><code>PaymentCard</code></td><td>Element</td><td align="center">0..1</td><td>Specific payment card information. Details of a debit or credit card.</td></tr><tr><td><code>@CardCode</code></td><td>String</td><td align="center">1</td><td>2-character code of the credit card issuer. Refer to <a href="/pages/Iqs1qAbBKAcBqhyyZHQt">Payment Card Provider Codes</a>.</td></tr><tr><td><code>@EffectiveDate</code></td><td>String</td><td align="center">0..1</td><td>Indicates the starting date. format <code>MMyy</code>).</td></tr><tr><td><code>@ExpireDate</code></td><td>String</td><td align="center">0..1</td><td>Expiry date of the credit card (format <code>MMyy</code>).</td></tr><tr><td><code>CardHolderName</code></td><td>Element</td><td align="center">0..1</td><td>Card Holder Name</td></tr><tr><td><code>CardNumber</code></td><td>String</td><td align="center">0..1</td><td>Secure information that supports PCI tokens, data masking and other encryption methods.</td></tr><tr><td><code>@Mask</code></td><td>String</td><td align="center">0..1</td><td>Masked data.</td></tr><tr><td><code>@Token</code></td><td>Integer</td><td align="center">0..1</td><td>Tokenized information.</td></tr><tr><td><code>@TokenProviderID</code></td><td>String</td><td align="center">0..1</td><td>Provider ID.</td></tr><tr><td><code>Voucher</code></td><td>Element</td><td align="center">0..1</td><td>Identification of a series of coupons or vouchers identified by serial number(s).</td></tr><tr><td><code>@SeriesCode</code></td><td>String</td><td align="center">0..1</td><td>Identification of a series of coupons or vouchers identified by serial number(s).</td></tr><tr><td><code>DirectBill</code></td><td>Element</td><td align="center">0..1</td><td>Details of a direct billing arrangement.</td></tr><tr><td><code>@DirectBill_ID</code></td><td>Integer</td><td align="center">0..1</td><td>Identifier for the organization to be billed directly for travel services.</td></tr><tr><td><code>GuaranteeDescription</code></td><td>Element</td><td align="center">0..1</td><td>Text description relating to the Guarantee.</td></tr><tr><td><code>Text</code></td><td>Sting</td><td align="center">0..n</td><td>Textual information relating to the Guarantee.</td></tr></tbody></table>

### DepositPayments

```xml
<DepositPayments>
	<GuaranteePayment>
		<AcceptedPayments>
			<AcceptedPayment PaymentTransactionTypeCode="charge">
				<PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720">
					<CardHolderName>Leonard Woolf</CardHolderName>
					<CardNumber Mask="4021XXXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber>
				</PaymentCard>
			</AcceptedPayment>
		</AcceptedPayments>
		<AmountPercent Percent="30" CurrencyCode="AUD" Amount="76.67" NmbrOfNights="2">
			<Taxes CurrencyCode="AUD" Amount="1.53">
				<Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="2">
					<TaxDescription>
						<Text>Credit Card surcharge.</Text>
					</TaxDescription>
				</Tax>
			</Taxes>
		</AmountPercent>
		<Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/>
		<Description>
			<Text>30% deposit (of the total reservation cost) will be charged to card holder's account 10 days before the date of arrival at the latest.</Text>
		</Description>
		<Address Type="1">
			<AddressLine>12 Pine Street</AddressLine>
			<CityName>Sydney</CityName>
			<PostalCode>2095</PostalCode>
			<StateProv StateCode="NSW">New South Wales</StateProv>
			<CountryName Code="AU">Australia</CountryName>
		</Address>
	</GuaranteePayment>
</DepositPayments>
```

<table><thead><tr><th width="215">Element / @Attribute</th><th width="94">Type</th><th width="74">M</th><th>Description</th></tr></thead><tbody><tr><td><code>DepositPayments</code></td><td>Element</td><td>0..1</td><td>A collection of required payments.</td></tr><tr><td><code>GuaranteePayment</code></td><td>Element</td><td>1..n</td><td>Used to define the deposit policy, guarantees policy, and/or accepted forms of payment.</td></tr><tr><td><code>AcceptedPayments</code></td><td>Element</td><td>0..1</td><td>Collection of forms of payment accepted for payment. Used to define the types of payments accepted.</td></tr><tr><td><code>AcceptedPayment</code></td><td>Element</td><td>0..1</td><td>An acceptable form of payment.</td></tr><tr><td><code>@PaymentTransactionTypeCode</code></td><td>String</td><td>0..1</td><td><p>This is used to indicate either a charge, reserve (deposit) or refund.</p><p>charge: This indicates that an actual payment has been made.</p><p><strong>refund</strong>: This indicates that the payment amount of this PaymentDetail element is for a refund.</p><p><strong>reserve</strong>: This indicates that a hold for the indicated amount has been placed on a credit card or that a cash amount has been taken from the customer to guarantee final payment.</p></td></tr><tr><td><code>PaymentCard</code></td><td>Element</td><td>0..1</td><td><p>Specific payment card information. Details of a debit or credit card.</p><p><strong>NOTE:</strong> PCI-sensitive payment card information should not be included in the message. Do not attempt to send any payment card data for there isn't a specific element or attribute in the API.</p></td></tr><tr><td><code>@CardCode</code></td><td>String</td><td>0..1</td><td>Issuer code. See <a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/273645612">OTA Payment Card Provider Codes</a></td></tr><tr><td><code>@EffectiveDate</code></td><td>Date</td><td>0..1</td><td>Indicates the starting date.</td></tr><tr><td><code>@ExpireDate</code></td><td>Date</td><td>0..1</td><td>Indicates the ending date.</td></tr><tr><td><code>CardHolderName</code></td><td>Element</td><td>0..1</td><td>Card holder name.</td></tr><tr><td><code>CardNumber</code></td><td>Element</td><td>0..1</td><td>Secure information that supports PCI tokens, data masking and other encryption methods.</td></tr><tr><td><code>@Mask</code></td><td>String</td><td>0..1</td><td>Masked data.</td></tr><tr><td><code>@Token</code></td><td>Integer</td><td>0..1</td><td>Tokenized information.</td></tr><tr><td><code>@TokenProviderID</code></td><td>String</td><td>0..1</td><td>Provider ID.</td></tr><tr><td><code>Voucher</code></td><td>Element</td><td>0..1</td><td>Details of a paper or electronic document indicating prepayment.</td></tr><tr><td><code>@SeriesCode</code></td><td>Integer</td><td>0..1</td><td>Identification of a series of coupons or vouchers identified by serial number(s).</td></tr><tr><td><code>DirectBill</code></td><td>Element</td><td>0..1</td><td>Details of a direct billing arrangement.</td></tr><tr><td><code>@DirectBill_ID</code></td><td>Integer</td><td>0..1</td><td>Identifier for the organization to be billed directly for travel services.</td></tr><tr><td><code>AmountPercent</code></td><td>Element</td><td>0..1</td><td>Payment expressed as a fixed amount, or a percentage of/or room nights. If the the Total.amountAfterTax is provided, it will be a percentage of this value. If only the amountBeforeTax is provided it will be the percentage of this value. At least @Amount or @Percent will be populated.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td>0..1</td><td>The percentage used to calculate the amount.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount taken for the deposit.</td></tr><tr><td><code>@NmbrOfNights</code></td><td>Integer</td><td>0..1</td><td>The number of nights of the hotel stay that are used to calculate the fee amount.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td>0..1</td><td>A collection of taxes relating to the deposit.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td></td></tr><tr><td><code>@Amount</code></td><td>Integer</td><td>0..1</td><td></td></tr><tr><td><code>Tax</code></td><td>Element</td><td>0..99</td><td>An individual tax. This element allows for both percentages and flat amounts. If one field is used, the other should be zero since logically, taxes should be calculated in only one of the two ways.</td></tr><tr><td><code>@Code</code></td><td>String</td><td>0..1</td><td>Code identifying the fee (e.g.,agency fee, municipality fee). Refer to<a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#fee-tax-type-ftt"> Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td>0..1</td><td>Fee percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td>0..5</td><td>Text description of the taxes.</td></tr><tr><td><code>Text</code></td><td>Element</td><td>0..n</td><td>Textual description of the tax</td></tr><tr><td><code>Deadline</code></td><td>Element</td><td>0..2</td><td>Payment deadline, absolute or relative.</td></tr><tr><td><code>@AbsoluteDeadline</code></td><td>DateTime</td><td>0..1</td><td>Defines the absolute deadline. Either this or the offset attributes may be used.</td></tr><tr><td><code>@OffsetTimeUnit</code></td><td>String</td><td>0..1</td><td>The units of time, e.g.: days, hours, etc., that apply to the deadline.</td></tr><tr><td><code>@OffsetUnitMultiplier</code></td><td>Integer</td><td>0..1</td><td>The number of units of DeadlineTimeUnit.</td></tr><tr><td><code>@OffsetDropTime</code></td><td>String</td><td>0..1</td><td>An enumerated type indicating when the deadline drop time goes into effect.</td></tr><tr><td><code>Description</code></td><td>Element</td><td>0..5</td><td>Text description of the Payment in a given language.</td></tr><tr><td><code>Text</code></td><td>String</td><td>0..n</td><td>Textual information information relating to the payment.</td></tr><tr><td><code>Address</code></td><td>String</td><td>0..1</td><td>The address to which a deposit may be sent.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td>0..1</td><td>Defines the type of address (e.g. home, business, other). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#communication-location-type-clt">Communication Location Type (CLT)</a>.</td></tr><tr><td><code>AddressLine</code></td><td>Element</td><td>0..5</td><td>Address including any relevant street number.</td></tr><tr><td><code>CityName</code></td><td>Element</td><td>0..1</td><td>City (e.g., Dublin), town, or postal station (</td></tr><tr><td><code>PostalCode</code></td><td>Element</td><td>0..1</td><td>PostCode</td></tr><tr><td><code>StateProv</code></td><td>Element</td><td>0..1</td><td>State, province, or region name or code needed to identify location.</td></tr><tr><td><code>@StateCode</code></td><td>Integer</td><td>0..1</td><td>The standard code or abbreviation for the state, province, or region.</td></tr><tr><td><code>CountryName</code></td><td>Element</td><td>0..1</td><td>The name or code of a country (as used in an address).</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td>0..1</td><td>ISO 3166 code for a country.</td></tr></tbody></table>

### Discount

```xml
<Discount TaxInclusive="true" Percent="15" DiscountCode="STAYNSAVE15" AmountBeforeTax="33.00" AmountAfterTax="36.30" CurrencyCode="AUD">
	<Taxes CurrencyCode="AUD" Amount="3.30">
		<Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10">
			<TaxDescription>
				<Text>GST</Text>
			</TaxDescription>
		</Tax>
	</Taxes>
	<DiscountReason>
		<Text>Stay 2 nights and get 15% off.</Text>
	</DiscountReason>
</Discount>
```

<table><thead><tr><th width="208">Element / Attribute</th><th width="100">Type</th><th width="100">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Discount</code></td><td>Element</td><td>0..1</td><td>Discount percentage and/or Amount, code and textual reason for discount.</td></tr><tr><td><code>@TaxInclusive</code></td><td>Boolean</td><td>0..1</td><td>Is Discount tax inclusive.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td>0..1</td><td>Percentage value of the discount.</td></tr><tr><td><code>@DiscountCode</code></td><td>String</td><td>0..1</td><td>Specifies the type of discount (e.g., No condition, LOS, Deposit or Total amount spent).</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td>0..1</td><td>The total amount not including any associated tax (e.g., sales tax, VAT, GST or any associated tax).</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td>0..1</td><td>The total amount including all associated taxes (e.g., sales tax, VAT, GST or any associated tax).</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td>0..1</td><td>A collection of taxes relating to Discount</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td>0..1</td><td>This element allows for both percentages and flat amounts. If one field is used, the other should be zero since logically, taxes should be calculated in only one of the two ways.</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td>0..1</td><td>Code identifying the fee (e.g.,agency fee, municipality fee). Refer to<a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#fee-tax-type-ftt"> Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td>0..1</td><td>Fee percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td>0..1</td><td>Text description of the taxes.</td></tr><tr><td><code>Text</code></td><td>Element</td><td>0..1</td><td>Textual description of the tax</td></tr><tr><td><code>DiscountReason</code></td><td>Element</td><td>1</td><td>Text description of Discount Reason.</td></tr><tr><td><code>Text</code></td><td>Element</td><td>1</td><td>Textual description of Discount Reason.</td></tr></tbody></table>

### Total

```xml
<Total AmountBeforeTax="187.00" AmountAfterTax="215.05" CurrencyCode="AUD">
	<Taxes CurrencyCode="AUD" Amount="28.05">
		<Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10">
			<TaxDescription>
				<Text>GST</Text>
			</TaxDescription>
		</Tax>
		<Tax Code="21" Amount="0" CurrencyCode="AUD" Percent="5">
			<TaxDescription>
				<Text>Insurance Premium Tax</Text>
			</TaxDescription>
		</Tax>
	</Taxes>
</Total>
```

<table><thead><tr><th width="210">Element / @Attribute</th><th width="114">Type</th><th width="64">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Total</code></td><td>Element</td><td>0..1</td><td>The total amount charged for the service including additional amounts and fees.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td>0..1</td><td>The total amount not including any associated tax (e.g., sales tax, VAT, GST or any associated tax).</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td>0..1</td><td>The total amount including all associated taxes (e.g., sales tax, VAT, GST or any associated tax).</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td>0..1</td><td>A collection of taxes relating to Discount</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td>0..1</td><td>This element allows for both percentages and flat amounts. If one field is used, the other should be zero since logically, taxes should be calculated in only one of the two ways.</td></tr><tr><td><code>@Code</code></td><td>String</td><td>0..1</td><td>Code identifying the fee (e.g.,agency fee, municipality fee). Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td>0..1</td><td>A monetary amount of tax.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td>0..1</td><td>Fee percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td>0..5</td><td><br></td></tr><tr><td></td><td></td><td></td><td></td></tr><tr><td>Text description of the taxes.</td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td></tr><tr><td><code>Text</code></td><td>Element</td><td>0..n</td><td>Textual description of Discount Reason.</td></tr></tbody></table>

### ResGuestRPHs

```xml
<ResGuestRPHs>
	<ResGuestRPH RPH="1"/>
	<!-- Additional ResGuestRPH elements -->
</ResGuestRPHs>
```

<table><thead><tr><th width="208">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>ResGuestRPHs</code></td><td>Element</td><td align="center">0..1</td><td>Container for the <code>ResGuestRPH</code> elements.</td></tr><tr><td><code>ResGuestRPH</code></td><td>Element</td><td align="center">1..n</td><td>Container for the <code>RPH</code> attribute.</td></tr><tr><td><code>@RPH</code></td><td>Integer</td><td align="center">1</td><td>Links the <code>RoomStay</code> to <code>ResGuest</code>. Find the links in <a href="#resguests">ResGuests</a>.</td></tr></tbody></table>

### Memberships

```xml
<Memberships>
	<Membership ProgramCode="Platinum" AccountID="8943112"/>
	<Membership ProgramCode="Platinum" AccountID="8943966"/>
</Memberships>
```

<table><thead><tr><th width="213">Element / @Attribute</th><th width="106">Type</th><th width="72">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Memberships</code></td><td>Element</td><td>0..1</td><td>A collection of Membership objects. Memberships provides a list of reward programs which may be credited with points accrued from the guest's activity. Which memberships are to be applied to which part is determined by each object's SelectedMembershipRPHs collection.</td></tr><tr><td><code>Membership</code></td><td>Element</td><td>1..n</td><td>The SelectedMembership object identifies the frequent customer reward program and (optionally) indicates points awarded for stay activity.</td></tr><tr><td><code>@ProgramCode</code></td><td>String</td><td>0..1</td><td>The code or name of the membership program ('Hertz', 'AAdvantage', etc.).</td></tr><tr><td><code>@AccountID</code></td><td>String</td><td>0..1</td><td>The account identification number for this particular member in this particular program.</td></tr></tbody></table>

### Comments

```xml
<Comments>
	<Comment>
		<Text>See the room stay comments here</Text>
	</Comment>
</Comments>
```

<table><thead><tr><th width="253">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Comments</code></td><td>Element</td><td align="center">0..1</td><td>Contains comment for the <code>RoomStay</code>.</td></tr><tr><td><code>Comment</code></td><td>Element</td><td align="center">1</td><td>Holds the actual comment.</td></tr><tr><td><code>@GuestViewable</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, the comment may be shown to the consumer. When false, the comment may not be shown to the consumer.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">1</td><td><p>The content of the comment.</p><p>PCI sensitive data is prohibited.</p></td></tr></tbody></table>

### SpecialRequests

```xml
<SpecialRequests>
	<SpecialRequest Name="Extra Bed">
		<Text>Yes</Text>
	</SpecialRequest>
	<!-- Additional ServiceRPH elements -->
</SpecialRequests>
```

<table><thead><tr><th width="219">Element / @Attribute</th><th width="112">Type</th><th width="76" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>SpecialRequests</code></td><td>Element</td><td align="center">0..1</td><td>Contains special requests for the <code>RoomStay</code>.</td></tr><tr><td><code>SpecialRequest</code></td><td>Element</td><td align="center">1..n</td><td>The SpecialRequests related to the RoomStay.</td></tr><tr><td><code>@RequestCode</code></td><td>String</td><td align="center">0..1</td><td>This identifies a special request for this reservation and is typically hotel-specific.</td></tr><tr><td><code>@CodeContext</code></td><td>String</td><td align="center">0..1</td><td>Identifies the source authority for the RequestCode.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>Textual information relating to the SpecialRequest.</td></tr><tr><td>ServiceRPHs</td><td>Element</td><td align="center">0..1</td><td></td></tr><tr><td>ServiceRPH</td><td>Element</td><td align="center">1..n</td><td>This is a reference placeholder used as an index for a service to be associated with this room.</td></tr><tr><td>@RPH</td><td>Integer</td><td align="center">1</td><td></td></tr></tbody></table>

### Services

```xml
<Services>
	<Service ServiceInventoryCode="EXTRA_BED" Inclusive="true" ServiceRPH="1" Quantity="1" ID="12346">
		<Price>
			<Base AmountBeforeTax="2.50" AmountAfterTax="2.75" CurrencyCode="EUR">
				<Taxes Amount="0.25">
					<Tax Code="19" Percent="10" Amount="0.25">
						<TaxDescription>
							<Text>GST 10 percent</Text>
						</TaxDescription>
					</Tax>
				</Taxes>
			</Base>
			<Total AmountBeforeTax="2.50" AmountAfterTax="2.75" CurrencyCode="EUR">
				<Taxes Amount="0.25">
					<Tax Code="19" Percent="10" Amount="0.25">
						<TaxDescription>
							<Text>GST 10 percent</Text>
						</TaxDescription>
					</Tax>
				</Taxes>
			</Total>
			<RateDescription>
				<Text>Extra person charge EUR 2.50 per day for cot</Text>
			</RateDescription>
		</Price>
		<ServiceDetails>
			<TimeSpan Start="2024-10-05" End="2024-10-08"/>
		</ServiceDetails>
	</Service>
	<!-- Additional Service elements -->
</Services>
```

<table><thead><tr><th width="214">Element / @Attribute</th><th width="102">Type</th><th width="72" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Services</code></td><td>Element</td><td align="center">0..1</td><td>This is the collection of all services associated with any part of this reservation (the reservation in its entirety, one or more guests, or one or more room stays).</td></tr><tr><td><code>Service</code></td><td>Element</td><td align="center">1..n</td><td>A Service object represents a non-room product provided to guests. Service products may have associated inventory and charges.</td></tr><tr><td><code>@ServicePricingType</code></td><td>String</td><td align="center">0..1</td><td>An enumerated type that defines how a service is priced. Values: Per stay, Per person, Per night, Per person per night, Per use.</td></tr><tr><td><code>@ServiceInventoryCode</code></td><td>String</td><td align="center">0..1</td><td>Identifier code for the service. Refer to <a href="/pages/CiYdiVL1WUiiuWGcKNmx">Service and Extra Charge</a>.</td></tr><tr><td><code>@Inclusive</code></td><td>Boolean</td><td align="center">1</td><td>Must be set to <code>TRUE</code>, as SiteConnect reports totals as inclusive of charges and extras.</td></tr><tr><td><code>@Quantity</code></td><td>Integer</td><td align="center">1</td><td>Number of units included in the charge. This value does not affect the total amount.</td></tr><tr><td><code>@ServiceRPH</code></td><td>Integer</td><td align="center">0..1</td><td>Links the <code>Service</code> to a <code>RoomStay</code> or <code>RatePlan</code>. <code>ServiceRPH</code> absence indicates a HotelReservation-level charge.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">0..1</td><td>A reference to the type of object defined by the UniqueID element. Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Unique ID Type (UIT)</a>.</td></tr><tr><td><code>@ID</code></td><td>String</td><td align="center">0..1</td><td>Reference ID for the extra/service provided by the source booking channel.</td></tr><tr><td><code>@ID_Context</code></td><td>String</td><td align="center">0..1</td><td>Used to identify the source of the identifier (e.g., IATA, ABTA).</td></tr><tr><td><code>Price</code></td><td>Element</td><td align="center">0..99</td><td>Container for pricing details of the service.</td></tr><tr><td><code>Total</code></td><td>Element</td><td align="center">0..1</td><td>The total amount charged for this rate including additional occupant amounts and fees.The total amount charged for the service including additional amounts and fees.</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td align="center">0..1</td><td>The total amount not including any associated tax. At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td align="center">0..1</td><td>The total amount including any associated tax. At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the taxes applied.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td align="center">1</td><td>Contains specific tax information.</td></tr><tr><td><code>@Code</code></td><td></td><td align="center">1</td><td>Indicates the specific tax or fee that is being transferred. Refer to <a href="/pages/25577kjBcjKCgYHcsgBY">Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Percentage</code></td><td>Decimal</td><td align="center">0..1</td><td>Percentage rate of the applied tax.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>Tax amount applied.</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td align="center">0..1</td><td>Container for a detailed description of the tax.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">1</td><td>Text description of the tax.</td></tr><tr><td><code>Total</code></td><td>Element</td><td align="center">1</td><td>Container for the total amount of the service.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the taxes applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>A monetary amount.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td align="center">0..99</td><td>Contains specific tax information.</td></tr><tr><td><code>@Code</code></td><td></td><td align="center">1</td><td>Indicates the specific tax or fee that is being transferred. Refer to <a href="/pages/25577kjBcjKCgYHcsgBY">Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>Tax amount applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>@Percent</code></td><td>Integer</td><td align="center">0..1</td><td>Percentage rate of the applied tax.</td></tr><tr><td><code>TaxDescription</code></td><td>Element</td><td align="center">0..5</td><td>Text description of the taxes in a given language</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">1</td><td>Text description of the tax.</td></tr><tr><td><code>ServiceDetails</code></td><td>Element</td><td align="center">0..1</td><td>Container for additional service details.</td></tr><tr><td><code>GuestCounts</code></td><td>Element</td><td align="center">0..1</td><td>A collection of Guest Counts associated to the whole Reservation or a particular Room Stay or Service.</td></tr><tr><td><code>GuestCount</code></td><td>Element</td><td align="center">0..99</td><td>A recurring element that identifies the number of guests and ages of the guests.</td></tr><tr><td><code>@AgeQualifyingCode</code></td><td>Integer</td><td align="center">0..1</td><td>A code representing a business rule that determines the charges for a guest based upon age range (e.g. Adult, Child, Senior, Child With Adult, Child Without Adult). This attribute allows for an increase in rate by occupant class. Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Age Qualifying Code (AQC)</a>.</td></tr><tr><td><code>@Age</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the age of a guest.</td></tr><tr><td><code>@Count</code></td><td>Integer</td><td align="center">0..1</td><td>The number of guests in one AgeQualifyingCode or Count. Valid value between 1 and 9999.</td></tr><tr><td><code>@AgeBucket</code></td><td>String</td><td align="center">0..1</td><td>This defines the age range category or bucket into which a guest can be booked. It is typically used in conjunction with the age qualifying code to further define the applicable age range.</td></tr><tr><td><code>TimeSpan</code></td><td>Element</td><td align="center">0..1</td><td>Contains the time span for which the service is provided.</td></tr><tr><td><code>@Start</code></td><td>Date</td><td align="center">0..1</td><td>The starting value of the time span.</td></tr><tr><td><code>@End</code></td><td>Date</td><td align="center">0..1</td><td>The ending value of the time span.</td></tr><tr><td><code>Comments</code></td><td>Element</td><td align="center">0..1</td><td>A collection of Comment objects. Comments which apply to the Service.</td></tr><tr><td><code>Comment</code></td><td>Element</td><td align="center">0..n</td><td>Comment details.</td></tr><tr><td><code>@GuestViewable</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, the comment may be shown to the consumer. When false, it may not be.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>Service detail comments</td></tr><tr><td><code>ServiceDescription</code></td><td>Element</td><td align="center">0..1</td><td>Description of the service</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..n</td><td>A text description of the service</td></tr><tr><td><code>ServiceCategory</code></td><td>Element</td><td align="center">0..n</td><td>Hotel systems often group multiple services into a single category. This refers to the category specific to the hotel CRS/PMS.</td></tr><tr><td><code>@ServiceCategoryCode</code></td><td>String</td><td align="center">1</td><td>The representation of the specific service category for the service being reserved.</td></tr></tbody></table>

### **BillingInstructionCode**

```xml
<BillingInstructionCode BillingCode="385H45991" AccountNumber="WOOLF05301300" Start="2017-12-01" End="2017-12-03" AuthorizationCode="7985" Description="Please follow billing instructions for Platinum Membership.">
	<ResGuestRPH RPH="1"/>
</BillingInstructionCode>
```

<table><thead><tr><th width="223">Element / @Attribute</th><th width="106">Type</th><th width="72">M</th><th>Description</th></tr></thead><tbody><tr><td><code>BillingInstructionCode</code></td><td>Element</td><td>0..n</td><td>Billing codes apply to a set of instructions for a set of transactions that are routed to a designated folio.</td></tr><tr><td><code>@BillingCode</code></td><td>String</td><td>1</td><td>The individual billing code that applies to a set of instructions that are routed to a designated folio.</td></tr><tr><td><code>@AccountNumber</code></td><td>String</td><td>0..1</td><td>Identifies the account number where the charges will be routed.</td></tr><tr><td><code>@Start</code></td><td>Date</td><td>0..1</td><td>The starting value of the time span.</td></tr><tr><td><code>@End</code></td><td>Date</td><td>0..1</td><td>The ending value of the time span.</td></tr><tr><td><code>@AuthorizationCode</code></td><td>Integer</td><td>0..1</td><td>The authorization code associated with the billing code.</td></tr><tr><td><code>@Description</code></td><td>String</td><td>0..1</td><td>A short description of the billing code or instructions.</td></tr><tr><td><code>ResGuestRPH</code></td><td>Element</td><td>0..1</td><td>A reference to a guest ID object that may be defined in ResGuests/ResGuest</td></tr><tr><td><code>@RPH</code></td><td>Integer</td><td>0..1</td><td>A unique reference to the guest ID.</td></tr></tbody></table>

### ResGuests

```xml
<ResGuests>
	<ResGuest ResGuestRPH="1" ArrivalTime="14:00:00" PrimaryIndicator="1">
		<Profiles>
			<ProfileInfo>
				<Profile ProfileType="1">
					<Customer>
						<PersonName>
							<NamePrefix>Mr</NamePrefix>
							<GivenName>John</GivenName>
							<Surname>Smith</Surname>
						</PersonName>
						<Telephone PhoneNumber="+61123456789"/>
						<Email>test@siteminder.com</Email>
						<Address>
							<AddressLine>200 George St</AddressLine>
							<AddressLine>Level 3</AddressLine>
							<CityName>Sydney</CityName>
							<PostalCode>2000</PostalCode>
							<StateProv>NSW</StateProv>
							<CountryName>Australia</CountryName>
						</Address>
						<CustLoyalty ProgramID="LoyaltyProgramName" MembershipID="123456789" ExpireDate="2020-12-31"/>
					</Customer>
				</Profile>
			</ProfileInfo>
		</Profiles>
	</ResGuest>
	<!-- Additional ResGuest elements -->
</ResGuests>
```

<table><thead><tr><th width="192">Element / @Attribute</th><th width="116">Type</th><th width="77" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>ResGuests</code></td><td>Element</td><td align="center">0..1</td><td>Contains the guests for the reservation.</td></tr><tr><td><code>ResGuest</code></td><td>Element</td><td align="center">1..n</td><td>Contains the specific guest details.</td></tr><tr><td><code>@ResGuestRPH</code></td><td>Integer</td><td align="center">0..1</td><td>Links the <code>ResGuest</code> to <code>RoomStay</code>. Find the links in <a href="#resguestrphs">ResGuestRPHs</a>.</td></tr><tr><td><code>@AgeQualifyingCode</code></td><td>Integer</td><td align="center">0..1</td><td>A code representing a business rule that determines the charges for a guest based upon age range (e.g. Adult, Child, Senior, Child With Adult, Child Without Adult). Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Age Qualifying Code (AQC)</a>.</td></tr><tr><td><code>@ArrivalTime</code></td><td>Time</td><td align="center">0..1</td><td>Arrival time of the guest.</td></tr><tr><td><code>@PrimaryIndicator</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates this is the primary guest. Only one ResGuest can be the primary guest.</td></tr><tr><td><code>@Age</code></td><td>Integer</td><td align="center">0..1</td><td>The age of the guest.</td></tr><tr><td><code>Profiles</code></td><td>Element</td><td align="center">0..1</td><td>Contains the guest profile information.</td></tr><tr><td><code>ProfileInfo</code></td><td>Element</td><td align="center">1..n</td><td>Contains the profile information for the guest.</td></tr><tr><td><code>UniqueID</code></td><td>Element</td><td align="center">0..9</td><td>A unique ID for a profile. This element can repeat to accommodate multiple unique IDs for a single profile across multiple systems.</td></tr><tr><td><code>@ID</code></td><td>Integer</td><td align="center">1</td><td>A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">1</td><td>A reference to the type of object defined by the UniqueID element. Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Unique ID Type (UIT)</a>.</td></tr><tr><td><code>@ID_Context</code></td><td>String</td><td align="center">0..1</td><td>Used to identify the source of the identifier.</td></tr><tr><td><code>Profile</code></td><td>Element</td><td align="center">1</td><td>Contains detailed customer profile information.</td></tr><tr><td><code>@ShareAllOptOutInd</code></td><td>Boolean</td><td align="center">1</td><td>When 'true', a customer has explicitly opted out of marketing communication. This is used in combination with the ShareAllMarketInd and only one of these attributes should have a value of 'true'.</td></tr><tr><td><code>@ShareAllMarketInd</code></td><td>Boolean</td><td align="center">1</td><td>Permission for sharing all data in profile for marketing purposes. A 'true' value indicates that the customer has chosen to opt-in to marketing communication. This is used in combination with the ShareAllOptOutInd and only one of these attributes should have a value of 'true'.</td></tr><tr><td><code>Customer</code></td><td>Element</td><td align="center">0..1</td><td>Contains detailed guest information.</td></tr><tr><td><code>@VIP_Indicator</code></td><td>Boolean</td><td align="center">0..1</td><td>If true, indicates a very important person.</td></tr><tr><td><code>@CustomerValue</code></td><td>String</td><td align="center">0..1</td><td>The supplier's ranking of the customer (e.g., VIP, numerical ranking).</td></tr><tr><td><code>@BirthDate</code></td><td>Date</td><td align="center">0..1</td><td>The customer’s birthday information.</td></tr><tr><td><code>PersonName</code></td><td>Element</td><td align="center">0..1</td><td>Contains the name information for the guest.</td></tr><tr><td><code>@Language</code></td><td>String</td><td align="center">0..1</td><td>The language code for which the name data is represented.</td></tr><tr><td><code>@NameType</code></td><td>Integer</td><td align="center">0..1</td><td>Former, Nickname, Alternate, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614"> Name Type (NAM)</a>.</td></tr><tr><td><code>NamePrefix</code></td><td>Element</td><td align="center">0..3</td><td>Title of the guest.</td></tr><tr><td><code>GivenName</code></td><td>Element</td><td align="center">0..5</td><td>First name of the guest.</td></tr><tr><td><code>MiddleName</code></td><td>Element</td><td align="center">0..3</td><td>The middle name of the person name.</td></tr><tr><td><code>Surname</code></td><td>Element</td><td align="center">1</td><td>Last name of the guest.</td></tr><tr><td><code>NameSuffix</code></td><td>Element</td><td align="center">0..3</td><td>Name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.)</td></tr><tr><td><code>NameTitle</code></td><td>Element</td><td align="center">0..5</td><td>Degree or honours (e.g., Ph.D., M.D.)</td></tr><tr><td><code>Telephone</code></td><td>Element</td><td align="center">0..5</td><td>Contains telephone information related to the guest.</td></tr><tr><td><code>@PhoneLocationType</code></td><td>Integer</td><td align="center">0..1</td><td>Describes the location of the phone, such as Home, Office, Property Reservation Office, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> </a><a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Phone Location Type (PLT)</a>.</td></tr><tr><td><code>@PhoneTechType</code></td><td>Integer</td><td align="center">0..1</td><td>Indicates type of technology associated with this telephone number, such as Voice, Data, Fax, Pager, Mobile, TTY, etc. Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#phone-technology-type-ptt">Phone Technology Type (PTT)</a>.</td></tr><tr><td><code>@CountryAccessCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned by telecommunications authorities for international country access identifier.</td></tr><tr><td><code>@AreaCityCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned for telephones in a specific region, city, or area.</td></tr><tr><td><code>@PhoneNumber</code></td><td>Integer</td><td align="center">0..1</td><td>Telephone number assigned to a single location.</td></tr><tr><td><code>@Remark</code></td><td>String</td><td align="center">0..1</td><td>A remark associated with the telephone number.</td></tr><tr><td><code>@FormattedInd</code></td><td>Boolean</td><td align="center">0..1</td><td>Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>Email</code></td><td>Element</td><td align="center">0..5</td><td>Contact email address.</td></tr><tr><td><code>@EmailType</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#email-address-type-eat">Email Address Type (EAT).</a></td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..5</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>Address</code></td><td>Element</td><td align="center">0..5</td><td>Address information of the guest.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the type of address (e.g. home, business, other). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#communication-location-type-clt">Communication Location Type (CLT)</a>.</td></tr><tr><td><code>AddressLine</code></td><td>Element</td><td align="center">0..5</td><td>Address lines for the guest.</td></tr><tr><td><code>CityName</code></td><td>Element</td><td align="center">0..1</td><td>City of residence.</td></tr><tr><td><code>PostalCode</code></td><td>Element</td><td align="center">0..1</td><td>Postal code.</td></tr><tr><td><code>StateProv</code></td><td>Element</td><td align="center">0..1</td><td>State or province name.</td></tr><tr><td><code>@StateCode</code></td><td>String</td><td align="center">0..1</td><td>The standard code or abbreviation for the state, province, or region.</td></tr><tr><td><code>CompanyName</code></td><td>Element</td><td align="center">0..1</td><td>Identifies a company.</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>ISO 3166 code for a country.</td></tr><tr><td><code>CountryName</code></td><td>Element</td><td align="center">0..1</td><td>Country name (maximum 64 characters).</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>ISO 3166 code for a country.</td></tr><tr><td><code>AddresseeName</code></td><td>Element</td><td align="center">0..1</td><td>Name of the person to whom this address relates.</td></tr><tr><td><code>@Language</code></td><td>String</td><td align="center">0..1</td><td>The language code for which the name data is represented.</td></tr><tr><td><code>@NameType</code></td><td>Integer</td><td align="center">0..1</td><td>Former, Nickname, Alternate, etc. Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#name-type-nam">Name Type (NAM)</a>.</td></tr><tr><td><code>NamePrefix</code></td><td>Element</td><td align="center">0..1</td><td>Salutation of honorific (e.g. Mr., Mrs., Ms., Miss, Dr.)</td></tr><tr><td><code>GivenName</code></td><td>Element</td><td align="center">0..5</td><td>Given name, first name or names.</td></tr><tr><td><code>MiddleName</code></td><td>Element</td><td align="center">0..3</td><td>The middle name of the person name.</td></tr><tr><td><code>Surname</code></td><td>Element</td><td align="center">1</td><td>Family or last name.</td></tr><tr><td><code>NameSuffix</code></td><td>Element</td><td align="center">0..3</td><td>Name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.)</td></tr><tr><td><code>NameTitle</code></td><td>Element</td><td align="center">0..5</td><td>Degree or honours (e.g., Ph.D., M.D.)</td></tr><tr><td><code>RelatedTraveler</code></td><td>Element</td><td align="center">0..n</td><td>Identifies a traveler associated with the customer.</td></tr><tr><td><code>@Relation</code></td><td>String</td><td align="center">0..1</td><td>Indicates the type of relationship with the person in the profile, such as Spouse, Child, Family, Business Associate, Interest Group, Medical, Security, Other, etc.</td></tr><tr><td><code>@BirthDate</code></td><td>Date</td><td align="center">0..1</td><td>The related traveler’s birthday information.</td></tr><tr><td><code>@UniqueID</code></td><td>Integer</td><td align="center">0..1</td><td>Unique identifier of the reservation in the system which sent the message.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">1</td><td>A reference to the type of object defined by the UniqueID element. Refer to <a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Unique ID Type (UIT)</a>.</td></tr><tr><td><code>@ID</code></td><td>Integer</td><td align="center">1</td><td>A unique identifying value is assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</td></tr><tr><td><code>@ID_Context</code></td><td>String</td><td align="center">0..1</td><td>Used to identify the source of the identifier.</td></tr><tr><td><code>PersonName</code></td><td>Element</td><td align="center">0..1</td><td>Contains the name information for the guest.</td></tr><tr><td><code>@NameType</code></td><td>String</td><td align="center">0..1</td><td>The language code for which the name data is represented.</td></tr><tr><td><code>@Language</code></td><td>String</td><td align="center">0..1</td><td>Former, Nickname, Alternate, etc. Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#name-type-nam">Name Type (NAM)</a>.</td></tr><tr><td><code>NamePrefix</code></td><td>Element</td><td align="center">0..3</td><td>Salutation of honorific (e.g. Mr., Mrs., Ms., Miss, Dr.)</td></tr><tr><td><code>GivenName</code></td><td>Element</td><td align="center">0..5</td><td>Given name, first name or names.</td></tr><tr><td><code>MiddleName</code></td><td>Element</td><td align="center">0..3</td><td>The middle name of the person name.</td></tr><tr><td><code>Surname</code></td><td>Element</td><td align="center">1</td><td>Family or last name.</td></tr><tr><td><code>NameSuffix</code></td><td>Element</td><td align="center">0..3</td><td>Name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.)</td></tr><tr><td><code>NameTitle</code></td><td>Element</td><td align="center">0..5</td><td>Degree or honours (e.g., Ph.D., M.D.)</td></tr><tr><td><code>CustLoyalty</code></td><td>Element</td><td align="center">0..25</td><td>Loyalty program information for the customer.</td></tr><tr><td><code>@ProgramID</code></td><td>String</td><td align="center">0..1</td><td>The ProgramID attribute can be used to indicate the program that is being passed. For instance, we could use it to pass: Frequent Guest, Frequent Traveller and Company ID.</td></tr><tr><td><code>@MembershipID</code></td><td>Integer</td><td align="center">0..1</td><td>The membershipID attribute will indicate the actual number.</td></tr><tr><td><code>@LoyalLevel</code></td><td>String</td><td align="center">0..1</td><td>Indicates special privileges in the program assigned to an individual.</td></tr><tr><td><code>@LoyalLevelCode</code></td><td>Integer</td><td align="center">0..1</td><td>Provides a numeric code assigned to a particular loyalty level.</td></tr><tr><td><code>@SignupDate</code></td><td>Date</td><td align="center">0..1</td><td>Indicates the starting date of the program.</td></tr><tr><td><code>@EffectiveDate</code></td><td>Date</td><td align="center">0..1</td><td>Indicates the expiration date of the program.</td></tr><tr><td><code>@ExpireDate</code></td><td>Date</td><td align="center">0..1</td><td>Indicates the customer’s sign-up date.</td></tr><tr><td><code>@Remark</code></td><td>String</td><td align="center">0..1</td><td>A remark associated with the customer's loyalty program.</td></tr><tr><td><code>CompanyInfo</code></td><td>Element</td><td align="center">0..1</td><td>Detailed information about a company.</td></tr><tr><td><code>CompanyName</code></td><td>Element</td><td align="center">0..1</td><td>Identifies a company by name.</td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>Identifies a company by the company code.</td></tr><tr><td><code>AddressInfo</code></td><td>Element</td><td align="center">0..5</td><td></td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the type of address (e.g. home, business, other). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#communication-location-type-clt">Communication Location Type (CLT)</a>.</td></tr><tr><td><code>AddressLine</code></td><td>Element</td><td align="center">0..5</td><td>These lines will contain free-form address details.</td></tr><tr><td><code>CityName</code></td><td>Element</td><td align="center">0..1</td><td>City (e.g., Dublin), town, or postal station.</td></tr><tr><td><code>StateProv</code></td><td>Element</td><td align="center">0..1</td><td>State, province, or region name.</td></tr><tr><td><code>@StateCode</code></td><td>String</td><td align="center">0..1</td><td>The standard code or abbreviation for the state, province, or region.</td></tr><tr><td><code>PostalCode</code></td><td>String</td><td align="center">0..1</td><td>Post Office Code number.</td></tr><tr><td><code>CountryName</code></td><td>String</td><td align="center">0..1</td><td>Country name (e.g., Ireland).</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td align="center">0..1</td><td>ISO 3166 code for a country.</td></tr><tr><td><code>TelephoneInfo</code></td><td>Element</td><td align="center">0..n</td><td>Information on a telephone number for the company.</td></tr><tr><td><code>@PhoneLocationType</code></td><td>Integer</td><td align="center">0..1</td><td>Describes the location of the phone, such as Home, Office, Property Reservation Office, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> </a><a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Phone Location Type (PLT)</a>.</td></tr><tr><td><code>@PhoneTechType</code></td><td>Integer</td><td align="center">0..1</td><td>Indicates type of technology associated with this telephone number, such as Voice, Data, Fax, Pager, Mobile, TTY, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> Phone Technology Type (PTT)</a>.</td></tr><tr><td><code>@CountryAccessCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned by telecommunications authorities for international country access identifier.</td></tr><tr><td><code>@AreaCityCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned for telephones in a specific region, city, or area.</td></tr><tr><td><code>@PhoneNumber</code></td><td>Integer</td><td align="center">1</td><td>Telephone number assigned to a single location.</td></tr><tr><td><code>@FormattedInd</code></td><td>Boolean</td><td align="center">0..1</td><td>Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>@Remark</code></td><td>String</td><td align="center">0..1</td><td>A remark associated with the telephone number.</td></tr><tr><td><code>Email</code></td><td>Element</td><td align="center">0..5</td><td>Information on an email address for the company.</td></tr><tr><td><code>@EmailType</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#email-address-type-eat">Email Address Type (EAT).</a></td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>ContactPerson</code></td><td>Element</td><td align="center">0..n</td><td>Information on a contact person for the company. Name of an individual and appropriate contact information. May be contact information for the customer or someone affiliated with the customer.</td></tr><tr><td><code>PersonName</code></td><td>Element</td><td align="center">0..1</td><td></td></tr><tr><td><code>@Language</code></td><td>String</td><td align="center">0..1</td><td>The language code for which the name data is represented.</td></tr><tr><td><code>@NameType</code></td><td>Integer</td><td align="center">0..1</td><td>Former, Nickname, Alternate, etc. Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#name-type-nam">Name Type (NAM)</a>.</td></tr><tr><td><code>NamePrefix</code></td><td>Element</td><td align="center">0..3</td><td>Salutation of honorific (e.g. Mr., Mrs., Ms., Miss, Dr.)</td></tr><tr><td><code>GivenName</code></td><td>Element</td><td align="center">0.5</td><td>Given name, first name or names.</td></tr><tr><td><code>MiddleName</code></td><td>Element</td><td align="center">0..3</td><td>The middle name of the person name.</td></tr><tr><td><code>Surname</code></td><td>Element</td><td align="center">1</td><td>Family or last name.</td></tr><tr><td><code>NameSuffix</code></td><td>Element</td><td align="center">0..3</td><td>Name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.)</td></tr><tr><td><code>NameTitle</code></td><td>Element</td><td align="center">0..5</td><td>Degree or honours (e.g., Ph.D., M.D.)</td></tr><tr><td><code>Telephone</code></td><td>Element</td><td align="center">0..5</td><td>Information on a telephone number for the customer.</td></tr><tr><td><code>@PhoneLocationType</code></td><td>Integer</td><td align="center">0..1</td><td>Describes the location of the phone, such as Home, Office, Property Reservation Office, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> </a><a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Phone Location Type (PLT)</a>.</td></tr><tr><td><code>@PhoneTechType</code></td><td>Integer</td><td align="center">0..1</td><td>Indicates type of technology associated with this telephone number, such as Voice, Data, Fax, Pager, Mobile, TTY, etc. Refer to <a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Phone Technology Type (PTT)</a>.</td></tr><tr><td><code>@CountryAccessCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned by telecommunications authorities for international country access identifier.</td></tr><tr><td><code>@AreaCityCode</code></td><td>Integer</td><td align="center">0..1</td><td>Code assigned for telephones in a specific region, city, or area.</td></tr><tr><td><code>@PhoneNumber</code></td><td>Integer</td><td align="center">1</td><td>Telephone number assigned to a single location.</td></tr><tr><td><code>@FormattedInd</code></td><td>Boolean</td><td align="center">0..1</td><td>Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>@Remark</code></td><td>String</td><td align="center">0..1</td><td>A remark associated with the telephone number.</td></tr><tr><td><code>Address</code></td><td>Element</td><td align="center">0..5</td><td>Detailed information on an address for the contact person for the company.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the type of address (e.g. home, business, other). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#communication-location-type-clt">Communication Location Type (CLT)</a>.</td></tr><tr><td><code>AddressLine</code></td><td>String</td><td align="center">0..5</td><td>These lines will contain free-form address details.</td></tr><tr><td><code>CityName</code></td><td>String</td><td align="center">0..1</td><td>City (e.g., Dublin), town, or postal station.</td></tr><tr><td><code>StateProv</code></td><td>String</td><td align="center">0..1</td><td>State, province, or region name.</td></tr><tr><td><code>@StateCode</code></td><td>String</td><td align="center">0..1</td><td>The standard code or abbreviation for the state, province, or region.</td></tr><tr><td><code>PostalCode</code></td><td>Element</td><td align="center">0..1</td><td>Post Office Code number.</td></tr><tr><td><code>CountryName</code></td><td>Element</td><td align="center">0..1</td><td>Country name (e.g., Ireland).</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td align="center">0..1</td><td>ISO 3166 code for a country.</td></tr><tr><td><code>Email</code></td><td>Element</td><td align="center">0..5</td><td>Information on an email address for the contact person for the company.</td></tr><tr><td><code>@EmailType</code></td><td>Integer</td><td align="center">0..1</td><td>Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#email-address-type-eat">Email Address Type (EAT).</a></td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td align="center">0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>SpecialRequests</code></td><td>Element</td><td align="center">0..1</td><td></td></tr><tr><td><code>SpecialRequest</code></td><td>Element</td><td align="center">1..n</td><td>The SpecialRequest object indicates special requests for a particular guest, service or reservation.</td></tr><tr><td><code>@RequestCode</code></td><td>String</td><td align="center">0..1</td><td>This identifies a special request for this reservation and is typically hotel-specific.</td></tr><tr><td><code>@CodeContext</code></td><td>String</td><td align="center">0..1</td><td>Identifies the source authority for the RequestCode.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">0..1</td><td>Provides more information about the request code or describes requests that are yet uncoded.</td></tr><tr><td><code>Comments</code></td><td>Element</td><td align="center">0..1</td><td>Comment section relating to the ResGuest.</td></tr><tr><td><code>Comment</code></td><td>Element</td><td align="center">1</td><td>Comment details.</td></tr><tr><td><code>@Name</code></td><td>String</td><td align="center">0..1</td><td>Allows types of Comments to be differentiated.</td></tr><tr><td><code>@GuestViewable</code></td><td>Boolean</td><td align="center">1</td><td>This indicates that the comment can be seen by the guest and is necessary when two different types of comments are passed: one which is guest-viewable and one that isn’t.</td></tr><tr><td><code>Text</code></td><td>Element</td><td align="center">1</td><td>Textual description of Comments.</td></tr><tr><td><code>ServiceRPHs</code></td><td>Element</td><td align="center">0..1</td><td></td></tr><tr><td><code>ServiceRPH</code></td><td>Element</td><td align="center">1..n</td><td>This is a reference placeholder used as an index for a service to be associated with this guest.</td></tr><tr><td><code>@RPH</code></td><td>Integer</td><td align="center">1</td><td>Services ID</td></tr><tr><td><code>ArrivalTransport</code></td><td>Element</td><td align="center">0..1</td><td>Contains information about the arrival transportation for a guest</td></tr><tr><td><code>TransportInfo</code></td><td>Element</td><td align="center">1..n</td><td>Indicates transportation information for a guest.</td></tr><tr><td><code>@Type</code></td><td>String</td><td align="center">0..1</td><td>Method of conveyance of this guest. Values: Air, Rail, Bus, Boat, Private Auto, Other.</td></tr><tr><td><code>@ID</code></td><td>String</td><td align="center">0..1</td><td>Identifier of this transportation method (e.g., flight number).</td></tr><tr><td><code>@Time</code></td><td>DateTime</td><td align="center">0..1</td><td>Time of transportation. The local time of the location, indicated by the LocationCode.</td></tr><tr><td><code>DepartureTransport</code></td><td>Element</td><td align="center">0..1</td><td>Contains information about the departure transportation for a guest</td></tr><tr><td><code>TransportInfo</code></td><td>Element</td><td align="center">1..n</td><td>Indicates transportation information for a guest.</td></tr><tr><td><code>@Type</code></td><td>String</td><td align="center">0..1</td><td>Method of conveyance of this guest. Values: Air, Rail, Bus, Boat, Private Auto, Other.</td></tr><tr><td><code>@ID</code></td><td>String</td><td align="center">0..1</td><td>Identifier of this transportation method (e.g., flight number).</td></tr><tr><td><code>@Time</code></td><td>DateTime</td><td align="center">0..1</td><td>Time of transportation. The local time of the location, indicated by the LocationCode.</td></tr></tbody></table>

### ResGlobalInfo

```xml
<ResGlobalInfo>
	<HotelReservationIDs>
		<HotelReservationID ResID_Type="14" ResID_Value="123456789"/>
	</HotelReservationIDs>
	<!-- ... other elements and attributes have been omitted for brevity ... -->
</ResGlobalInfo>
```

<table><thead><tr><th width="254">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>ResGlobalInfo</code></td><td>Element</td><td align="center">1</td><td>Contains global information about the reservation.</td></tr><tr><td><code>HotelReservationIDs</code></td><td>Element</td><td align="center">0..1</td><td>Contains the <code>HotelReservationID</code>.</td></tr><tr><td><code>HotelReservationID</code></td><td>Element</td><td align="center">1</td><td>Reference number/string or PNR as supplied by the booking channel.</td></tr><tr><td><code>@ResID_Type</code></td><td>String</td><td align="center">1</td><td><p>ResID_Type is assigned values from the <a href="https://siteminder.atlassian.net/wiki/spaces/SMXAPPS/pages/1383301614/OTA+Code+List#Unique-ID-Type-(UIT)">UIT</a> code list. Some common uses:<br>18 - Other<br>10 – Hotel<br>13 – Internet Broker<br>14 – Reservation Broker<br>24 – Travel Agent PNR<br></p><p>For any other type of system, the implementing partners should agree on the appropriate code from the OpenTravel Alliance <a href="https://siteminder.atlassian.net/wiki/spaces/SMXAPPS/pages/1383301614/OTA+Code+List#Unique-ID-Type-(UIT)">UIT</a> code list.</p></td></tr><tr><td><code>@ResID_Value</code></td><td>String</td><td align="center">1</td><td>Actual reference number/string supplied by the booking channel (maximum 64 characters).</td></tr></tbody></table>

### **Guarantee (Reservation Level)**

```xml
<Guarantee GuaranteeCode="COMBINED_GUARANTEE" GuaranteeType="DepositRequired">
	<GuaranteesAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720">
				<CardHolderName>Leonard Woolf</CardHolderName>
				<CardNumber Mask="4021XXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber>
			</PaymentCard>
		</GuaranteeAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<Voucher SeriesCode="4555"/>
		</GuaranteeAccepted>
		<GuaranteeAccepted PaymentTransactionTypeCode="charge">
			<DirectBill DirectBill_ID="4981003"/>
		</GuaranteeAccepted>
	</GuaranteesAccepted>
	<GuaranteeDescription>
		<Text>Combined Guarantees Accepted (Platinum Membership)</Text>
	</GuaranteeDescription>
</Guarantee>
```

<table><thead><tr><th width="274">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Guarantee</code></td><td>Element</td><td align="center">0..1</td><td>Guarantee provided with the reservation. Used if no deposit is paid for the reservation.</td></tr><tr><td><code>@GuaranteeCode</code></td><td>String</td><td align="center">0..1</td><td>Guarantee Code</td></tr><tr><td><code>@GuaranteeType</code></td><td>String</td><td align="center">0..1</td><td><p>An enumerated type defining the guarantee to be applied to this reservation.</p><p><strong>Value:</strong><br>CC/DC/Voucher<br>Deposit<br>DepositRequired<br>GuaranteeRequired<br>None<br>PrePay<br>Profile</p></td></tr><tr><td><code>GuaranteesAccepted</code></td><td>Element</td><td align="center">0..1</td><td>Contains the details of accepted guarantees.</td></tr><tr><td><code>GuaranteeAccepted</code></td><td>Element</td><td align="center">1..n</td><td>Specific details of the accepted guarantee.</td></tr><tr><td><code>@PaymentTransactionTypeCode</code></td><td>String</td><td align="center">0..1</td><td><p>This is used to indicate either a <strong>charge</strong>, reserve (deposit) or refund.</p><p>charge: This indicates that an actual payment has been made.</p><p><strong>refund</strong>: This indicates that the payment amount of this PaymentDetail element is for a refund.</p><p><strong>reserve</strong>: This indicates that a hold for the indicated amount has been placed on a credit card or that a cash amount has been taken from the customer to guarantee final payment.</p></td></tr><tr><td><code>PaymentCard</code></td><td>Element</td><td align="center">0..1</td><td>Details of the payment card used for the guarantee.</td></tr><tr><td><code>@CardType</code></td><td>String</td><td align="center">0..1</td><td>Must be set to <code>1</code> (Credit Card).</td></tr><tr><td><code>@CardCode</code></td><td>String</td><td align="center">0..1</td><td>2-character code of the credit card issuer. Refer to <a href="/pages/Iqs1qAbBKAcBqhyyZHQt">Payment Card Provider Codes</a>.</td></tr><tr><td><code>@EffectiveDate</code></td><td>String</td><td align="center">0..1</td><td>Indicates the starting date (format <code>MMyy</code>).</td></tr><tr><td><code>@ExpireDate</code></td><td>String</td><td align="center">0..1</td><td>Expiry date of the credit card (format <code>MMyy</code>).</td></tr><tr><td><code>CardHolderName</code></td><td>Element</td><td align="center">0..1</td><td>Name of the cardholder.</td></tr><tr><td><code>CardNumber</code></td><td>Integer</td><td align="center">0..1</td><td>Secure information that supports PCI tokens, data masking and other encryption methods.</td></tr><tr><td><code>@Mask</code></td><td>String</td><td align="center">0..1</td><td>Masked data.</td></tr><tr><td><code>@Token</code></td><td>Integer</td><td align="center">0..1</td><td>Tokenized information.</td></tr><tr><td><code>@TokenProviderID</code></td><td>String</td><td align="center">0..1</td><td>Provider ID.</td></tr><tr><td><code>Voucher</code></td><td>Element</td><td align="center">0..1</td><td>Details of a paper or electronic document indicating prepayment.</td></tr><tr><td><code>@SeriesCode</code></td><td>Integer</td><td align="center">0..1</td><td>Identification of a series of coupons or vouchers identified by serial number(s).</td></tr><tr><td><code>DirectBill</code></td><td>Element</td><td align="center">0..1</td><td>Details of a direct billing arrangement.</td></tr><tr><td><code>@DirectBill_ID</code></td><td>Integer</td><td align="center">0..1</td><td>Identifier for the organization to be billed directly for travel services.</td></tr></tbody></table>

### **DepositPayments**

{% tabs %}
{% tab title="Credit Card " %}

```xml
<DepositPayments>
	<GuaranteePayment>
		<AcceptedPayments>
			<AcceptedPayment>
				<PaymentCard CardType="1" CardCode="MC" CardNumber="4321432143214321" SeriesCode="123" ExpireDate="1234">
					<CardHolderName>John Smith</CardHolderName>
				</PaymentCard>
			</AcceptedPayment>
		</AcceptedPayments>
		<AmountPercent Amount="90.00" CurrencyCode="EUR"/>
	</GuaranteePayment>
</DepositPayments>
```

{% endtab %}

{% tab title="Deposit Only" %}

```xml
<DepositPayments>
	<GuaranteePayment>
		<AmountPercent Amount="90.00" CurrencyCode="EUR"/>
	</GuaranteePayment>
</DepositPayments>
```

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="270">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>DepositPayments</code></td><td>Element</td><td align="center">0..1</td><td>Deposit provided with the reservation.</td></tr><tr><td><code>GuaranteePayment</code></td><td>Element</td><td align="center">1</td><td>Contains details of the payment guarantee for the reservation.</td></tr><tr><td><code>AcceptedPayments</code></td><td>Element</td><td align="center">0..1</td><td>Contains the accepted payment methods.</td></tr><tr><td><code>AcceptedPayment</code></td><td>Element</td><td align="center">1</td><td>Specific payment method accepted.</td></tr><tr><td><code>PaymentCard</code></td><td>Element</td><td align="center">1</td><td>Details of the payment card used for the guarantee.</td></tr><tr><td><code>@CardType</code></td><td>String</td><td align="center">0..1</td><td>Must be set to <code>1</code> (Credit Card).</td></tr><tr><td><code>@CardCode</code></td><td>String</td><td align="center">1</td><td>2-character code of the credit card issuer. Refer to <a href="https://developer.siteminder.com/sm-apis/additional-resources/reference-tables/payment-card-provider-codes">Payment Card Provider Codes</a>.</td></tr><tr><td><code>@CardNumber</code></td><td>String</td><td align="center">0..1</td><td>Actual credit card number.</td></tr><tr><td><code>@SeriesCode</code></td><td>String</td><td align="center">0..1</td><td>Security number of the card. Only passed through if the booking channel uses <a href="https://developer.siteminder.com/sm-apis/channels/siteconnect/api-reference/reservations/reservation-notification-emails">Reservation Notification Email</a>. Not stored for PCI compliance.</td></tr><tr><td><code>@ExpireDate</code></td><td>String</td><td align="center">0..1</td><td>Expiry date of the credit card (format <code>MMyy</code>).</td></tr><tr><td><code>CardHolderName</code></td><td>Element</td><td align="center">0..1</td><td>Name of the cardholder.</td></tr><tr><td><code>ThreeDomainSecurity</code></td><td>Element</td><td align="center">0..1</td><td>Contains 3DS (Three Domain Security) transaction details.</td></tr><tr><td><code>Results</code></td><td>Element</td><td align="center">1</td><td>Transaction results.</td></tr><tr><td><code>@ThreeDSVersion</code></td><td>Element</td><td align="center">1</td><td>3DS version used for authentication.</td></tr><tr><td><code>@XID</code></td><td>String</td><td align="center">0..1</td><td><p>Transaction identifier resulting from authentication processing.</p><p>When <code>ThreeDSVersion</code> = 1.x.x the transaction identifier MUST be provided in the <code>@XID</code> attribute.</p></td></tr><tr><td><code>@DSTransactionID</code></td><td>String</td><td align="center">0..1</td><td><p>Unique transaction identifier assigned by the Directory Server (DS) to identify a single transaction.</p><p>When <code>ThreeDSVersion</code> = 2.x.x the transaction identifier MUST be provided in the <code>@DSTransactionID</code> attribute.</p></td></tr><tr><td><code>@CAVV</code></td><td>String</td><td align="center">0..1</td><td>Cardholder Authentication Verification Value (CAVV); Authentication Verification Value (AVV); Universal Cardholder Authentication Field (UCAF)</td></tr><tr><td><code>@ECI</code></td><td>String</td><td align="center">1</td><td>Refer to <a href="https://developer.siteminder.com/sm-apis/additional-resources/reference-tables/strong-customer-authentication-codes#electronic-commerce-indicator">Electronic Commerce Indicator</a>.</td></tr><tr><td><code>@PAResStatus</code></td><td>String</td><td align="center">0..1</td><td>Refer to <a href="https://developer.siteminder.com/sm-apis/additional-resources/reference-tables/strong-customer-authentication-codes#transactions-status-result-identifier">Transactions Status Result Identifier</a>.</td></tr><tr><td><code>@SignatureVerification</code></td><td>String</td><td align="center">0..1</td><td>Refer to <a href="https://developer.siteminder.com/sm-apis/additional-resources/reference-tables/strong-customer-authentication-codes#transaction-signature-status">Transaction Signature Status</a>.</td></tr><tr><td><code>@Enrolled</code></td><td>String</td><td align="center">0..1</td><td>Refer to <a href="https://developer.siteminder.com/sm-apis/additional-resources/reference-tables/strong-customer-authentication-codes#status-of-authentication">Status of Authentication</a>.</td></tr><tr><td><code>TPA_Extensions</code></td><td>Element</td><td align="center">0..1</td><td>Additional elements for the transaction.</td></tr><tr><td><code>VirtualCreditCard</code></td><td>Element</td><td align="center">1</td><td>Denotes that the payment card is a virtual credit card.</td></tr><tr><td><code>@isVCC</code></td><td>Boolean</td><td align="center">1</td><td>Must be set to <code>true</code>.</td></tr><tr><td><code>@VCCActivationDate</code></td><td>Date</td><td align="center">0..1</td><td>Date from when the card can be charged.</td></tr><tr><td><code>@VCCDeactivationDate</code></td><td>Date</td><td align="center">0..1</td><td>Date from when the card is no longer chargeable.</td></tr><tr><td><code>@VCCCurrentBalance</code></td><td>Decimal</td><td align="center">0..1</td><td>Total amount that can be charged to the card. If the reservation is modified or canceled, an updated balance should be sent indicating the new total amount that can be charged to the card. If the amount changes to <code>0</code> as a result of cancellation, the cancellation should be sent with a <code>0</code> balance.</td></tr><tr><td><code>@VCCCurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Must be included if there is <code>@VCCCurrentBalance</code>. Use ISO 4217 currency codes.</td></tr><tr><td><code>AmountPercent</code></td><td>Element</td><td align="center">1</td><td>Mandatory when something is passed in the <code>DepositPayment</code> element.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">1</td><td>Amount charged as deposit.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">1</td><td>Use ISO 4217 currency codes.</td></tr></tbody></table>

### Total

```xml
<Total CurrencyCode="EUR" AmountBeforeTax="558.00" AmountAfterTax="620.00">
	<Taxes>
		<Tax Type="inclusive" Code="35" Amount="62.00" CurrencyCode="EUR"/>
	</Taxes>
	<TPA_Extensions>
		<Total includesCommission="true"/>
	</TPA_Extensions>
</Total>
```

<table><thead><tr><th width="254">Element / @Attribute</th><th width="112">Type</th><th width="58" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Total</code></td><td>Element</td><td align="center">1</td><td>Total amount for the reservation. This includes all <code>RoomStays</code> and any additional fees or charges that apply.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>@AmountBeforeTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>@AmountAfterTax</code></td><td>Decimal</td><td align="center">0..1</td><td>At least one of <code>AmountAfterTax</code> or <code>AmountBeforeTax</code> must be set.</td></tr><tr><td><code>Taxes</code></td><td>Element</td><td align="center">0..1</td><td>Contains details of the taxes applied.</td></tr><tr><td><code>Tax</code></td><td>Element</td><td align="center">1</td><td>Contains specific tax information.</td></tr><tr><td><code>@Type</code></td><td>String</td><td align="center">0..1</td><td><p>Indicates whether the tax is:</p><p><code>inclusive</code></p><p><code>exclusive</code></p><p><code>cumulative</code></p></td></tr><tr><td><code>@Code</code></td><td>String</td><td align="center">0..1</td><td>Indicates the specific tax or fee that is being transferred. Refer to <a href="/pages/25577kjBcjKCgYHcsgBY">Fee Tax Type (FTT)</a>.</td></tr><tr><td><code>@Amount</code></td><td>Decimal</td><td align="center">0..1</td><td>Tax amount applied.</td></tr><tr><td><code>@CurrencyCode</code></td><td>String</td><td align="center">0..1</td><td>Use ISO 4217 currency codes.</td></tr><tr><td><code>TPA_Extensions</code></td><td>Element</td><td align="center">0..1</td><td>Indicates if the reservation is using the <code>Net</code> amount or <code>Gross</code> amount. Required if the booking channel uses the <code>Commission Percentage</code> feature.</td></tr><tr><td><code>Total</code></td><td>Element</td><td align="center">1</td><td>Contains the <code>includesCommission</code> information.</td></tr><tr><td><code>@includesCommission</code></td><td>Boolean</td><td align="center">1</td><td><p><code>false</code> uses Net Amount.</p><p><code>true</code> uses Gross Amount.</p><p>When <code>includesCommission</code> is set, all RoomRate and RoomStay level totals will be considered as Net or Gross amounts based on this value.</p></td></tr></tbody></table>

### HotelReservationIDs

```xml
<HotelReservationIDs>
	<HotelReservationID ResID_Type="10" ResID_Value="BDC3685170919" ResID_Source="TESTPMS_GRHP6597"/>
</HotelReservationIDs>
```

<table><thead><tr><th width="242">Element / @Attribute</th><th width="103">Type</th><th width="74">M</th><th>Description</th></tr></thead><tbody><tr><td><code>HotelReservationIDs</code></td><td>Element</td><td>0..1</td><td>A Collection of HotelReservationID objects for a given reservation.</td></tr><tr><td><code>HotelReservationID</code></td><td>Element</td><td>0..n</td><td>The HotelReservationID object contains various unique (ReservationID) and non unique (ConfirmationID, CancellationID) identifiers that the trading partners associate with a given reservation.</td></tr><tr><td><code>@ResID_Type</code></td><td>Integer</td><td>1</td><td>Defines the type of Reservation ID (e.g. reservation number, cancellation number). Refer to<a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#unique-id-type-uit"> Unique ID Type (UIT)</a>.<br><br>22 - ERSP (Such as SiteMinder)</td></tr><tr><td><code>@ResID_Value</code></td><td>String</td><td>1</td><td>This is the actual value associated with ResID_Type</td></tr><tr><td><code>@ResID_Source</code></td><td>String</td><td>0..1</td><td>A unique identifier to indicate the source system which generated the ResID_Value.</td></tr></tbody></table>

### Profiles

```xml
<Profiles>
	<ProfileInfo>
		<UniqueID Type="1" ID="8943112" ID_Context="PROPERTY"/>
		<Profile ProfileType="1" ShareAllOptOutInd="true" ShareAllMarketInd="false">
			<Customer VIP_Indicator="true" CustomerValue="Platinum" BirthDate="1966-07-16">
				<PersonName NameType="2" Language="en">
					<NamePrefix>Mrs.</NamePrefix>
					<GivenName>Ginny</GivenName>
					<MiddleName>Adeline</MiddleName>
					<Surname>Woolf</Surname>
					<NameSuffix>Jr.</NameSuffix>
					<NameTitle>Ph.D.</NameTitle>
				</PersonName>
				<Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="61" AreaCityCode="4" PhoneNumber="13855956" Remark="Active" FormattedInd="false" DefaultInd="true"/>
				<Email DefaultInd="true" EmailType="1">Virginia.Woolf@hotmail.com</Email>
				<Address Type="2">
					<AddressLine>125 Pitt Street</AddressLine>
					<CityName>Sydney</CityName>
					<PostalCode>2000</PostalCode>
					<StateProv StateCode="NSW">New South Wales</StateProv>
					<CountryName Code="AU">Australia</CountryName>
					<CompanyName Code="DLW">Dalloway</CompanyName>
					<AddresseeName NameType="2" Language="en">
						<NamePrefix>Mrs.</NamePrefix>
						<GivenName>Ginny</GivenName>
						<MiddleName>Adeline</MiddleName>
						<Surname>Woolf</Surname>
						<NameSuffix>Jr.</NameSuffix>
						<NameTitle>Ph.D.</NameTitle>
					</AddresseeName>
				</Address>
				<RelatedTraveler Relation="Security" BirthDate="1958-12-01">
					<UniqueID Type="1" ID="8943125" ID_Context="Platinum_Member"/>
					<PersonName NameType="2" Language="en">
						<NamePrefix>Mr.</NamePrefix>
						<GivenName>Charles</GivenName>
						<MiddleName>Hank</MiddleName>
						<Surname>Bukowski</Surname>
						<NameSuffix>Sr.</NameSuffix>
						<NameTitle>D.Lett.</NameTitle>
					</PersonName>
				</RelatedTraveler>
				<CustLoyalty ProgramID="PLATINUM5+5" MembershipID="8943112" LoyalLevel="VIP" LoyalLevelCode="10" SignupDate="2014-08-08" EffectiveDate="2014-08-08" ExpireDate="2024-08-08" Remark="5+5 DEAL (Sign up for 5 years of Platinum membership, get another 5 years for free)"/>
			</Customer>
			<CompanyInfo>
				<CompanyName Code="DLW">Dalloway</CompanyName>
				<AddressInfo Type="2">
					<AddressLine>88 Pall Mall</AddressLine>
					<CityName>London</CityName>
					<PostalCode>SW1Y 5ER</PostalCode>
					<StateProv StateCode="ENG">England</StateProv>
					<CountryName Code="UK">United Kingdom</CountryName>
				</AddressInfo>
				<TelephoneInfo PhoneLocationType="9" PhoneTechType="1" CountryAccessCode="44" AreaCityCode="20" PhoneNumber="23983039" Remark="Only active during business hours: 8AM-8PM BST" FormattedInd="false" DefaultInd="true"/>
				<Email DefaultInd="true" EmailType="2">info@dalloway.co.uk</Email>
				<ContactPerson>
					<PersonName NameType="3" Language="en-UK">
						<NamePrefix>Mr.</NamePrefix>
						<GivenName>Warren</GivenName>
						<MiddleName>Glass</MiddleName>
						<Surname>Smith</Surname>
						<NameSuffix>II</NameSuffix>
						<NameTitle>M.D.</NameTitle>
					</PersonName>
					<Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="44" AreaCityCode="20" PhoneNumber="28596654" Remark="Active" FormattedInd="false" DefaultInd="true"/>
					<Address Type="2">
						<AddressLine>88 Pall Mall</AddressLine>
						<CityName>London</CityName>
						<PostalCode>SW1Y 5ER</PostalCode>
						<StateProv StateCode="ENG">England</StateProv>
						<CountryName Code="UK">United Kingdom</CountryName>
					</Address>
					<Email DefaultInd="true" EmailType="2">Phillip.Glass-Smith@dalloway.co.uk</Email>
				</ContactPerson>
			</CompanyInfo>
		</Profile>
	</ProfileInfo>
</Profiles>
```

<table><thead><tr><th width="230">Element / @Attribute</th><th width="116">Type</th><th width="63">M</th><th>Description</th></tr></thead><tbody><tr><td><code>Profiles</code></td><td>Element</td><td>0..1</td><td></td></tr><tr><td><code>ProfileInfo</code></td><td>Element</td><td>1..n</td><td></td></tr><tr><td><code>UniqueID</code></td><td>Element</td><td>0..9</td><td>A unique ID for a profile. This element can repeat to accommodate multiple unique IDs for a single profile across multiple systems.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td>1</td><td>A reference to the type of object defined by the UniqueID element. Refer to <a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614/OTA+Code+Lists#Profile-Type-(PRT)">Unique ID Type (UIT)</a>.</td></tr><tr><td><code>@ID</code></td><td>Integer</td><td>1</td><td>A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</td></tr><tr><td><code>@ID_Context</code></td><td>String</td><td>0..1</td><td>Used to identify the source of the identifier.</td></tr><tr><td><code>Profile</code></td><td>Element</td><td>1</td><td>Provides detailed information regarding either a company or a customer profile.</td></tr><tr><td><code>@ProfileType</code></td><td>Integer</td><td>1</td><td>Code to specify a profile such as Customer, Corporation, etc. Refer to <a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614#OTACodeLists-ProfileType(PRT)">Profile Type (PRT)</a>.</td></tr><tr><td><code>@ShareAllOptOutInd</code></td><td>Boolean</td><td>1</td><td>When 'true', a customer has explicitly opted out of marketing communication. This is used in combination with the ShareAllMarketInd and only one of these attributes should have a value of 'true'.</td></tr><tr><td><code>@ShareAllMarketInd</code></td><td>Boolean</td><td>1</td><td>Permission for sharing all data in profile for marketing purposes. A 'true' value indicates that the customer has chosen to opt-in to marketing communication. This is used in combination with the ShareAllOptOutInd and only one of these attributes should have a value of 'true'.</td></tr><tr><td><code>Customer</code></td><td>Element</td><td>1</td><td>Detailed customer information for this profile.</td></tr><tr><td><code>@VIP_Indicator</code></td><td>Boolean</td><td>0..1</td><td>If true, indicates a very important person.</td></tr><tr><td><code>@CustomerValue</code></td><td>String</td><td>0..1</td><td>The supplier's ranking of the customer (e.g., VIP, numerical ranking).</td></tr><tr><td><code>@BirthDate</code></td><td>DateTime</td><td>0..1</td><td>The customer’s birthday information.</td></tr><tr><td><code>PersonName</code></td><td>Element</td><td>0..1</td><td>Detailed name information for the customer.</td></tr><tr><td><code>@Language</code></td><td>String</td><td>0..1</td><td>The language code for which the name data is represented.</td></tr><tr><td><code>@NameType</code></td><td>Integer</td><td>0..1</td><td>Former, Nickname, Alternate, etc. Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#name-type-nam">Name Type (NAM)</a>.</td></tr><tr><td><code>NamePrefix</code></td><td>Element</td><td>0..3</td><td>Salutation of honorific (e.g. Mr., Mrs., Ms., Miss, Dr.)</td></tr><tr><td><code>GivenName</code></td><td>Element</td><td>0..5</td><td>Given name, first name or names.</td></tr><tr><td><code>MiddleName</code></td><td>Element</td><td>0..3</td><td>The middle name of the person name.</td></tr><tr><td><code>Surname</code></td><td>Element</td><td>1</td><td>Family or last name.</td></tr><tr><td><code>NameSuffix</code></td><td>Element</td><td>0..3</td><td>Name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.)</td></tr><tr><td><code>NameTitle</code></td><td>Element</td><td>0..5</td><td>Degree or honours (e.g., Ph.D., M.D.)</td></tr><tr><td><code>Telephone</code></td><td>Element</td><td>0..5</td><td>Information on a telephone number for the customer.</td></tr><tr><td><code>@PhoneLocationType</code></td><td>Integer</td><td>0..1</td><td>Describes the location of the phone, such as Home, Office, Property Reservation Office, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> </a><a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Phone Location Type (PLT)</a>.</td></tr><tr><td><code>@PhoneTechType</code></td><td>Integer</td><td>0..1</td><td>Indicates the type of technology associated with this telephone number, such as Voice, Data, Fax, Pager, Mobile, TTY, etc. Refer to<a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701"> Phone Technology Type (PTT)</a>.</td></tr><tr><td><code>@PhoneNumber</code></td><td>String</td><td>1</td><td>Telephone number assigned to a single location.</td></tr><tr><td><code>@CountryAccessCode</code></td><td>Integer</td><td>0..1</td><td>Code assigned by telecommunications authorities for international country access identifier.</td></tr><tr><td><code>@AreaCityCode</code></td><td>Integer</td><td>0..1</td><td>Code assigned for telephones in a specific region, city, or area.</td></tr><tr><td><code>@FormattedInd</code></td><td>Boolean</td><td>0..1</td><td>Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td>0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>@Remark</code></td><td>String</td><td>0..1</td><td>A remark associated with the telephone number.</td></tr><tr><td><code>Email</code></td><td>Element</td><td>0..5</td><td>Information on an email address for the customer.</td></tr><tr><td><code>@EmailType</code></td><td>Integer</td><td>0..1</td><td>Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to <a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Email Address Type (EAT)</a>.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td>0..1</td><td>When true, indicates a default value should be used.</td></tr><tr><td><code>Address</code></td><td>Element</td><td>0..5</td><td>Detailed information on an address for the customer.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td>0..1</td><td>Defines the type of address (e.g. home, business, other). Refer to <a href="https://developer.siteminder.com/siteminder-apis/additional-resources/reference-tables/ota-codes-list#communication-location-type-clt">Communication Location Type (CLT)</a>.</td></tr><tr><td><code>AddressLine</code></td><td>Element</td><td>0..5</td><td>These lines will contain free form address details.</td></tr><tr><td><code>CityName</code></td><td>Element</td><td>0..1</td><td>City (e.g., Dublin), town, or postal station.</td></tr><tr><td><code>StateProv</code></td><td>Element</td><td>0..1</td><td>State, province, or region name.</td></tr><tr><td><code>@StateCode</code></td><td>String</td><td>0..1</td><td>The standard code or abbreviation for the state, province, or region.</td></tr><tr><td><code>PostalCode</code></td><td>Element</td><td>0..1</td><td>Post Office Code number.</td></tr><tr><td><code>CountryName</code></td><td>Element</td><td>0..1</td><td>Country name (e.g., Ireland).</td></tr><tr><td><code>@Code</code></td><td>String</td><td>0..1</td><td>ISO 3166 code for a country.</td></tr><tr><td><code>Email</code></td><td>Element</td><td>0..5</td><td>Information on an email address for the contact person for the company.</td></tr><tr><td><code>@EmailType</code></td><td>Integer</td><td>0..1</td><td>Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to <a href="https://siteminder.atlassian.net/wiki/pages/resumedraft.action?draftId=199042701">Email Address Type (EAT)</a>.</td></tr><tr><td><code>@DefaultInd</code></td><td>Boolean</td><td>0..1</td><td>When true, indicates a default value should be used.</td></tr></tbody></table>

### TotalCommission

```xml
<TotalCommissions>
	<UniqueID Type="5" ID="11395LYN"/>
	<CommissionPayableAmount CurrencyCode="AUD" Amount="25.00"/>
	<Comment>
		<Text>Booking agent reservation commission - flat rate.</Text>
	</Comment>
</TotalCommissions>
```

<table><thead><tr><th width="214">Element / @Attribute</th><th width="98">Type</th><th width="60">M</th><th>Description</th></tr></thead><tbody><tr><td><code>TotalCommissions</code></td><td>Element</td><td>0..1</td><td>Contains details pertaining to commissions.</td></tr><tr><td><code>UniqueID</code></td><td>Element</td><td>0..1</td><td>Identifies the recipient of the commission.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td>1</td><td>A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</td></tr><tr><td><code>@ID</code></td><td>String</td><td>1</td><td>A reference to the type of object defined by the UniqueID element. Refer to <a href="https://siteminder.atlassian.net/wiki/spaces/SMXPMS/pages/234717614/OTA+Code+Lists#Profile-Type-(PRT)">Unique ID Type (UIT)</a>.</td></tr><tr><td><code>CommissionPayableAmount</code></td><td>Element</td><td>0..1</td><td>The amount of commission to be paid.</td></tr><tr><td><code>@CurrencyCode</code></td><td></td><td>0..1</td><td>An ISO 4217 (3) alpha character code that specifies a monetary unit.</td></tr><tr><td><code>@Amount</code></td><td></td><td>0..1</td><td>A monetary amount.</td></tr><tr><td><code>Comment</code></td><td>Element</td><td>0..1</td><td></td></tr><tr><td><code>Text</code></td><td>Element</td><td>1</td><td>Text related to the commission.</td></tr></tbody></table>

### BasicPropertyInfo

{% code overflow="wrap" %}

```xml
<BasicPropertyInfo ChainCode="GLDNRIV" BrandCode="GRH-P" HotelCode="GRHP6597" HotelName="Golden River Hotel - Perth"/>
```

{% endcode %}

<table><thead><tr><th width="226">Element / @Attribute</th><th width="104">Type</th><th width="71">M</th><th>Description</th></tr></thead><tbody><tr><td><code>BasicPropertyInfo</code></td><td>Element</td><td>1</td><td>Property information for the reservation.</td></tr><tr><td><code>@ChainCode</code></td><td>String</td><td>0..1</td><td>The code that identifies a hotel chain or management group. The hotel chain code is decided between vendors.</td></tr><tr><td><code>@BrandCode</code></td><td>String</td><td>0..1</td><td>A code that identifies the brand or flag of a hotel, often used for independently owned or franchised properties that are known by a specific brand.</td></tr><tr><td><code>@HotelCode</code></td><td>String</td><td>1</td><td>The code that uniquely identifies a single hotel property. The hotel code is decided between vendors.</td></tr><tr><td><code>@HotelName</code></td><td>String</td><td>0..1</td><td>A text field used to communicate the proper name of the hotel.</td></tr></tbody></table>

## **Confirmation Response**

{% tabs %}
{% tab title="Success" %}

```xml
<soap-env:Envelope
	xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
	<soap-env:Body
		xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
		<OTA_HotelResNotifRS
			xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="cdcd51f2-769a-5a1d-841c-e6204d811f5c" TimeStamp="2025-05-08T00:56:53Z" Version="1.0">
			<Success/>
			<HotelReservations>
				<HotelReservation>
					<UniqueID ID="LH123456789"/>
					<ResGlobalInfo>
						<HotelReservationIDs>
							<HotelReservationID ResID_Type="10" ResID_Value="LH123456789"/>
						</HotelReservationIDs>
					</ResGlobalInfo>
				</HotelReservation>
			</HotelReservations>
		</OTA_HotelResNotifRS>
	</soap-env:Body>
</soap-env:Envelope>
```

{% endtab %}

{% tab title="Warning" %}

```xml
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
	<soap-env:Body xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
		<OTA_HotelResNotifRS xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="cdcd51f2-769a-5a1d-841c-e6204d811f5c" TimeStamp="2025-05-08T00:56:53Z" Version="1.0">
			<Success/>
			<Warnings>
				<Warning Type="10" Code="310">Missing last name</Warning>
			</Warnings>
			<HotelReservations>
				<HotelReservation>
					<UniqueID ID="LH123456789"/>
					<ResGlobalInfo>
						<HotelReservationIDs>
							<HotelReservationID ResID_Type="10" ResID_Value="LH123456789"/>
						</HotelReservationIDs>
					</ResGlobalInfo>
				</HotelReservation>
			</HotelReservations>
		</OTA_HotelResNotifRS>
	</soap-env:Body>
</soap-env:Envelope>
```

{% endtab %}

{% tab title="Error" %}

```xml
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
	<soap-env:Body xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
		<OTA_HotelResNotifRS xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" TimeStamp="2025-08-01T09:30:47+08:00" EchoToken="cdcd51f2-769a-5a1d-841c-e6204d811f5c">
			<Errors>
				<Error Type="6" Code="375">Hotel not active</Error>
			</Errors>
		</OTA_HotelResNotifRS>
	</soap-env:Body>
</soap-env:Envelope> 
```

**Review the** [**Error Handling**](https://developer.siteminder.com/siteminder-apis/~/revisions/QlDdwRgaXl250StsN4qe/apps/introduction/siteminder-exchange/technical-guide/error-handling) **page.**
{% endtab %}

{% tab title="Error" %}

```xml
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Body xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
        <OTA_HotelResNotifRS xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" TimeStamp="2025-08-01T09:30:47+08:00" EchoToken="abc123-unique">
          <Errors>
            <Error Type="6" Code="392">Hotel not found for HotelCode=XXXXXX</Error>
          </Errors>
        </OTA_HotelResNotifRS>
    </soap-env:Body>
</soap-env:Envelope>
```

**Review the** [**Error Handling**](https://developer.siteminder.com/siteminder-apis/~/revisions/QlDdwRgaXl250StsN4qe/apps/introduction/siteminder-exchange/technical-guide/error-handling) **page.**
{% endtab %}
{% endtabs %}

<table><thead><tr><th width="257">Element / @Attribute</th><th width="108">Type</th><th width="77" align="center">M</th><th>Description</th></tr></thead><tbody><tr><td><code>OTA_HotelResNotifRS</code></td><td>Element</td><td align="center">1</td><td>Root element for the response.</td></tr><tr><td><code>@xmlns</code></td><td>String</td><td align="center">1</td><td>Defines the XML namespace for the request. Will be set to <code>http://www.opentravel.org/OTA/2003/05</code></td></tr><tr><td><code>@EchoToken</code></td><td>String</td><td align="center">1</td><td>Unique identifier for the request, used to match requests and responses.</td></tr><tr><td><code>@TimeStamp</code></td><td>DateTime</td><td align="center">1</td><td>Time when the response was generated.</td></tr><tr><td><code>@Version</code></td><td>String</td><td align="center">1</td><td>Specifies the API version. Will be set to <code>1.0</code>.</td></tr><tr><td><code>@ResResponseType</code></td><td>String</td><td align="center">0..1</td><td>Given that the OTA_HotelResNotifRQ message is used for additions, modifications and cancellations, this attribute is used to replicate whether the original message was an addition, a modification or a cancellation and does not refer to the status of the transaction itself but rather to the nature of the original message. The only three enumerations allowed will therefore be: Committed, Modified and Cancelled. In this case, Committed would be used.</td></tr><tr><td><code>Errors</code></td><td>Element</td><td align="center">0..1</td><td>Indicates an error occurred during the processing of the request.<br><strong>Review the</strong> <a href="https://developer.siteminder.com/siteminder-apis/~/revisions/QlDdwRgaXl250StsN4qe/apps/introduction/siteminder-exchange/technical-guide/error-handling"><strong>Error Handling</strong></a> <strong>page.</strong></td></tr><tr><td><code>Error</code></td><td>Element</td><td align="center">1..99</td><td>Single error information containing free text.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">1</td><td>Mandatory in OTA. Refers to OpenTravel Alliance EWT list (error warning type).</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td align="center">0..1</td><td>Refers to OpenTravel Alliance list ERR. Should be used wherever possible.</td></tr><tr><td><code>@RecordID</code></td><td>Integer</td><td align="center">0..1</td><td>If the receiving system is able to identify within a batch of reservations which reservation failed, the uniqueID of the rejected reservation should be reported here.</td></tr><tr><td><code>Success</code></td><td>Element</td><td align="center">1</td><td>Mandatory if no Errors were sent. This is the annotation that the reservation batch was received successfully. It could be combined with warning messages if some of the reservations in the batch had issues.</td></tr><tr><td><code>Warnings</code></td><td>Element</td><td align="center">0..99</td><td>Contains details of the warning returned.</td></tr><tr><td><code>Warning</code></td><td>Element</td><td align="center">0..99</td><td>Can be used in conjunction with a Success message.</td></tr><tr><td><code>@Type</code></td><td>Integer</td><td align="center">1</td><td>Refers to OpenTravel Alliance EWT list (error warning type).</td></tr><tr><td><code>@Code</code></td><td>Integer</td><td align="center">0..1</td><td>Refers to OpenTravel Alliance list ERR. Should be used wherever possible.</td></tr><tr><td><code>@RecordID</code></td><td>Integer</td><td align="center">0..1</td><td>If the receiving system is able to identify within a batch of reservations which reservation has a warning, the uniqueID of that reservation should be reported here.</td></tr><tr><td><code>HotelReservations</code></td><td>Element</td><td align="center">1</td><td>Contains details of the reservation made.</td></tr><tr><td><code>HotelReservation</code></td><td>Element</td><td align="center">1</td><td>Individual hotel reservation information.</td></tr><tr><td><code>@ResStatus</code></td><td>String</td><td align="center">0..1</td><td><p>Indicates the current status of the reservation. Valid values are dependent on the roles:</p><p>Reserved</p><p>Waitlisted</p><p>In-house</p><p>Checked-Out</p></td></tr><tr><td><code>UniqueID</code></td><td>Element</td><td align="center">1</td><td>Unique identifier for the reservation.</td></tr><tr><td><code>@Type</code></td><td>String</td><td align="center">0..1</td><td>Type is assigned values from the <a href="https://siteminder.atlassian.net/wiki/spaces/SMXAPPS/pages/1383301614/OTA+Code+List#Unique-ID-Type-(UIT)">UIT</a> code list. If the original system was a CRS:<br>Type = 14 – Reservation<br>ID is the actual confirmation number<br>If it was a PMS: Type = 10 - Hotel</td></tr><tr><td><code>@ID</code></td><td>String</td><td align="center">1</td><td>Actual confirmation number.</td></tr><tr><td><code>HotelReservationIDs</code></td><td>Element</td><td align="center">1</td><td></td></tr><tr><td><code>HotelReservationID</code></td><td>Element</td><td align="center">1</td><td>This is the confirmation number associated by the system that received the booking.</td></tr><tr><td><code>@ResID_Type</code></td><td>Integer</td><td align="center">1</td><td><p>ResID_Type is assigned values from the <a href="https://siteminder.atlassian.net/wiki/spaces/SMXAPPS/pages/1383301614/OTA+Code+List#Unique-ID-Type-(UIT)">UIT</a> code list. Some common uses:<br>18 - Other<br>10 – Hotel<br>13 – Internet Broker<br>14 – Reservation Broker<br>24 – Travel Agent PNR<br></p><p>For any other type of system, the implementing partners should agree on the appropriate code from the OpenTravel Alliance <a href="https://siteminder.atlassian.net/wiki/spaces/SMXAPPS/pages/1383301614/OTA+Code+List#Unique-ID-Type-(UIT)">UIT</a> code list.</p></td></tr><tr><td><code>@ResID_Value</code></td><td>String</td><td align="center">1</td><td>ResID_Value is the actual confirmation number.</td></tr><tr><td><code>@ResID_Source</code></td><td>String</td><td align="center">0..1</td><td>A unique identifier to indicate the source system that generated the ResID_Value.</td></tr><tr><td><code>@ForGuest</code></td><td>Integer</td><td align="center">0..1</td><td>When 1, the confirmation number is given to the guest. This number should be searchable by the destination.</td></tr></tbody></table>

## Reservation XML Samples

<details>

<summary>Maximum Content</summary>

The maximum content XML sample is for reference purposes only and it is an example of the maximum amount of data that your system could receive from SMX.

{% code overflow="wrap" expandable="true" %}

```xml
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header><wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><wsse:UsernameToken><wsse:Username>USERNAME</wsse:Username><wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password></wsse:UsernameToken></wsse:Security></SOAP-ENV:Header><SOAP-ENV:Body><OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" EchoToken="cc3048b5-55ca-4d77-b316-cb8e769c1381" TimeStamp="2017-09-19T18:13:53+00:00"><HotelReservations><HotelReservation ResStatus="Reserved" CreateDateTime="2017-09-19T18:02:44+00:00" CreatorID="LINDA-RESAGENT" LastModifyDateTime="2017-09-19T18:13:51+00:00" LastModifierID="651651651651"><POS><Source><RequestorID ID="TESTPMS"/></Source><Source><BookingChannel Type="4" Primary="true"><CompanyName Code="Code1">CompanyName0</CompanyName></BookingChannel></Source></POS><UniqueID ID="BDC-3685569477"/><RoomStays><RoomStay MarketCode="Corporate" SourceOfBusiness="Radio" PromotionCode="STAYNSAVE15"><RoomTypes><RoomType RoomType="Deluxe" RoomTypeCode="DLX" RoomCategory="4" RoomID="1501" NonSmoking="true" Configuration="King Split + Single Bed"><RoomDescription><Text>Deluxe Room with a lovely view over the harbour and a seperate lounge with 50" LED TV</Text></RoomDescription><AdditionalDetails><AdditionalDetail Type="4" Code="CORNERROOM"><DetailDescription><Text>This room is a Deluxe Corner Room</Text></DetailDescription></AdditionalDetail></AdditionalDetails></RoomType></RoomTypes><RatePlans><RatePlan RatePlanCode="WKGPKG" EffectiveDate="2017-12-01" ExpireDate="2017-12-03" RatePlanName="Weekend Package"><RatePlanDescription><Text>Weekend Package includes wine, chocolates, champagne on arrival and late checkout at 3PM</Text></RatePlanDescription><RatePlanInclusions TaxInclusive="true" ServiceFeeInclusive="false"><RatePlanInclusionDescription><Text>Champagne on arrival, English Breakfast, Chocolates and 3PM Checkout </Text></RatePlanInclusionDescription></RatePlanInclusions><MealsIncluded MealPlanIndicator="true" MealPlanCodes="7"/><AdditionalDetails><AdditionalDetail Type="12" Code="WKDNDPKGINFO"><DetailDescription><Text>Some parts of this package (such as wine selection) will need to be arranged with guest prior to check-in</Text></DetailDescription></AdditionalDetail></AdditionalDetails></RatePlan></RatePlans><RoomRates><RoomRate InvBlockCode="HIGHROLL" NumberOfUnits="1" RoomID="1501" RoomTypeCode="DLX" RatePlanCode="WKGPKG" RatePlanCategory="Consumer Packages" EffectiveDate="2017-12-01" ExpireDate="2017-12-03"><Rates><Rate EffectiveDate="2017-12-01" ExpireDate="2017-12-02" UnitMultiplier="1"><Base AmountBeforeTax="100.00" AmountAfterTax="110.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="10.00"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes></Base><Total AmountBeforeTax="120.00" AmountAfterTax="132.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="12.00"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes></Total></Rate><Rate EffectiveDate="2017-12-02" ExpireDate="2017-12-03" UnitMultiplier="1"><Base AmountBeforeTax="80.00" AmountAfterTax="88.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="8.00"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes></Base><Total AmountBeforeTax="100.00" AmountAfterTax="110.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="10.00"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes></Total></Rate></Rates><ServiceRPHs><ServiceRPH RPH="1"/></ServiceRPHs></RoomRate></RoomRates><GuestCounts><GuestCount AgeQualifyingCode="10" Age="51" Count="1" AgeBucket="AdultOver50"/><GuestCount AgeQualifyingCode="10" Age="44" Count="1" AgeBucket="AdultOver40"/></GuestCounts><TimeSpan Start="2017-12-01" End="2017-12-03"/><Guarantee GuaranteeCode="COMBINED_GUARANTEE" GuaranteeType="DepositRequired"><GuaranteesAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720"><CardHolderName>Leonard Woolf</CardHolderName><CardNumber Mask="4021XXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber></PaymentCard></GuaranteeAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><Voucher SeriesCode="4555"/></GuaranteeAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><DirectBill DirectBill_ID="4981003"/></GuaranteeAccepted></GuaranteesAccepted><GuaranteeDescription><Text>Combined Guarantees Accepted (Platinum Membership)</Text></GuaranteeDescription></Guarantee><DepositPayments><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720"><CardHolderName>Leonard Woolf</CardHolderName><CardNumber Mask="4021XXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber></PaymentCard></AcceptedPayment></AcceptedPayments><AmountPercent Percent="30" CurrencyCode="AUD" Amount="64.52" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="1.29"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="2"><TaxDescription><Text>Credit Card surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>30% deposit (of the total cost of the stay) will be charged to card holder's account 10 days before the date of arrival at the latest.</Text></Description><Address Type="1"><AddressLine>12 Pine Street</AddressLine><CityName>Sydney</CityName><PostalCode>2095</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><Voucher SeriesCode="4555"/></AcceptedPayment></AcceptedPayments><AmountPercent Percent="10" CurrencyCode="AUD" Amount="21.51" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="1.08"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Payment surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>10% deposit (of the total cost of the stay) will be charged using provided Voucher code 10 days before the date of arrival at the latest.</Text></Description><Address Type="1"><AddressLine>12 Pine Street</AddressLine><CityName>Sydney</CityName><PostalCode>2095</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><DirectBill DirectBill_ID="4981003"/></AcceptedPayment></AcceptedPayments><AmountPercent Percent="20" CurrencyCode="AUD" Amount="43.01" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="2.15"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Payment surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>20% deposit (of the total cost of the stay) will be charged using Direct Bill ID provided 10 days before the date of arrival at the latest.</Text></Description><Address Type="2"><AddressLine>125 Pitt Street</AddressLine><CityName>Sydney</CityName><PostalCode>2000</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment></DepositPayments><Discount TaxInclusive="true" Percent="15" DiscountCode="STAYNSAVE15" AmountBeforeTax="33.00" AmountAfterTax="36.30" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="3.30"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes><DiscountReason><Text>Stay 2 nights and get 15% off.</Text></DiscountReason></Discount><Total AmountBeforeTax="187.00" AmountAfterTax="215.05" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="28.05"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax><Tax Code="21" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Insurance Premium Tax</Text></TaxDescription></Tax></Taxes></Total><ResGuestRPHs><ResGuestRPH RPH="1"/><ResGuestRPH RPH="2"/></ResGuestRPHs><Memberships><Membership ProgramCode="Platinum" AccountID="8943112"/><Membership ProgramCode="Platinum" AccountID="8943966"/></Memberships><Comments><Comment GuestViewable="true"><Text>Platinum Members are offered a free spa entry for the whole length of stay.</Text></Comment></Comments><SpecialRequests><SpecialRequest RequestCode="Bedding Configuration" CodeContext="GUEST_DIRECT"><Text>King Split + Single Bed.</Text></SpecialRequest><SpecialRequest RequestCode="Smoking" CodeContext="CHANNEL"><Text>Non-smoking room.</Text></SpecialRequest></SpecialRequests></RoomStay></RoomStays><Services><Service ServicePricingType="Per night" ServiceCategoryCode="PARKING" ServiceInventoryCode="ACAR_PARK" Inclusive="true" Quantity="1" ServiceRPH="1" Type="10" ID="01120212A3" ID_Context="HOTEL"><Price><Total AmountBeforeTax="20.00" AmountAfterTax="22.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="2.00"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax></Taxes></Total></Price><ServiceDetails><GuestCounts><GuestCount AgeQualifyingCode="10" Age="44" Count="1" AgeBucket="AdultOver40"/></GuestCounts><TimeSpan Start="2017-12-01" End="2017-12-03"/><Comments><Comment GuestViewable="false"><Text>Car space needs to be released before 3PM check-out day. No exceptions allowed.</Text></Comment></Comments><ServiceDescription><Text>Accessible, covered and secured vehicle storage space.</Text></ServiceDescription></ServiceDetails></Service><Service ServicePricingType="Per person" ServiceCategoryCode="GUEST" ServiceInventoryCode="CLIENT" Inclusive="false" Quantity="1" ServiceRPH="2" Type="1" ID="CLI8569" ID_Context="GUEST_DIRECT"><Price><Total AmountBeforeTax="30.00" AmountAfterTax="36.00" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="6.00"><Tax Code="14" Amount="0" CurrencyCode="AUD" Percent="20"><TaxDescription><Text>Service charge</Text></TaxDescription></Tax></Taxes></Total></Price><ServiceDetails><GuestCounts><GuestCount AgeQualifyingCode="10" Age="51" Count="1" AgeBucket="AdultOver50"/></GuestCounts><TimeSpan Start="2017-12-01" End="2017-12-02"/><Comments><Comment GuestViewable="true"><Text>French manicure - Platinum Members are offered a free pedicure.</Text></Comment></Comments><ServiceDescription><Text>Manicure and pedicure set.</Text></ServiceDescription></ServiceDetails></Service><ServiceCategory ServiceCategoryCode="PARKING"/><ServiceCategory ServiceCategoryCode="GUEST"/></Services><BillingInstructionCode BillingCode="385H45991" AccountNumber="WOOLF05301300" Start="2017-12-01" End="2017-12-03" AuthorizationCode="7985" Description="Please follow billing instructions for Platinum Membership."><ResGuestRPH RPH="1"/></BillingInstructionCode><ResGuests><ResGuest ResGuestRPH="1" AgeQualifyingCode="10" ArrivalTime="13:30:00" PrimaryIndicator="true" Age="51"><Profiles><ProfileInfo><UniqueID Type="1" ID="8943112" ID_Context="PROPERTY"/><Profile ProfileType="1" ShareAllOptOutInd="true" ShareAllMarketInd="false"><Customer VIP_Indicator="true" CustomerValue="Platinum" BirthDate="1966-07-16"><PersonName NameType="2" Language="en"><NamePrefix>Mrs.</NamePrefix><GivenName>Ginny</GivenName><MiddleName>Adeline</MiddleName><Surname>Woolf</Surname><NameSuffix>Jr.</NameSuffix><NameTitle>Ph.D.</NameTitle></PersonName><Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="61" AreaCityCode="4" PhoneNumber="13855956" Remark="Active" FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="1">Virginia.Woolf@hotmail.com</Email><Address Type="2"><AddressLine>125 Pitt Street</AddressLine><CityName>Sydney</CityName><PostalCode>2000</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName><CompanyName Code="DLW">Dalloway</CompanyName><AddresseeName NameType="2" Language="en"><NamePrefix>Mrs.</NamePrefix><GivenName>Ginny</GivenName><MiddleName>Adeline</MiddleName><Surname>Woolf</Surname><NameSuffix>Jr.</NameSuffix><NameTitle>Ph.D.</NameTitle></AddresseeName></Address><RelatedTraveler Relation="Security" BirthDate="1958-12-01"><UniqueID Type="1" ID="8943125" ID_Context="Platinum_Member"/><PersonName NameType="2" Language="en"><NamePrefix>Mr.</NamePrefix><GivenName>Charles</GivenName><MiddleName>Hank</MiddleName><Surname>Bukowski</Surname><NameSuffix>Sr.</NameSuffix><NameTitle>D.Lett.</NameTitle></PersonName></RelatedTraveler><CustLoyalty ProgramID="PLATINUM5+5" MembershipID="8943112" LoyalLevel="VIP" LoyalLevelCode="10" SignupDate="2014-08-08" EffectiveDate="2014-08-08" ExpireDate="2024-08-08" Remark="5+5 DEAL (Sign up for 5 years of Platinum membership, get another 5 years for free)"/></Customer><CompanyInfo><CompanyName Code="DLW">Dalloway</CompanyName><AddressInfo Type="2"><AddressLine>88 Pall Mall</AddressLine><CityName>London</CityName><PostalCode>SW1Y 5ER</PostalCode><StateProv StateCode="ENG">England</StateProv><CountryName Code="UK">United Kingdom</CountryName></AddressInfo><TelephoneInfo PhoneLocationType="9" PhoneTechType="1" CountryAccessCode="44" AreaCityCode="20" PhoneNumber="23983039" Remark="Only active during business hours: 8AM-8PM BST" FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="2">info@dalloway.co.uk</Email><ContactPerson><PersonName NameType="3" Language="en-UK"><NamePrefix>Mr.</NamePrefix><GivenName>Warren</GivenName><MiddleName>Glass</MiddleName><Surname>Smith</Surname><NameSuffix>II</NameSuffix><NameTitle>M.D.</NameTitle></PersonName><Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="44" AreaCityCode="20" PhoneNumber="28596654" Remark="Active" FormattedInd="false" DefaultInd="true"/><Address Type="2"><AddressLine>88 Pall Mall</AddressLine><CityName>London</CityName><PostalCode>SW1Y 5ER</PostalCode><StateProv StateCode="ENG">England</StateProv><CountryName Code="UK">United Kingdom</CountryName></Address><Email DefaultInd="true" EmailType="2">Phillip.Glass-Smith@dalloway.co.uk</Email></ContactPerson></CompanyInfo></Profile></ProfileInfo></Profiles><SpecialRequests><SpecialRequest RequestCode="Room features" CodeContext="GUEST_DIRECT"><Text>Aircon off</Text></SpecialRequest></SpecialRequests><Comments><Comment GuestViewable="false"><Text>No flowers - pollen allergy.</Text></Comment></Comments><ServiceRPHs><ServiceRPH RPH="2"/></ServiceRPHs><ArrivalTransport><TransportInfo Type="Rail" ID="80D-AAE" Time="2017-12-01T09:25:00"/></ArrivalTransport><DepartureTransport><TransportInfo Type="Rail" ID="77D-ABB" Time="2017-12-03T20:05:00"/></DepartureTransport></ResGuest><ResGuest ResGuestRPH="2" AgeQualifyingCode="10" ArrivalTime="15:30:00" PrimaryIndicator="false" Age="44"><Profiles><ProfileInfo><UniqueID Type="1" ID="8943966" ID_Context="PROPERTY"/><Profile ProfileType="1" ShareAllOptOutInd="true" ShareAllMarketInd="false"><Customer VIP_Indicator="true" CustomerValue="Platinum" BirthDate="1973-04-12"><PersonName NameType="2" Language="en"><NamePrefix>Mr.</NamePrefix><GivenName>Willy</GivenName><Surname>Bradshaw</Surname></PersonName><Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="61" AreaCityCode="4" PhoneNumber="138564216" Remark="Active" FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="2">WBradshaw@orlando.com.au</Email><Address Type="1"><AddressLine>3 Hunter Street</AddressLine><CityName>Sydney</CityName><PostalCode>2017</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName><AddresseeName Language="en"><NamePrefix>Mr.</NamePrefix><GivenName>William</GivenName><Surname>Bradshaw</Surname><NameSuffix>Sr.</NameSuffix></AddresseeName></Address><CustLoyalty ProgramID="PLAT" MembershipID="8943966" LoyalLevel="VIP" LoyalLevelCode="10" SignupDate="2016-04-18" EffectiveDate="2016-06-25" ExpireDate="2021-06-25" Remark="Standard 5 year membership."/></Customer><CompanyInfo><CompanyName Code="ORL">Orlando</CompanyName><AddressInfo Type="2"><AddressLine>175B George Street</AddressLine><CityName>Sydney</CityName><PostalCode>2000</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></AddressInfo><TelephoneInfo PhoneLocationType="7" PhoneTechType="1" CountryAccessCode="61" AreaCityCode="2" PhoneNumber="45665039" Remark="All phone calls are recorded." FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="2">info@orlando.com.au</Email></CompanyInfo></Profile></ProfileInfo></Profiles><Comments><Comment GuestViewable="false"><Text>Disability - accessible room and parking space necessary.</Text></Comment></Comments><ArrivalTransport><TransportInfo Type="Air" ID="QR199" Time="2017-12-01T12:30:00"/></ArrivalTransport><DepartureTransport><TransportInfo Type="Rail" ID="77D-ABB" Time="2017-12-03T20:05:00"/></DepartureTransport></ResGuest></ResGuests><ResGlobalInfo><GuestCounts><GuestCount AgeQualifyingCode="10" Age="51" Count="1" AgeBucket="AdultOver50"/><GuestCount AgeQualifyingCode="10" Age="44" Count="1" AgeBucket="AdultOver40"/></GuestCounts><TimeSpan Start="2017-12-01" End="2017-12-03"/><Memberships><Membership ProgramCode="Platinum" AccountID="8943112"/><Membership ProgramCode="Platinum" AccountID="8943966"/></Memberships><Comments><Comment GuestViewable="true"><Text>Business trip</Text></Comment></Comments><SpecialRequests><SpecialRequest RequestCode="Staff" CodeContext="GUEST_DIRECT"><Text>Please make sure your chef Leonard is on duty during our stay, thanks.</Text></SpecialRequest></SpecialRequests><Guarantee GuaranteeCode="COMBINED_GUARANTEE" GuaranteeType="DepositRequired"><GuaranteesAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720"><CardHolderName>Leonard Woolf</CardHolderName><CardNumber Mask="4021XXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber></PaymentCard></GuaranteeAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><Voucher SeriesCode="4555"/></GuaranteeAccepted><GuaranteeAccepted PaymentTransactionTypeCode="charge"><DirectBill DirectBill_ID="4981003"/></GuaranteeAccepted></GuaranteesAccepted><GuaranteeDescription><Text>Combined Guarantees Accepted (Platinum Membership)</Text></GuaranteeDescription></Guarantee><DepositPayments><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><PaymentCard CardCode="VI" EffectiveDate="0717" ExpireDate="0720"><CardHolderName>Leonard Woolf</CardHolderName><CardNumber Mask="4021XXXXXXXXX8995" Token="0087254835699221" TokenProviderID="VTS"></CardNumber></PaymentCard></AcceptedPayment></AcceptedPayments><AmountPercent Percent="30" CurrencyCode="AUD" Amount="76.67" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="1.53"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="2"><TaxDescription><Text>Credit Card surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>30% deposit (of the total reservation cost) will be charged to card holder's account 10 days before the date of arrival at the latest.</Text></Description><Address Type="1"><AddressLine>12 Pine Street</AddressLine><CityName>Sydney</CityName><PostalCode>2095</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><Voucher SeriesCode="4555"/></AcceptedPayment></AcceptedPayments><AmountPercent Percent="10" CurrencyCode="AUD" Amount="25.56" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="1.28"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Payment surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>10% deposit (of the total reservation cost) will be charged using provided Voucher code 10 days before the date of arrival at the latest.</Text></Description><Address Type="1"><AddressLine>12 Pine Street</AddressLine><CityName>Sydney</CityName><PostalCode>2095</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment><GuaranteePayment><AcceptedPayments><AcceptedPayment PaymentTransactionTypeCode="charge"><DirectBill DirectBill_ID="4981003"/></AcceptedPayment></AcceptedPayments><AmountPercent Percent="20" CurrencyCode="AUD" Amount="51.11" NmbrOfNights="2"><Taxes CurrencyCode="AUD" Amount="2.56"><Tax Code="16" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Payment surcharge.</Text></TaxDescription></Tax></Taxes></AmountPercent><Deadline AbsoluteDeadline="2017-11-21T12:00:00+00:00" OffsetTimeUnit="Day" OffsetUnitMultiplier="10" OffsetDropTime="BeforeArrival"/><Description><Text>20% deposit (of the total reservation cost) will be charged using Direct Bill ID provided 10 days before the date of arrival at the latest.</Text></Description><Address Type="2"><AddressLine>125 Pitt Street</AddressLine><CityName>Sydney</CityName><PostalCode>2000</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address></GuaranteePayment></DepositPayments><Total AmountBeforeTax="217.00" AmountAfterTax="255.55" CurrencyCode="AUD"><Taxes CurrencyCode="AUD" Amount="38.55"><Tax Code="19" Amount="0" CurrencyCode="AUD" Percent="10"><TaxDescription><Text>GST</Text></TaxDescription></Tax><Tax Code="21" Amount="0" CurrencyCode="AUD" Percent="5"><TaxDescription><Text>Insurance Premium Tax</Text></TaxDescription></Tax><Tax Code="14" Amount="6.00" CurrencyCode="AUD" Percent="0"><TaxDescription><Text>Service charge - manicure</Text></TaxDescription></Tax></Taxes></Total><HotelReservationIDs><HotelReservationID ResID_Type="10" ResID_Value="BDC3685170919" ResID_Source="TESTPMS_GRHP6597"/></HotelReservationIDs><Profiles><ProfileInfo><UniqueID Type="1" ID="8942213" ID_Context="PROPERTY"/><Profile ShareAllMarketInd="true" ShareAllOptOutInd="false" ProfileType="1"><Customer VIP_Indicator="true" CustomerValue="5" BirthDate="1959-12-12"><PersonName NameType="2" Language="en"><NamePrefix>Mr.</NamePrefix><GivenName>Leo</GivenName><MiddleName>Darcy</MiddleName><Surname>Woolf</Surname><NameSuffix>Ret.</NameSuffix><NameTitle>BA</NameTitle></PersonName><Telephone PhoneLocationType="10" PhoneTechType="5" CountryAccessCode="61" AreaCityCode="4" PhoneNumber="23865911" Remark="Active" FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="1">LeonardoWoolf59@gmail.com</Email><Address Type="1"><AddressLine>12 Pine Street</AddressLine><CityName>Sydney</CityName><PostalCode>2095</PostalCode><StateProv StateCode="NSW">New South Wales</StateProv><CountryName Code="AU">Australia</CountryName></Address><CustLoyalty ProgramID="GOLD" MembershipID="8974358" LoyalLevel="VIP" LoyalLevelCode="2" SignupDate="2002-01-06" EffectiveDate="2002-01-06" ExpireDate="2032-01-06" Remark="30 years + Membership"/></Customer></Profile></ProfileInfo><ProfileInfo><Profile ProfileType="5"><CompanyInfo><CompanyName Code="ASTERIX">Asterix</CompanyName><AddressInfo Type="2"><AddressLine>360C Bergen Street</AddressLine><CityName>New York - Brooklyn</CityName><PostalCode>11238</PostalCode><StateProv StateCode="NY">New York</StateProv><CountryName Code="US">United States</CountryName></AddressInfo><TelephoneInfo  PhoneLocationType="9" PhoneTechType="1" CountryAccessCode="1" AreaCityCode="212" PhoneNumber="44458561" Remark="Voicemail only" FormattedInd="false" DefaultInd="true"/><Email DefaultInd="true" EmailType="2">support@asterix.com</Email><ContactPerson><PersonName NameType="2" Language="en-US"><NamePrefix>Ms.</NamePrefix><GivenName>Elle</GivenName><MiddleName>Maria</MiddleName><Surname>VanHoff</Surname><NameSuffix>Jr.</NameSuffix><NameTitle>M.D.</NameTitle></PersonName><Telephone PhoneLocationType="9" PhoneTechType="1" CountryAccessCode="1" AreaCityCode="212" PhoneNumber="44458562" Remark="Helpdesk" FormattedInd="false" DefaultInd="true"/><Address Type="0"><AddressLine>360C Bergen Street</AddressLine><CityName>New York - Brooklyn</CityName><PostalCode>11238</PostalCode><StateProv StateCode="NY">New York</StateProv><CountryName Code="US">United States</CountryName></Address><Email DefaultInd="true" EmailType="2">Elle.VanHoff@asterix.com</Email></ContactPerson></CompanyInfo></Profile></ProfileInfo></Profiles><TotalCommissions><UniqueID Type="5" ID="11395LYN"/><CommissionPayableAmount CurrencyCode="AUD" Amount="25.00"/><Comment><Text>Booking agent reservation commission - flat rate.</Text></Comment></TotalCommissions><BasicPropertyInfo ChainCode="GLDNRIV" BrandCode="GRH-P" HotelCode="GRHP6597" HotelName="Golden River Hotel - Perth"/></ResGlobalInfo></HotelReservation></HotelReservations></OTA_HotelResNotifRQ></SOAP-ENV:Body></SOAP-ENV:Envelope>
```

{% endcode %}

</details>

<details>

<summary>Minimum Content</summary>

The minimum content XML sample is for reference purposes only and it is an example of the minimum amount of data that your system could receive from SMX.

{% code overflow="wrap" expandable="true" %}

```xml
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header><wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><wsse:UsernameToken><wsse:Username>USERNAME</wsse:Username><wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password></wsse:UsernameToken></wsse:Security></SOAP-ENV:Header><SOAP-ENV:Body><OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1.0" EchoToken="abc-123" TimeStamp="2018-05-04T19:40:04Z"><HotelReservations><HotelReservation ResStatus="Reserved" CreateDateTime="2018-05-04T19:32:04Z"><POS><Source><RequestorID ID="PMSPUBLISHER"/></Source></POS><UniqueID ID="123456789"/><RoomStays><RoomStay><TimeSpan Start="2017-09-05" End="2017-09-06"/></RoomStay></RoomStays><ResGlobalInfo><TimeSpan Start="2017-09-05" End="2017-09-06"/><Total AmountAfterTax="200.00"/><!-- May be AmountBeforeTax --><BasicPropertyInfo HotelCode="10107"/></ResGlobalInfo></HotelReservation></HotelReservations></OTA_HotelResNotifRQ></SOAP-ENV:Body></SOAP-ENV:Envelope>
```

{% endcode %}

</details>

<details>

<summary>Minimum Content Cancellation</summary>

In scenarios where the original reservation message was not processed by the reservation publisher, it is possible to receive the following as an "initial cancellation" message.

{% code overflow="wrap" expandable="true" %}

```xml
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header><wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><wsse:UsernameToken><wsse:Username>USERNAME</wsse:Username><wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password></wsse:UsernameToken></wsse:Security></SOAP-ENV:Header><SOAP-ENV:Body><OTA_HotelResNotifRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="1" EchoToken="abc-123" TimeStamp="2018-09-20T07:55:07Z"><HotelReservations><HotelReservation ResStatus="Cancelled" CreateDateTime="2018-05-04T19:32:04Z" LastModifyDateTime="2018-09-20T07:55:04Z"><POS><Source><RequestorID ID="PMSPUBLISHER"/></Source></POS><UniqueID ID="123456789"/><ResGlobalInfo><BasicPropertyInfo HotelCode="10107"/></ResGlobalInfo></HotelReservation></HotelReservations></OTA_HotelResNotifRQ></SOAP-ENV:Body></SOAP-ENV:Envelope>
```

{% endcode %}

</details>

{% hint style="success" icon="sparkles" %}

## Still have questions?

Use the <i class="fa-gitbook-assistant">:gitbook-assistant:</i> **Ask** button at the top of the page to chat with our AI assistant — it can help you navigate the guide, understand requirements, and troubleshoot issues.

If you need more support, visit [Integration Support](/integration-support/integration-support.md).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.siteminder.com/smx-api/reference/reservations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
