Automate everything with the Admin API
Everything Mindszi Command Centre can do, your code can do: plans, customers, billing and operations, under the roles you define.

Publishing plans to new markets, bulk price changes, a batch of refunds. The work you used to click through now runs as a script, audited like everything else.
How it works
From portal clicks to pipelines
const admin = new Admin({ role: 'operator' })
await admin.plans.publish('uk-unlimited')
await admin.refunds.create({ order, amount })
the whole tenant · every action audited
Run it like infrastructure
- Full write for operators, read-only for finance and analytics.
- Resource-scoped roles, like a refunds agent that writes refunds and reads everything else.
- The CLI wraps the same API for your terminal.
- Everything the portal shows is reachable by API.
const admin = new Admin({ role: 'operator' })
await admin.plans.publish('uk-unlimited')
await admin.refunds.create({ order, amount })
the whole tenant · every action audited