# `orders.cargo.offers` Create a provider quote for the order and return carrier offers (no store mutation). - **method + path**: `POST /v1/orders/{ord}/cargo/offers` - **TR label**: Kargo teklifleri - **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**: `quote` — a provider call with no store-state change (offers, labels, validators) — every token kind calls it directly. - **effects**: `provider` - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/orders.cargo.offers.json](/schemas/routes/orders.cargo.offers.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "extensionId": { "type": "string", "pattern": "^[a-z0-9-]+\\.[a-z0-9-]+$" } } } ```