Table of Contents | ||
---|---|---|
|
OTA_ProfileMergeRQ Elements & Attributes
Element | @Attribute | Num | Description/Contents | Origin | Value |
OTA_ProfileMergeRQ | 1 | Root element of the message. |
|
OTA_ProfileMergeRQ/UniqueID/ @Instance | |||
OTA_ProfileMergeRQ/UniqueID/ @ID | |||
OTA_ProfileMergeRQ/UniqueID/ @ID_Context | |||
OTA_ProfileMergeRQ/ObsoleteProfileID/ @Instance | |||
OTA_ProfileMergeRQ/ObsoleteProfileID/ @ID | |||
OTA_ProfileMergeRQ/ObsoleteProfileID/ @ID_Context | |||
OTA_ProfileMergeRQ/Profile/ @ProfileType | |||
OTA_ProfileMergeRQ/Profile/Customer/PersonName/GivenName/ | |||
OTA_ProfileMergeRQ/Profile/Customer/PersonName/Surname/ | |||
OTA_ProfileMergeRQ/Profile/Customer/Telephone/ @PhoneTechType | |||
OTA_ProfileMergeRQ/Profile/Customer/Telephone/ @PhoneUseType | |||
OTA_ProfileMergeRQ/Profile/Customer/Telephone/ @PhoneNumber | |||
OTA_ProfileMergeRQ/Profile/Customer/Telephone/ @FormattedInd | |||
OTA_ProfileMergeRQ/Profile/Customer/Email/ @ShareMarketInd | |||
OTA_ProfileMergeRQ/Profile/Customer/Email/ @DefaultInd | |||
OTA_ProfileMergeRQ/Profile/Customer/Email/ | |||
OTA_ProfileMergeRQ/Profile/Customer/Address/AddressLine/ | |||
OTA_ProfileMergeRQ/Profile/Customer/Address/CityName/ | |||
OTA_ProfileMergeRQ/Profile/Customer/Address/PostalCode | |||
OTA_ProfileMergeRQ/Profile/Customer/Address/StateProv/ @StateCode | |||
OTA_ProfileMergeRQ/Profile/Customer/Address/CountryName/ @Code |
OTA_ProfileMergeRQ Sample
Code Block |
---|
<?xml version='1.0' encoding='UTF-8'?> <n1:Envelope xmlns:n1="http://www.w3.org/2003/05/soap-envelope" xmlns:n3="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:n2="http://www.w3.org/2005/08/addressing" xmlns:n4="http://htng.org/PWSWG/2007/02/AsyncHeaders"> <n1:Header> <n2:MessageID>{{MessageID}}</n2:MessageID> <n4:CorrelationID>2b36432943304e8d81ba5618d5df9e5a</n4:CorrelationID> <n2:Action>http://htng.org/PWSWG/2010/12/ProfileMerge_SubmitRequest</n2:Action> <n2:To>https://uat.windsurfercrs.com/pms/genhtngservice.aspx</n2:To> <n2:ReplyTo> <n2:Address>http://www.w3.org/2005/08/addressing/role/anonymous</n2:Address> </n2:ReplyTo> <n3:Security mustUnderstand="1"> <n3:UsernameToken> <n3:Username>{{HeaderUserName}}</n3:Username> <n3:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">{{HeaderPassword}}</n3:Password> </n3:UsernameToken> </n3:Security> <n4:ReplyTo> <n2:Address>https://pmsendpoint/serviceEndpoint</n2:Address> </n4:ReplyTo> </n1:Header> <n1:Body> <OTA_ProfileMergeRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="{{EchoToken}}" TimeStamp="{{CurrentDateTime}}" Version="1.0"> <UniqueID Instance="PMS" ID="123" ID_Context="PMS"/> <UniqueID Instance="MAVERICK" ID="455" ID_Context="MAVERICK"/> <ObsoleteProfileID Instance="PMS" ID="124" ID_Context="PMS"/> <ObsoleteProfileID Instance="MAVERICK" ID="456" ID_Context="MAVERICK"/> <Profile ProfileType="1"> <Customer> <PersonName> <GivenName>Qiao</GivenName> <Surname>Shen</Surname> </PersonName> <Telephone PhoneTechType="1" PhoneUseType="3" PhoneNumber="7777777" FormattedInd="false" /> <Email ShareMarketInd="No" DefaultInd="true">sqshenqiao@126.com</Email> <Address> <AddressLine>Address Line 1</AddressLine> <CityName>Houston</CityName> <PostalCode>77027</PostalCode> <StateProv StateCode="TX" /> <CountryName Code="US" /> </Address> </Customer> </Profile> </OTA_ProfileMergeRQ> </n1:Body> </n1:Envelope> |