Skip Navigation

Reprinting Boarding Pass

When any of the Passengers in the reservation is already checked-in for the flight POS can use the POST /dcci/passenger/boardingpass service to retrieve boarding pass for those Passengers. The service requires the information about the Passenger's flight for which boarding pass needs to be reprinted and the format of the boarding pass which can be one of the followings:

  • IMAGE
  • PECTAB
  • BPXML
  • NONE

To see more details on how the above values can be used, refer to the section related to issuing boarding pass as part of check-in process.

The POST /dcci/passenger/boardingpass service is one of the Digital Connect Check-In stateful services which is easy to use within active Digital Connect Check-In session. However, the operation of reprinting boarding pass might not be necessarily coupled with other check-in operation activities and could be done on demand. To cover that case Digital Connect Check-In uses the stateless service POST /dcci/passenger/boardingpass/reprint which requires more details to be provided in the request since the Digital Connect Check-In session is not available:

{
  "passengers": [
    {
      "lastName": "Doe",
      "ssciPassengerId": "43B326820001"
    }
  ],
  "flight": {
    "airline": "K0",
    "flightNumber": "371",
    "departureAirport": "DFW",
    "departureDate": "2017-07-14"
  },
  "outputFormat": "IMAGE"
}