Documentation

How-to guides for Car Storage Software

Practical guides for setting up your facility, managing cars and customers, and running day-to-day operations.

Search documentation

Search documentation guides and how-to articles.

Browse documentation

Settings

Connect the API

Enable the team API from Settings, create a read-only key, and call /api/v1 for cars and customers.

The public API is already built. Settings → Integrations is where you turn it on, create a key, and open the docs. After it is on, the same keys also stay on Settings > Team.

This lives under Settings > Integrations.

What you will accomplish

  • Enable API from Settings → Integrations.
  • Create a team-scoped key with read:cars and/or read:customers.
  • Copy the secret once and store it in your integration.
  • Confirm a request in the interactive docs at /api-docs.

Before you start

  • You need admin access to turn the API on and to create or revoke keys.
  • You need the Schedule permission to open Settings > Integrations.
  • Know which system will call CSS so you can name the key after that vendor.

Enable the API and create a key

  1. Open Integrations

    Go to Settings > Integrations and click API.

  2. Turn it on

    Enable the integration. The same dialog then shows key management and a link to the docs.

  3. Create an API key

    Click Create API key, name it, choose scopes, and optionally set an expiration. Copy the secret immediately — it is shown only once.

  4. Call /api/v1

    Send the key as Authorization: Bearer <api_key> or x-api-key: <api_key>. GET /api/v1/cars needs read:cars. GET /api/v1/customers needs read:customers.

The card shows On after you enable it, and Connected after at least one active key exists.

What success looks like

  • The API card shows Connected.
  • GET /api/v1/cars or GET /api/v1/customers returns only this team's records.
  • Interactive docs at /api-docs load and accept the same key.

Troubleshooting