Kaiten
Console

Customers

Create, view, and manage customers in the Console.

Customers

The Customers section (/customers) lets you manage the end clients of your SaaS product.

Customer List

The main view shows all customers in your organization with their name, slug, creation date, and number of instances.

Customer list view

Creating a Customer

  1. Click New Customer (or navigate to /customers/new)
  2. Fill in:
    • Name — Display name (e.g. "Acme Corporation")
    • Slug — URL-safe identifier (auto-generated or custom)
    • External Customer ID — Optional reference for CRM integration
  3. Click Create

Customer Detail

Click on a customer to see their detail page (/customers/{slug}):

  • Overview — Customer metadata and properties
  • Instances — All deployments for this customer (see Instances)
Customer detail page

Editing a Customer

On the detail page, you can update the customer's name and external ID.

Deleting a Customer

Delete a customer from the detail page. This requires all associated instances to be removed first.

API Equivalent

All console operations map directly to REST API endpoints:

ActionEndpoint
ListGET /api/customers
CreatePOST /api/customers
GetGET /api/customers/{slug}
UpdatePUT /api/customers/{slug}
DeleteDELETE /api/customers/{slug}

On this page