Skip Navigation

Access Queue

2.1.1
Air
Queues
SOAP API
Travel Agency
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 Access Queue (QueueAccessLLSRQ) API is used to access a designated queue or to navigate within the particular queue.

Target Audience
Travel Agency
Airline Carrier
API Version
2.1.1
Authentication
Session Token
Service Action Code
QueueAccessLLSRQ

This service is used for queue remove, queue exit (ignore or end transaction), queue end and bounce forward (or backwards), queue ignore. For additional information on the host Q/ functionality, please refer to the Finder Help System: https://central.sabre.com/s/article/access-a-queue-q (formerly reference: quefo005).   

Sample Request
<?xml version="1.0" encoding="UTF-8"?>
<SamplePayloads>
    <SampleRequests>
        <!--Access a queue.-->
        <!--Equivalent Sabre host command: Q/IPCC1200-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <QueueIdentifier Number="200" PseudoCityCode="IPCC1"/>
        </QueueAccessRQ>
        <!--Access a queue specifying PNR list output.-->
        <!--Equivalent Sabre host command: Q/IPCC1200/L-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <QueueIdentifier Number="200" PseudoCityCode="IPCC1">
                <List Ind="true"/>
            </QueueIdentifier>
        </QueueAccessRQ>
        <!--Pre-conditions: the application must currently be on queue.-->
        <!--Specify a navigation qualifier after accessing a queue.-->
        <!--Equivalent Sabre host command: QR-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <Navigation Action="QR"/>
        </QueueAccessRQ>
        <!--Access a queue and specify selection criteria.-->
        <!--Equivalent Sabre host command: Q/IPCC1200‡AC-HL-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <QueueIdentifier Number="200" PseudoCityCode="IPCC1"/>
            <Selection Function="AC" Criteria="HL"/>
        </QueueAccessRQ>
        <!--Access a queue specifying PNR list output together with the primary passenger name showing.-->
        <!--Equivalent Sabre host command: Q/IPCC1200/LN-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <QueueIdentifier Number="200" PseudoCityCode="IPCC1">
                <List Ind="true" PrimaryPassenger="true"/>
            </QueueIdentifier>
        </QueueAccessRQ>
        <!--Remove PNR from three queues.-->
        <!--Equivalent Sabre host command: QR/‡7TZA2‡IH9A3‡G7HE200-->
        <QueueAccessRQ Version="2.1.1" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <Navigation Action="QR"/>
            <QueueIdentifier PseudoCityCode="7TZA" Number="2"/>
            <QueueIdentifier PseudoCityCode="IH9A" Number="3"/>
            <QueueIdentifier PseudoCityCode="G7HE" Number="200"/>
        </QueueAccessRQ>
</SamplePayloads>
Sample Response
<?xml version="1.0" encoding="UTF-8"?>
<SamplePayloads>
    <SampleResponses>
        <QueueAccessRS xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:stl="http://services.sabre.com/STL/v01">
            <stl:ApplicationResults status="Complete">
                <stl:Success timeStamp="2020-04-05T10:00:00-06:00"/>
            </stl:ApplicationResults>
            <Line>
                <UniqueID ID="NGDEZP"/>
            </Line>
            <Paragraph>
                <Text>011  SEE REMARKS</Text>
                <Text>1.1BIDON/GWIDON</Text>
                <Text>NO ITIN</Text>
                <Text>TKT/TIME LIMIT</Text>
                <Text>1.T-/</Text>
                <Text>PHONES</Text>
                <Text>1.DFW111222333</Text>
                <Text>ADDRESS</Text>
                <Text>SABRE TRAVEL</Text>
                <Text>2147 RICHLAND</Text>
                <Text>GRAPEVINE TX US 76051</Text>
                <Text>RECEIVED FROM - TESTER</Text>
                <Text>7TZA.7TZA*AW5 0319/06SEP12 NGDEZP H</Text>
            </Paragraph>
        </QueueAccessRS>
    </SampleResponses>
</SamplePayloads>