# List workspace projects Retrieve all projects in a specific workspace. Returns a list of project summaries including each project's ID, name, current status, and creation date. Use this endpoint to enumerate existing projects before exporting or checking their status. Endpoint: GET /auth/workspace/{workspaceId}/projects Version: 1.2.0 Security: ShuffllApiKey ## Path parameters: - `workspaceId` (string, required) Unique identifier for the workspace Example: "693fb82afd8d1c43077ba0fe" ## Response 200 fields (application/json): - `id` (string) Unique project identifier Example: "6947b539cc95ea68854bb523" - `name` (string) Project name Example: "Breaking the Agency Mold" - `status` (string) Current project status Enum: "STRUCTURE", "GENERATING_IMAGES", "EDITING", "DONE" - `createdAt` (string) Project creation timestamp Example: "2025-12-15T07:26:34.333Z" ## Response 401 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" - `message` (string) Example: "Bad Request" ## Response 404 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" - `message` (string) Example: "Bad Request"