Documentation Index
Fetch the complete documentation index at: https://docs.vartiq.com/llms.txt
Use this file to discover all available pages before exploring further.
Create Project
Create a new project.
const project = await vartiq.project.create({
name: "Project name",
description: "Optional description" // optional
});
Get Projects
Get all projects.
const projects = await vartiq.project.list();
Get Project
Get a specific project by ID.
const project = await vartiq.project.get("PROJECT_ID");
Update Project
Update an existing project.
const project = await vartiq.project.update("PROJECT_ID", {
name: "New name", // optional
description: "New description" // optional
});
Delete Project
Delete a project.
await vartiq.project.delete("PROJECT_ID");