Skip to content

Manage Customers

How to list, inspect, create, update, and review permissions for customers using the admin customers commands.

List customers

tlm-cli admin customers list

Returns the first 25 customers sorted by code. Use --name to filter:

tlm-cli admin customers list --name "Acme"

Filtered results return up to 100 matches.

Inspect a customer

Show a customer's details, teams, and users:

tlm-cli admin customers show ACME

The output has three sections: a detail panel with Code and Name, a Teams table (ID, Name), and a Users table (ID, Email, First Name, Last Name).

Create a customer

tlm-cli admin customers create --name "Acme Corporation" --code ACME

Preview the request before sending:

tlm-cli admin customers create --name "Acme Corporation" --code ACME --dry-run

Update a customer

Change the name and/or code of an existing customer. Both --name and --code are required even if only one is changing:

tlm-cli admin customers update ACME --name "Acme Corp" --code ACME

Preview first:

tlm-cli admin customers update ACME --name "Acme Corp" --code ACME --dry-run