Usage
Projects
Create and manage projects
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create and manage projects
const project = await vartiq.project.create({
name: "Project name",
description: "Optional description" // optional
});
const projects = await vartiq.project.list();
const project = await vartiq.project.get("PROJECT_ID");
const project = await vartiq.project.update("PROJECT_ID", {
name: "New name", // optional
description: "New description" // optional
});
await vartiq.project.delete("PROJECT_ID");