Migration of the route GET /v2/bookings/{booking_id}/transport_details to GET /v3/bookings/{booking_id}/transport_details

  • Outdated
  • June 1, 2025
  • 1 related route

Context

Upgrade from GET - ​ /v2/bookings/{booking_id}/transport_details to GET - ​ /v3/bookings/{booking_id}/transport_details

3 Key benefits :

  • Add a new field unit to precise the luggage weight unit
  • No longer display the weight unit of the luggage
  • The luggage unit will now be specific to each locale, by default it is KG

Impacts

Route to call :

  • GET - ​ /v3/bookings/{booking_id}/transport_details

Output

[
  {
    "way": "INBOUND",
    "stay_id": "BALC20170310",
    "total_duration_in_min": 120,
    "pre_post_trip": true,
    "travel_sections": [
      {
        "departure": {
          "city": {
            "id": "PAR",
            "label": "PARIS"
          },
          "date": "20160812",
          "time": "17:00:00",
          "location": {
            "id": "CDG",
            "label": "PARIS-ROISSY CDG",
            "terminal_code": "2A"
          }
        },
        "arrival": {
          "city": {
            "id": "PAR",
            "label": "PARIS"
          },
          "date": "20160812",
          "time": "17:00:00",
          "location": {
            "id": "CDG",
            "label": "PARIS-ROISSY CDG",
            "terminal_code": "2A"
          }
        },
        "technical_stops": 0,
        "connection_duration_in_min": 130,
        "stopover_duration_in_min": 130,
        "transport": {
          "type": "PLANE",
          "company": {
            "operator": {
              "id": "SQ",
              "label": "SINGAPORE AIRLINES",
              "logo": "http://www.airfrance.fr/logo",
              "_links": [
                {
                  "rel": "self",
                  "method": "GET",
                  "href": "https://api.clubmed.com/products",
                  "label": "A label"
                }
              ]
            },
            "exploiter": {
              "id": "SQ",
              "label": "SINGAPORE AIRLINES",
              "logo": "http://www.airfrance.fr/logo",
              "_links": [
                {
                  "rel": "self",
                  "method": "GET",
                  "href": "https://api.clubmed.com/products",
                  "label": "A label"
                }
              ]
            }
          },
          "travel_number": "SQ1234",
          "baggage": {
            "quantity": 2,
!           "weight": "23kg",
+         "unit":"kg"
          },
          "vehicle_type": "BOEING 747",
          "class": "PLANE_ECONOMY",
          "reference": "SQ1234",
          "fare_class": "U"
        },
        "attendees": [
          {
            "id": "A",
            "ticket_number": "147-5250548512",
            "status": "VALIDATED",
            "reservation_number": "ZTG2MO",
            "pnr": "UP7XZH"
          }
        ]
      }
    ],
    "_links": [
      {
        "rel": "self",
        "method": "GET",
        "href": "https://api.clubmed.com/products",
        "label": "A label"
      }
    ]
  }
]