Skip Navigation

Baggage Check-In

When all bags are in free baggage allowance or all required charges has been fulfilled, then all bags can be checked-in through the system.

Digital Connect Check-In provides POST /dcci/baggage/checkin service which allows to issue bag tags for each bag.

To issue a bag tag each request needs to contain:

  • Baggage details:

    • Weight
    • Size
    • Baggage type
  • AE ID which represents required charges that has been applied during calculation process
  • Bag tag which returns the following options:

    • GENERIC
       

      It returns generic bag tag common for all POSes.

    • HOME_PRINTED
       

      It is more detailed bag tag which can be used to compose home printed bag tag.

  • Segment ID which provides the information about the segment to which the Passenger would like to voluntary short check the bag.

Example request:

{ 
  "passengers": [ 
    { 
      "id": "p01.01", 
      "baggage": [ 
        { 
          "id": "string", 
          "weight": { 
            "value": 21, 
            "unit": "KILOGRAM" 
          }, 
          "size": { 
            "value": 32, 
            "unit": "CENTIMETER" 
          }, 
          "airExtraId": "id-01-abc", 
          "baggageType": "BIKE", 
        } 
      ] 
    } 
  ], 
  "bagTagOption": "HOME_PRINTED", 
  "segmentIds": [ 
    "id-01-abc" 
  ] 
} 

The /dcci/baggage/checkin service returns separate bag tag details for each requested bag.

The bag tag returned by the /dcci/baggage/checkin sevice might be either inactive or active depending on the settings used when issuing a bag tag. Those settings are related to the bag tag printer assigned during the process and determining the bag tag printer is configurable.

Configuration Reference

The following key is introduced to support this feature:

  • sadapter.s4ci.checkinbaggage.bagTagPrinterAddress

For more details refer to the Configuration Index chapter.