# Create a new project Create a new project with optional mentors. Endpoint: POST /api/ai-mentor/orgs/{org}/projects/ Version: 4.84.1-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) ## Request fields (application/json): - `name` (string, required) Name of the project - `description` (string) Description of the project - `shared` (boolean) Whether this project is shared with others or personal - `mentors_to_add` (array) List of mentor unique IDs to add to the project - `mentors_to_remove` (array) List of mentor unique IDs to remove from the project ## Response 201 fields (application/json): - `id` (integer, required) - `name` (string, required) Name of the project - `description` (string) Description of the project - `shared` (boolean) Whether this project is shared with others or personal - `owner` (integer, required) User who created this project - `owner_username` (string, required) - `platform` (integer,null, required) Platform this project belongs to - `platform_key` (string, required) - `platform_name` (string, required) - `mentor_count` (integer, required) - `is_personal` (boolean, required) - `created_at` (string, required) - `updated_at` (string, required) - `mentors` (array, required) - `mentors.name` (string, required) - `mentors.description` (string,null) - `mentors.unique_id` (string, required) - `mentors.slug` (string, required) ## Response 400 fields