> ## Documentation Index
> Fetch the complete documentation index at: https://docs.grdd.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Luggage Count

> New luggageCount field on the sendTrip payload and on quote vehicle options

<Note>
  **Release Date:** August 2026 · **Product:** GNet Platform · **Endpoint:** `POST /Platform.svc/sendTrip`
  · [View API Docs](https://api.grdd.net/Platform.svc/help/operations/sendTrip)
</Note>

## New Field

`luggageCount` has been added in two places on the reservation payload.

***

### 1. `luggageCount` on the reservation <span style={{color: "#888", fontSize: "0.85em", fontWeight: "normal"}}>string · optional</span>

The number of pieces of luggage for the trip. Send it alongside `passengerCount` so the
receiving operator can assign a vehicle with enough capacity.

```json theme={null}
{
  "passengerCount": "3",
  "luggageCount": "4"
}
```

**Usage guidance:**

<AccordionGroup>
  <Accordion title="Farming out (sending trips to a partner operator)">
    Include `luggageCount` in the payload when known. Partners that cannot store the value
    natively receive it appended to the trip notes as `Luggage Count : <value>`, so it still
    reaches the driver.
  </Accordion>

  <Accordion title="Receiving farm-in jobs">
    Read `luggageCount` from the inbound payload and map it to your own luggage or baggage
    field. Treat a missing or empty value as "not specified" rather than zero.
  </Accordion>
</AccordionGroup>

***

### 2. `luggageCount` on quote vehicle options <span style={{color: "#888", fontSize: "0.85em", fontWeight: "normal"}}>string · optional</span>

On a `QUOTE` reservation, each entry in the `fees` array represents an available vehicle
option. Those entries now carry the vehicle's capacity and display details.

| Field            | Type   | Description                        |
| ---------------- | ------ | ---------------------------------- |
| `vehType`        | string | Vehicle type for this option       |
| `name`           | string | Display name of the vehicle option |
| `passengerCount` | string | Passenger capacity of the vehicle  |
| `luggageCount`   | string | Luggage capacity of the vehicle    |
| `images`         | array  | Image URLs for the vehicle         |

**JSON example:**

```json theme={null}
"fees": [
  {
    "type": "OTHER",
    "code": "BC-102",
    "description": "Business Sedan",
    "name": "Business Sedan",
    "fee": "75.00",
    "currency": "USD",
    "vehType": "SEDAN",
    "passengerCount": "3",
    "luggageCount": "2",
    "images": ["https://example.com/vehicles/business-sedan.jpg"]
  }
]
```

<Note>
  On a reservation request, `luggageCount` is how much luggage the passenger **has**. On a
  quote option, it is how much luggage the vehicle **holds**.
</Note>

***

## Backward Compatibility

<Check>
  The field is **optional** everywhere it appears. Existing integrations require no changes.
  If your platform does not send `luggageCount`, trip processing is unaffected.
</Check>

***

## Questions?

Contact the GNet Platform team at [support@grdd.net](mailto:support@grdd.net).
