# PUT /api/v1/inventory/shipments/{id}

> Update shipment

- **Tag:** inventory:shipments
- **Operation ID:** `update_shipment_api_v1_inventory_shipments__id__put`

## Description

Update a shipment's details.

**Path Parameters:**
- `id`: UUID of the shipment to update

**Request Body:** (all fields optional)
- `status`: Updated shipment status
- `line_items`: Replace line items array
- `fees`: Replace fees array
- `description`: Updated notes
- `tracking_number`: Updated tracking number
- `expected_arrival_date`: Updated arrival date in ISO 8601 format
- `shipped_date`: Updated ship date in ISO 8601 format
- `version`: Version for optimistic locking to prevent concurrent updates (optional)

**Returns:** The updated shipment.

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Parameters

- `id` (path, string, required)

## Request body

Schema: `ShipmentUpdateRequest`

- `fees` (array · Fee) — Updated fees.
- `status` (string) — Updated status.
- `line_items` (array · LineItem) — Updated items.
- `description` (string) — Updated notes.
- `tracking_number` (string) — Updated tracking.
- `expected_arrival_date` (string · date-time) — Updated arrival date.
- `shipped_date` (string · date-time) — Updated ship date.
- `location_id` (string) — Updated destination location.
- `version` (integer) — Version for optimistic locking.

## Responses

### 200 — Successful Response

Schema: `SuccessEnvelope_ShipmentResponse_`

- `success` (boolean)
- `message` (string)
- `code` (string)
- `data` (ShipmentResponse)

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X PUT 'https://api.ondayzero.com/api/v1/inventory/shipments/{id}' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "fees": [],
  "status": "string",
  "line_items": [],
  "description": "string",
  "tracking_number": "string",
  "expected_arrival_date": "2026-01-01T00:00:00Z"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/inventory/shipments/{id}', {
  method: 'PUT',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "fees": [],
  "status": "string",
  "line_items": [],
  "description": "string",
  "tracking_number": "string",
  "expected_arrival_date": "2026-01-01T00:00:00Z"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

payload = {
  "fees": [],
  "status": "string",
  "line_items": [],
  "description": "string",
  "tracking_number": "string",
  "expected_arrival_date": "2026-01-01T00:00:00Z"
}

response = httpx.put("https://api.ondayzero.com/api/v1/inventory/shipments/{id}", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/inventory-shipments/update-shipment
- OpenAPI slice: https://www.ondayzero.com/docs/reference/inventory-shipments/update-shipment/openapi.json
- Other endpoints in **inventory:shipments**: https://www.ondayzero.com/docs/reference/inventory-shipments
