Skip Navigation

Issue Bag Tag

4.0.1
Air
Check-In
SOAP API
Airline Carrier

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 SabreSonic Check-In Issue Bag Tag (IssueBagTagRQ) web service will issue on demand bag tags for a single or multiple passengers in the same request and bag tags are printed and given sequential numbers by the system.

Target Audience
Airline Carrier
API Version
4.0.1
Authentication
Session Token
Service Action Code
IssueBagTagRQ

In addition of issuing on demand bag tags the service enables to associate an Air Extras (AE) such as pre-paid bag tags for each individual baggage. Optionally this service can generate Generic Bag Tag Data in XML as a part of the response. This can facilitate a carrier or it's point of sale to design their own Bag Tags or print Bag Tags from home using the XML data.

Sample Request
<v4:IssueBagTagRQ version="4.0.1">
    <BaggageRouteInfoList>
        <BaggageRouteInfo>
            <Airline>AZ</Airline>
            <Flight>324</Flight>
            <BookingClass>Y</BookingClass>
            <DepartureDate>2016-03-23</DepartureDate>
            <Origin>FCO</Origin>
        </BaggageRouteInfo>
    </BaggageRouteInfoList>
    <PassengerInfoRequestList>
        <PassengerInfoRequest>
            <LastName>MIKE</LastName>
            <PassengerID>15D316290001</PassengerID>
            <BaggageRequestList>
                <BaggageRequest>
                    <WeightAndSize>
                        <v3:WeightAndUnit unit="KG">5</v3:WeightAndUnit>
                    </WeightAndSize>
                </BaggageRequest>
            </BaggageRequestList>
        </PassengerInfoRequest>
    </PassengerInfoRequestList>
    <Client>KIOSK</Client>
</v4:IssueBagTagRQ>
Sample Response
<ns3:IssueBagTagRS xmlns:ns3="http://services.sabre.com/checkin/issueBagTag/v4" xmlns:ns2="http://services.sabre.com/STL/v3">
    <FreeTextInfoList>
        <ns2:FreeTextInfo>
            <ns2:TextLine>
                <ns2:Text>!VS TAGS ISSUED - MINIMUM CLOSE-OUT TIME NOT PRESENT</ns2:Text>
            </ns2:TextLine>
        </ns2:FreeTextInfo>
    </FreeTextInfoList>
    <ItineraryInfoList>
        <FlightInfo>
            <Airline>AZ</Airline>
            <Flight>324</Flight>
            <Origin>FCO</Origin>
            <Destination>CDG</Destination>
        </FlightInfo>
    </ItineraryInfoList>
    <PassengerInfoList>
        <PassengerInfo>
            <LastName>MIKE</LastName>
            <FirstName>HUSSE</FirstName>
            <PassengerID>15D316290001</PassengerID>
            <NumberInParty>1</NumberInParty>
            <Destination>CDG</Destination>
            <CheckInNumber>1</CheckInNumber>
            <BagCount>1</BagCount>
            <BagTagInfoList>
                <BagAdditionalInfo>5055247163V</BagAdditionalInfo>
                <BagTagInfo>
                    <BagTagNumber>5055247163</BagTagNumber>
                    <BagTypeDetailsList>
                        <BagTypeDetail bagTypeCode="V"/>
                    </BagTypeDetailsList>
                </BagTagInfo>
                <TotalWeightAndUnit unit="KG">5</TotalWeightAndUnit>
            </BagTagInfoList>
            <EditCodeList>
                <EditCode>M</EditCode>
            </EditCodeList>
        </PassengerInfo>
    </PassengerInfoList>
    <Result messageId="ID-acs-int1-sgdcelab-sabre-com-42526-1458731313161-2-1016" timeStamp="2016-03-23T13:27:58.132Z">
        <ns2:Status>Success</ns2:Status>
        <ns2:CompletionStatus>Complete</ns2:CompletionStatus>
        <ns2:System>ACS-BSO</ns2:System>
    </Result>
</ns3:IssueBagTagRS>