# `channel.questions.answer` Answer a customer question (moderated by the marketplace). - **method + path**: `POST /v1/channel/{ext}/questions/{qid}/answer` - **TR label**: Müşteri sorusu yanıtlandı - **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**: `provider` - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/channel.questions.answer.json](/schemas/routes/channel.questions.answer.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "text": { "type": "string", "minLength": 10, "maxLength": 2000 } }, "required": [ "text" ], "additionalProperties": false } ```