---
uuid: ea303039-12d3-433c-91d2-f1f8a90765c4
date_created: 2025-07-05T08:07:50.855Z
date_updated: 2026-03-11T09:26:05.119Z
outdated: true
end_of_support_date: 2025-06-01
routes: 
  - GET /v3/proposals/{proposal_id}/transport_details
---

# Migration of the route  GET /v3/proposals/{proposal\_id}/transport\_details to the route  GET /v4/proposals/{proposal\_id}/transport\_details

## Context

Upgrade from **GET** - `​ GET /v3/proposals/{proposal_id}/transport_details` to **GET** -  `​ GET /v4/proposals/{proposal_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** -  `​ GET /v4/proposals/{proposal_id}/transport_details`

## Output

```diff
[
  {
    "way": "INBOUND",
    "total_duration_in_min": 745,
    "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"
          }
        },
        "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"
        },
        "technical_stops": 0,
        "connection_duration_in_min": 130,
        "stopover_duration_in_min": 130,
        "duration_in_min": 250,
        "clubmed_transport": false,
        "flight_code": "THEO9E",
        "cancellation_policy_type": "THEO"
      }
    ]
  }
]
```
