Skip Navigation

Update Sabre Profiles™ Objects

6.86.0
Profiles
SOAP API
Travel Agency

Not Signed In.

Looks like you may not have access to all of the resources and documentation for this page.
Please log-in or contact your support desk team if you believe you should have access.

The Update Profile Objects (EPS_EXT_ProfileUpdateRQ) API is a Sabre Profiles web service that updates Profiles, Templates, Filters, Formats, Metadata, Validators, and Associations.

Target Audience
Travel Agency
API Version
6.86.0
Authentication
Session Token
Service Action Code
EPS_EXT_ProfileUpdateRQ

Profiles: Profiles are individual entities for which information is stored. The system supports Traveler, Corporation, Agent, Agency, and Operational profiles.

Templates: A Template can be created to govern the structure of each profile type. It provides the basis that determines which items or data elements within the database are available for you to update a profile.

Filters: Filters are used to store information about data elements, associated profiles, and formats that are copied into the Sabre GDS PNR. Users can pre-define filters and determine the default to be used for profiles.

Formats: Formats are used to store custom-defined Sabre GDS (TPF) entries that can be used to enter information into the Passenger Name Record (PNR).

Metadata: Metadata is used to define available GUI elements and default element values. It's attributes define the identifier of the Metadata object in the system.

Validator: The Validator defines additional data validations across different POS. A Validator is supported by backend services; once created, it prevents setting illegal data values by any POS using a Profile.

Associations: This object maintains associations for large groups of objects.

Additional information about these elements and their functionality can be found in the Sabre Profiles Technical User Guide.

Sample Request
<?xml version="1.0" encoding="UTF-8"?>
<Sabre_OTA_ProfileUpdateRQ Version="6.86" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.sabre.com/eps/schemas" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sabre.com/eps/schemas
..\schemaswsdl\Sabre_OTA_ProfileUpdateRQ.xsd">

    <Filter FilterID="554244" FilterName="ABC" FilterDescription="TestTemplate" DomainID="B0DE" CreateDateTime="2013-08-06T06:16:15.94Z" UpdateDateTime="2013-08-06T06:16:15.94Z" ClientCode="TN" ClientContextCode="TMP" FilterStatusCode="AC" FilterTypeCode="TVL">
        <Profile>
            <TPA_Identity UniqueID="554244" ProfileTypeCode="TVL" ClientCode="TN" ClientContextCode="TMP" DomainID="B0DE" ProfileName="ABC"/>
            <Traveler>
                <Customer>
                    <PersonName>
                        <NamePrefix> </NamePrefix>
                        <GivenName>John</GivenName>
                        <MiddleName> </MiddleName>
                        <SurName>Bravo</SurName>
                        <NameSuffix> </NameSuffix>
                    </PersonName>
                    <Email EmailAddress="example@gmail.com"/>
                    <PaymentForm>
                        <Cash Indicator="true"/>
                    </PaymentForm>
                </Customer>
            </Traveler>
        </Profile>
    </Filter>
</Sabre_OTA_ProfileUpdateRQ>
Sample Response
<?xml version="1.0" encoding="utf-8"?>
<Sabre_OTA_ProfileUpdateRS xmlns="http://www.sabre.com/eps/schemas"  
TimeStamp="2013-08-06T06:21:35.063Z" Version="6.86"  
CreateDateTime="2013-08-06T06:16:15.94Z"  
UpdateDateTime="2013-08-06T06:21:35.063Z">  
  <ResponseMessage>  
    <Success />  
  </ResponseMessage>  
 
  <Filter FilterID="554244" FilterName="ABC" DomainID="B0DE"  
 ClientCode="TN" ClientContextCode="TMP" />  
</Sabre_OTA_ProfileUpdateRS>