Magenta Console

Sessions & OAuth

Authentication

Google Workspace login, CMYK OTP, and magenta_auth sessions.

← All guides

Admin console (Google Workspace)

  1. Open the admin login surface: /login on the admin host
  2. GET /api/auth/status — check if OAuth is configured
  3. GET /api/auth/google/start — begin OAuth flow
  4. Callback: /api/auth/google/callback
  5. Session cookie: magenta_session

There is no hard-coded HTML login page. Sign-in uses the Radix/Tailwind admin UI.

CMYK mobile OTP

# Send OTP
POST /api/cmyk/auth/otp/send
{"phone": "+15551234567"}

# Verify
POST /api/cmyk/auth/otp/verify
{"phone": "+15551234567", "code": "123456"}