Skip Navigation

Managing Other Details

Digital Connect Check-In allows to add multiple different details related to a Passenger and his reservation by using the POST /dcci/passenger/update service:

  • LOYALTY ACCOUNT
     

    It is possible to add loyalty account for a Passenger. Digital Connect Check-In supports adding multiple accounts for the different airlines.

    { 
      "returnSession": true, 
      "passengerDetails": [ 
        { 
          "passengerId": "p01.01", 
          "loyaltyAccounts": [ 
            { 
              "memberAirline": "VA", 
              "memberId": "1234567891" 
            } 
          ] 
        } 
      ] 
    } 
  • WEIGHT CATEGORY
     

    It is possible to add a weight category for a Passenger. Digital Connect Check-In services allow to add this information using the POST /dcci/passenger/update service:

    {
     "returnSession": true,
     "passengerDetails": [
       {
         "passengerId": "p01.01",
         "weightCategory": ADULT_MALE
       }
      ]
     }
    
  • EMERGANCY CONTACT
     

    One of the most important details among other Passenger's data is the information about contact channels. The contact channels can be used in different situations by Sabre systems. Digital Connect Check-In services allow to add emergency contact using POST /dcci/passenger/update service.

    { 
      "returnSession": true, 
      "passengerDetails": [ 
        { 	
    	 "passengerId": "p01.01",       
    	 "emergencyContacts": [ 
            { 
              "id": "string", 
              "name": "John Doe", 
              "countryCode": "US", 
              "contactDetails": "+48 12 12 23 123", 
              "relationship": "brother", 
              "otherDetails": "I'm short string" 
            } 
          ] 
        } 
      ] 
    }