Skip to main content

Table

clients

Each row represents a client account with name, slug, balances, and lifecycle flags.

statusgroupRedshift
All tables

clients

Each row represents a client account with name, slug, balances, and lifecycle flags.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

Yes, this table includes a statusgroup column. See Status Group for details.

Column details

ColumnType
companyidvarchar(36)
idvarchar(36)
namevarchar(255)
slugvarchar(255)
updatedattimestamp
deletedbool
disabledbool
createdattimestamp
currentbalancefloat8
startingbalancefloat8
skuvarchar(65535)
statusgroupvarchar(256)
statusgroupupdatedattimestamp

Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.

Platform Documentation

Sample query

select
  t.name,
  t.slug,
  t.currentbalance,
  t.startingbalance,
  t.sku
from clients as t
limit 100