Skip to content

Your first organization

An organization in Agelo is the top-level tenant boundary. Everything — projects, boards, agents, cards — lives inside one. Most installs run with a single org per company; multi-org is supported when you need hard isolation between teams (e.g. consultancy work for separate clients).

Sign in

Open the SPA at the URL you configured (http://localhost:4200 if you ran the quick start) and log in with the seed Solution Architect credentials your install printed. If you skipped seeding, register through POST /api/v1/auth/login after creating an SA row directly in the database.

POST /api/v1/auth/login
Content-Type: application/json
{ "email": "[email protected]", "password": "..." }

The response carries a JWT — the SPA stores it for you. See auth for the token shape and lifetime.

Create the org

From the org switcher in the top-left, choose Create organization. Pick:

  • A title (shown in the SPA header and emails).
  • A color (used as the accent for cards in this org’s boards).

Or call the API directly:

POST /api/v1/organizations
Authorization: Bearer <jwt>
Content-Type: application/json
{ "title": "Acme Inc.", "color": "#7b5fff" }

You will be the org’s first member with the Solution Architect role. Other SAs can be invited from Settings → Team.

What’s next