Create a new project
Project creation data (name, description, expert_ids)
The newly created project object
400 - Invalid project data
401 - Not authenticated
import { createProject } from "@cpod/sdk";const project = await createProject({ name: "Q4 Analysis", description: "Quarterly performance analysis", expert_ids: ["expert-sales", "expert-finance"],});console.log(`Created project: ${project.id}`); Copy
import { createProject } from "@cpod/sdk";const project = await createProject({ name: "Q4 Analysis", description: "Quarterly performance analysis", expert_ids: ["expert-sales", "expert-finance"],});console.log(`Created project: ${project.id}`);
Create a new project