Skip to end of banner
Go to start of banner

OTA_HotelResNotifRS

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 26 Next »

Response Specification

This message will be returned by partner application (Subscriber) in response to the OTA_HotelResNotifRQ message sent by SMX. The message will confirms whether the OTA_HotelResNotifRQ message was processed successfully by the partner application or not.

Elements and attributes marked with Number=1 or more will always be sent. 0 means that the element or attribute is optional, while a second numeric value or 'n' indicates the element or attribute can repeat (where n = no limit)"

Element

Attribute

Number

Description

OTA_HotelResNotifRS

1

Mandatory
Root element of the message.

@EchoToken

1

As per OpenTravel Alliance Specifications.

@Version

1

Version is a mandatory attribute in OTA; therefore, it must remain Mandatory in HTNG in order to be able to use the same message.

@TimeStamp

1

Time of the transaction.

@ResResponseType

0..1

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

  • Cancelled.

OTA_HotelResNotifRS / Errors / Error

1..99

Mandatory ONLY if Success element is not sent. Only needed if RQ message was unsuccessful. More information can be found here.

@Type

1

Mandatory in OTA. Refers to OpenTravel Alliance EWT list (Error Warning Type).

@Code

0..1

Refers to OpenTravel Alliance ERR list (Error Codes). Should be used wherever possible.

@RecordID

0..1

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.

OTA_HotelResNotifRS / Success

1

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.

OTA_HotelResNotifRS / Warnings / Warning

0..99

Can be used in conjunction with Success message.

@Type

1

Refers to OpenTravel Alliance EWT list (Error Warning Type).

@Code

0..1

Refers to OpenTravel Alliance ERR list (Error Codes). Should be used wherever possible.

@RecordID

0..1

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.

OTA_HotelResNotifRS / HotelReservations / HotelReservation

1

Mandatory
Must be sent for the message to have a meaning.
Mandatory only if 'Success' element is sent.

@ResStatus

0..1

Indicates the current status of the reservation.
Valid values are dependant on the roles:

  • Reserved

  • Waitlisted

  • In-house

  • Checked-Out

OTA_HotelResNotifRS / HotelReservations / HotelReservation / UniqueID

1

Mandatory
This is the confirmation number for the reservation assigned by the immediate originator of the booking (i.e., the system that sent the OTA_HotelResNotifRQ message for which the OTA_HotelresNotifRS message is sent).

@Type

0..1

Type is assigned values from the UIT code list. If the original system was a CRS:
Type = 14 – Reservation
ID is the actual confirmation number
If it was a PMS: Type = 10 - Hotel

@ID

1

ID is the CRS confirmation number (or PMS number if the reservation was originated in the PMS).

OTA_HotelResNotifRS / HotelReservations / HotelReservation / ResGlobalInfo / HotelReservationIDs / HotelReservationID

1

Mandatory
This is the confirmation number associated by the system that received the booking.

@ResID_Type

1

ResID_Type is assigned values from the UIT code list. Some common uses:
18 - Other
10 – Hotel
13 – Internet Broker
14 – Reservation Broker
24 – Travel Agent PNR
For any other type of system the implementing partners should agree on the appropriate code from the OpenTravel Alliance UIT code list.

@ResID_Value

1

ResID_Value is the actual confirmation number.

@ResID_Source

0..1

A unique identifier to indicate the source system that generated the ResID_Value.

@ForGuest

0..1

When 1 the confirmation number given to the guest. This number should be searchable by the destination.


Response Samples

Success

<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="2019-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>

Success and Warning

<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="2019-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>

Failure

<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="2005-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>
  • No labels