Skip Navigation

Get Bag Messages

4.0.0
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 Get Bag Messages (GetBagMessageInfoRQ) is a SabreSonic Check-In® web service used to retrieve the Baggage Process Message (BPM) for a specified bag tag number.

Target Audience
Airline Carrier
API Version
4.0.0
Authentication
Session Token
Service Action Code
GetBagMessageInfoRQ

The BPM contains data regarding the status of baggage for tracking and reconciliation. It is a collection of data showing the loading status of baggage, its last known location and destination. This information may be used by the transporting carrier to track the ground transportation, baggage sortation and loading process including unloading, if required.

Sample Request
<v4:GetBagMessageInfoRQ version="4.0.0">
    <v4:BagMessageSearchCriteria>
        <v4:BagInfo>
            <v4:BagList>
                <!--1 to 10 repetitions:-->
                <v4:BagTagNumber>9994976599</v4:BagTagNumber>
            </v4:BagList>
            <v4:DepartureDate>2016-03-09</v4:DepartureDate>
        </v4:BagInfo>
        <v4:MessageTypes>
            <!--1 to 5 repetitions:-->
            <v4:MessageType>BPM</v4:MessageType>
        </v4:MessageTypes>
    </v4:BagMessageSearchCriteria>
</v4:GetBagMessageInfoRQ>
Sample Response
<GetBagMessageInfoRS xsi:schemaLocation="http://services.sabre.com/checkin/getBagMessageInfo/v4/GetBagMessageInfoRQRS_v4.0.0.xsd" xmlns="http://services.sabre.com/checkin/getBagMessageInfo/v4" xmlns:ns2="http://services.sabre.com/STL/v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <BagMessageInfo>
        <BagInfo>
            <BagTagNumber>9994976599</BagTagNumber>
            <Warning>
                <ns2:Code>1212</ns2:Code>
                <ns2:Message>No bag message found for the bag tag number</ns2:Message>
            </Warning>
        </BagInfo>
    </BagMessageInfo>
    <Result messageId="ID-acs-int2-sgdcelab-sabre-com-49654-1459926909439-5-6573" timeStamp="2016-04-06T10:30:39.916Z">
        <ns2:Status>Success</ns2:Status>
        <ns2:CompletionStatus>Complete</ns2:CompletionStatus>
        <ns2:System>CKI-WS</ns2:System>
    </Result>
</GetBagMessageInfoRS>