@cpod/sdk - v0.2.7
    Preparing search index...

    Function createProject

    • Create a new project

      Parameters

      Returns Promise<Project>

      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}`);