Skip Navigation

Printer Management

The Agent-oriented application works mostly in the context of a session prepared by an Agent which uses the application. Unlike in case of self-service application, an Agent does not need to assign and unassign printers before/after each operation which requires a printer.

Digital Connect Check-In has an ability to avoid printers automatically and relay on the printers which are already assigned in agent's session. Additionally, the printers can be assigned and unassigned using Digital Connect Check-In services:

  • POST /dcci/printer/assign
     

    This service allows to assign the following printers:

    • Boarding pass printer
    • Bag tag printer
    • Ticket printer
    • Hard copy printer

    Example of the request:

    { 
      "boardingPassPrinterLniata": "E62FAB", 
      "bagTagPrinterLniata": "E62FAB", 
      "hardCopyPrinterLniata": "E62FAB", 
      "ticketPrinter": { 
        "stock": "2A", 
        "lniata": "E62FAB", 
        "station": "86493503" 
      }, 
      "reassignPrinters": true 
    } 

     

    The reasignPrinters flag allows to override the already assigned printers.

  • POST /dcci/printer/unassign
     

    To unassign the printer using Digital Connect Check-In service the only required information is a type of the printer which should be unassigned:

    { 
      "printers": [ 
        "BOARDING_PASS" 
      ] 
    } 

     

    The following is the list of the allowed values:

    • BOARDING_PASS
    • BAG_TAG
    • HARD_COPY
    • TICKET