# Get upload job queue summaries Retrieves summary statistics for all upload processing queues, showing counts of jobs in submitted, in-progress, and completed states. Provides a high-level overview of the upload processing system's current workload and performance. Useful for monitoring system health and identifying processing bottlenecks. RBAC: requires Uploads.Read Endpoint: GET /api/v1/admin/uploads/jobs/summary Version: 1.0 Security: ## Response 200 fields (application/json): - `queue` (string, required) Enum: "Submitted", "InProgress", "Completed" - `count` (integer) - `averageTimeInQueueMillis` (integer) - `oldestTimeInQueueMillis` (integer) - `averageProcessingTimeMillis` (integer) - `averageWaitingTimeMillis` (integer) - `p95TimeInQueueMillis` (integer) - `successCount` (integer) - `failureCount` (integer) ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation