---
title: "Get a fulfillment order by id"
method: GET
path: "/api/v1/fulfillment-orders/{id}"
tags: ["fulfillment-orders"]
---

# Get a fulfillment order by id

`GET /api/v1/fulfillment-orders/{id}`

Returns the fulfillment order detail scoped to the caller account: the fulfillment order header, its items and its status timeline (tracking events ordered chronologically by occurrence — creation, status changes, cancellation/rejection, each with actor, moment and any reason captured in metadata). Shipments and their tracking live on the nested shipments resource. accountCode comes from the JWT.

## Path parameters

- `id` string, uuid, required

## Response `200`

The fulfillment order detail.

- FulfillmentOrderFindResponse
  - `items` FulfillmentOrderFindItemResponse[], required
    - `metadata` object, nullable, required
    - `sku` string, required
    - `name` string, required
    - `category` string, nullable, required
    - `quantity` number, required
    - `unit_price` number, required
    - `discount` number, required
    - `total_price` number, required
  - `timeline` FulfillmentOrderTimelineFindResponse[], required
    - `metadata` object, nullable, required
    - `id` string, required
    - `previous_status` string, nullable, required
    - `new_status` string, required
    - `user_id` string, nullable, required
    - `service_account_id` string, nullable, required
    - `occurred_at` string, required
  - `shipments` FulfillmentOrderShipmentFindResponse[], required
    - `packages` FulfillmentOrderShipmentPackageFindResponse[], required
      - `dimensions` object, nullable, required
        - `length_cm` number
        - `width_cm` number
        - `height_cm` number
      - `items` object[], required
        - `sku` string
        - `quantity` number
      - `weight_kg` number, nullable, required
      - `label_url` string, nullable, required
    - `metadata` object, nullable, required
    - `timeline` object[], required
      - `id` string
      - `status` string
      - `occurred_at` string
      - `source` string, nullable
      - `event_id` string, nullable
    - `id` string, required
    - `fulfillment_order_id` string, required
    - `order_id` string, required
    - `carrier_id` string, required
    - `status` 'SHIPMENT_CREATED' | 'DISPATCHED' | 'IN_TRANSIT' | 'OUT_FOR_DELIVERY' | 'DELIVERED' | 'DELIVERY_FAILED' | 'RETURNED' | 'LOST' | 'LABEL_CREATED' | 'AWAITING_PICKUP' | 'IN_TRANSFER', required
    - `tracking_code` string, nullable, required
    - `label` string, nullable, required
    - `dispatched_at` string, nullable, required
    - `delivered_at` string, nullable, required
    - `created_at` string, required
    - `updated_at` string, required
  - `metadata` object, nullable, required
  - `id` string, required
  - `order_id` string, required
  - `strategy_id` string, nullable, required
  - `status` string, required
  - `created_at` string, required
  - `updated_at` string, required

## Other responses

- `400` — Invalid path parameter: id is not a UUID v4.
- `401` — Authentication is missing, malformed, expired, or refers to a session that is no longer active.
- `403` — The caller is authenticated but lacks the required permission for this action.
- `404` — FulfillmentOrder not found in the caller account.
- `500` — Unexpected server error. The response body never leaks internal details.

## Changes

- **2026-07-07** `a3b4750a505f` — 32 info
  - added the required property `created_at` to the response with the `200` status
  - added the required property `id` to the response with the `200` status
  - added the required property `items/items/category` to the response with the `200` status
  - added the required property `items/items/discount` to the response with the `200` status
  - …28 more
- **2026-07-07** `84194c31ab85` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/kruzer-corp/apis/oms-api/changes/api/v1/fulfillment-orders/:id/get.md)

---

[API](https://skmtc.dev/kruzer-corp/apis/oms-api.md) · [All operations](https://skmtc.dev/kruzer-corp/apis/oms-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kruzer-corp/oms-api/revisions/38ef6e16a7a8/schema)
