## Create a project `$ flora projects create` **post** `/projects` Creates a new Flora project in the requested workspace. Mutating public API requests support an optional Idempotency-Key header for client retries; duplicate keys within two hours return idempotency_duplicate. ### Parameters - `--name: string` Project name - `--workspace-id: string` Workspace identifier ### Returns - `ProjectNewResponse: object { created_at, last_modified, name, 3 more }` - `created_at: number` - `last_modified: number` - `name: string` Project name - `origin: string` Project origin - `project_id: string` Project identifier - `workspace_id: string` Workspace identifier ### Example ```cli flora projects create \ --api-key 'My API Key' \ --name 'Spring Campaign' \ --workspace-id ws_abc123 ``` #### Response ```json { "created_at": 0, "last_modified": 0, "name": "Spring Campaign", "origin": "api", "project_id": "prj_abc123", "workspace_id": "ws_abc123" } ```