Skip to main content

Create App

Create a new app for your customer.
const app = await vartiq.app.create({
  name: "App name",
  projectId: "PROJECT_ID",
  description: "Optional description", // optional
});

Get Apps

Get all apps in a project.
const apps = await vartiq.app.list("PROJECT_ID");

Get App

Get a specific app by ID.
const app = await vartiq.app.get("APP_ID");

Update App

Update an existing app.
const app = await vartiq.app.update("APP_ID", {
  name: "New name", // optional
  description: "New description" // optional
});

Delete App

Delete an app.
await vartiq.app.delete("APP_ID");