Usage
Apps
Create and manage apps for your customers
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create and manage apps for your customers
const app = await vartiq.app.create({
name: "App name",
projectId: "PROJECT_ID",
description: "Optional description", // optional
});
const apps = await vartiq.app.list("PROJECT_ID");
const app = await vartiq.app.get("APP_ID");
const app = await vartiq.app.update("APP_ID", {
name: "New name", // optional
description: "New description" // optional
});
await vartiq.app.delete("APP_ID");