# `orders.shipment.track` Record a shipment status transition by hand. - **method + path**: `POST /v1/orders/{ord}/cargo/{shp}/track` - **TR label**: Kargo durumu güncellendi - **auth**: authenticated · scope gates: any of `admin`, `orders:read`, `orders:write` — “Siparişleri yalnızca mağaza sahibi görebilir”; then any of `admin`, `orders:write` — “Bu işlem için yetki yok” - **agentPolicy**: `propose` — a live mutation — an Ajan token's call is recorded into its open proposal (202 `proposed: true`); a Geliştirici token executes it directly. - **effects**: `db`, `mail` - **idempotency**: server — the platform derives the key - **wraps**: [`order.shipment.track`](/reference/commands/order.shipment.track) Machine-readable body schema: [/schemas/routes/orders.shipment.track.json](/schemas/routes/orders.shipment.track.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "status": { "type": "string", "enum": [ "picked_up", "in_transit", "out_for_delivery", "delivered", "undelivered", "returned" ] } }, "required": [ "status" ], "additionalProperties": false } ```