# `channel.jobs.list` Durable channel jobs (imports, pushes, batch polls, sweeps) with progress. - **method + path**: `GET /v1/channel/{ext}/jobs` - **TR label**: Pazaryeri işleri - **auth**: authenticated · scope gates: none beyond authentication - **agentPolicy**: `read` — GET, no store effects — every token kind calls it directly. - **effects**: none - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/channel.jobs.list.json](/schemas/routes/channel.jobs.list.json). ## Body No request body. ## Query ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "status": { "type": "string", "enum": [ "queued", "running", "done", "failed", "cancelled" ] }, "kind": { "type": "string", "maxLength": 32 }, "limit": { "type": "integer", "minimum": 1, "maximum": 100 } } } ```