---
title: "Create Shipment"
method: POST
path: "/api/v1/admin/shipments/"
tags: ["admin-shipments"]
---

# Create Shipment

`POST /api/v1/admin/shipments/`

Create a shipment for a project.

## Request body

- ShipmentCreate — Admin creates a shipment for a project.
  - `project_id` string, uuid, required
  - `carrier` string, nullable
  - `tracking_number` string, nullable
  - `tracking_url` string, nullable
  - `status` string, nullable — Initial status (defaults to 'pending' if omitted)
  - `estimated_delivery` string, date, nullable
  - `notes` string, nullable

## Response `201`

Successful Response

- ShipmentResponse — Shipment summary (without events).
  - `id` string, uuid, required
  - `project_id` string, uuid, required
  - `carrier` string, nullable
  - `tracking_number` string, nullable
  - `tracking_url` string, nullable
  - `status` string, required
  - `estimated_delivery` string, date, nullable
  - `actual_delivery` string, date, nullable
  - `shipped_at` string, date-time, nullable
  - `notes` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
