Create and manage apps for your customers
const app = await vartiq.app.create({ name: "App name", projectId: "PROJECT_ID", description: "Optional description", // optional environment: "development" // optional, defaults to development });
const apps = await vartiq.app.list({ projectId: "PROJECT_ID", environment: "development", // optional limit: 10, // optional, defaults to 10 skip: 0 // optional, defaults to 0 });
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");