---
title: "View shipment"
method: GET
path: "/api/v1/shipments/{id}"
tags: ["Delivery"]
---

# View shipment

`GET /api/v1/shipments/{id}`

Returns details of a shipment aka delivery

## Path parameters

- `id` string, required — Resource identifier.

## Response `200`

Operation completed successfully.

- object
  - `data` object — Data representation of a single delivery aka shipment
    - `id` string, required — Resource identifier.
    - `tracking` object, required — Tracking information for the delivery
      - `number` string, required — The tracking number provided by the carrier.
      - `link` string — Carrier tracking link
      - `carrier` string — Carrier that shipping the delivery
    - `deliveryNote` object, nullable, required — Nullable reference to another resource
      - `id` string, required — Resource identifier.
    - `salesOrder` object, nullable, required — Nullable reference to another resource
      - `id` string, required — Resource identifier.
    - `shippingMethod` object, nullable, required — Nullable reference to another resource
      - `id` string, required — Resource identifier.
    - `sentAt` string, date, nullable — Date when the delivery was sent
    - `sentAtTimestamp` string, datetime, nullable — Timestamp when the delivery was sent
    - `label` object, nullable — Shipping label for the delivery
      - `fileType` string, required — Label's file type
      - `fileContent` string, required — Base 64 encoded label
    - `additionalPackages` object[] — Additional parcels associated with this shipment
      - `id` string, required — Resource identifier.
      - `trackingNumber` string, nullable, required — The tracking number for this parcel.
      - `weight` number, float, nullable — Weight of the parcel
      - `createdAt` string, datetime, nullable — Creation timestamp of the parcel record
      - `updatedAt` string, datetime, nullable — Last update timestamp of the parcel record

## Other responses

- `401` — Unable to authenticate the client
- `403` — Unable to authorize the client
- `404` — Resource was not found or not enough access privileges
- `406` — Requested resource representation does not exist.

---

[API](https://skmtc.net/xentral/apis/xentral-api.md) · [All operations](https://skmtc.net/xentral/apis/xentral-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xentral/xentral-api/revisions/8a27ba392442/schema)
