Skip Navigation

Airport Specific Queries

To retrieve a reservation, the Passengers use details of the itinerary or their personal data. Such an approach requires time needed to find the reservation and ensures that the correct reservation has been found.

However, Airport Agents can use more precise criteria to find Passenger details in a faster way:

  • SSCI OS PassengerID
     

    This identifier can be used along with the itinerary criteria in the request to the /dcci/passenger/details service. In this case, Digital Connect Check-In retrieves details only for the Passenger for whom the PassengerID was requested.

  • Bag Tag Number
     

    This information is enough to find the retrieved details of the Passenger and the reservation using the /dcci/passenger/details service as well.

Examples of the request messages:

  • Bag tag number

    { 
      "passengerCriteria" : [ { 
        "lastName" : "WILSON", 
        "checkInPassengerId" : "D9EDB25F0001" 
      } ], 
      "reservationCriteria" : { 
        "departureAirport" : "SCL", 
        "departureDate" : "2018-09-27", 
        "airline" : "LA", 
        "flightNumber" : "2474" 
      } 
    } 
    
    { 
      "reservationCriteria": { 
        "bagTagNumber": "123456" 
      } 
    } 
  • PassengerID + Itinerary

    { 
      "passengerCriteria" : [ { 
        "lastName" : "WILSON", 
        "checkInPassengerId" : "D9EDB25F0001" 
      } ], 
      "reservationCriteria" : { 
        "departureAirport" : "SCL", 
        "departureDate" : "2018-09-27", 
        "airline" : "LA", 
        "flightNumber" : "2474" 
      } 
    }