# `channel.package.label` Fetch the marketplace cargo label for a package (ZPL, or rendered PDF/PNG). - **method + path**: `POST /v1/orders/{ord}/channel/label` - **TR label**: Pazaryeri kargo etiketi - **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/channel.package.label.json](/schemas/routes/channel.package.label.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "format": { "default": "PDF", "type": "string", "enum": [ "ZPL", "PDF", "PNG" ] }, "packageId": { "type": "string", "pattern": "^pkg_[0-9A-HJKMNP-TV-Z]{26}$" } }, "additionalProperties": false } ```