# `channel.sync.now` Run a sync task now (stock | price | orders | reconcile | finance | claims | questions), optionally scoped to listings. - **method + path**: `POST /v1/channel/{ext}/sync` - **TR label**: Pazaryeri eşitlemesi başlatıldı - **auth**: authenticated · scope gates: any of `admin`, `store:admin` — “Pazaryeri ayarlarını yalnızca mağaza sahibi değiştirebilir” - **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**: `provider`, `db` - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/channel.sync.now.json](/schemas/routes/channel.sync.now.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "kind": { "type": "string", "enum": [ "stock", "price", "orders", "reconcile", "finance", "claims", "questions" ] }, "listingIds": { "maxItems": 100, "type": "array", "items": { "type": "string", "pattern": "^lst_[0-9A-HJKMNP-TV-Z]{26}$" } } }, "required": [ "kind" ], "additionalProperties": false } ```