Search code examples
sabreticket-system

How can I retrieve the actual ticketing expiry date and time?


I've checked the response, but there’s no specific expiry time provided with "TAW/". How can I get the exact date and time by which the ticket must be issued?


Solution

  • ticketingDate is the information entered by the user in the TAW field of the PNR.

    A Sabre user sees it as follows: "1.TAWK49I09FEB009/0400A/"

    In the getBooking service, this information appears as follows:

        },
    "futureTicketingPolicy": {
        "ticketingPcc": "PCC",
        "queueNumber": "9",
        "ticketingDate": "2025-02-09"
    },
    

    The time limit provided by the airline for the PNR appears in the following field:

        "specialServices": [
        {
            "code": "OTHS",
            "message": "MISSING SSR CTCM MOBILE OR SSR CTCE EMAIL OR SSR CTCR NON-CONSENT FOR KL"
        }
    ],
    

    getReservationRQ taw field:

                        <stl19:TicketingInfo>
                        <stl19:FutureTicketing id="16" index="1" elementId="pnr-16">
                            <stl19:Code>TAW</stl19:Code>
                            <stl19:BranchPCC>K49I</stl19:BranchPCC>
                            <stl19:Date>09FEB</stl19:Date>
                            <stl19:Time>0400A</stl19:Time>
                            <stl19:QueueNumber>9</stl19:QueueNumber>
                        </stl19:FutureTicketing>
    

    getReservationRQ airline timelimit field:

                    <stl19:GenericSpecialRequests id="15" type="A" msgType="S">
                    <stl19:Code>OTHS</stl19:Code>
                    <stl19:FreeText>MISSING SSR CTCM MOBILE OR SSR CTCE EMAIL OR SSR CTCR NON-CONSENT FOR KL</stl19:FreeText>
                    <stl19:AirlineCode>1S</stl19:AirlineCode>
                    <stl19:FullText>OTHS 1S MISSING SSR CTCM MOBILE OR SSR CTCE EMAIL OR SSR CTCR NON-CONSENT FOR KL</stl19:FullText>
                </stl19:GenericSpecialRequests>
    

    The valid time limit information is the one sent by the airline.

    The TAW field checked by Sabre users is only for process tracking and has no validity.