Commander Uno 2025 API

Published : 2026-06-12T17:42:32 v2026.5.131.0

Welcome to the CommanderOne2025 API. This API provides all services needed to run the CommanderOne 2025 application.

Base URLs

Authentication

The API uses JWT Bearer tokens for authentication. Obtain a token via the LogIn endpoint and include it in the Authorization header for protected requests:

Authorization: Bearer <your-jwt-token>

Key Endpoints

GET /v1/api/Auth/TestApi
Tests if the API is running, and returns the version.
POST /v1/api/Auth/LogIn
Authenticates a user and receives a JWT token.
Body: { "userName": "string", "password": "string" }

Notes