Commander Uno 2025 API

Published : 2025-12-17T06:35:16 v2025.11.317.0

Welcome to the CommanderOne2025 API. This API provides all services needed to run the CommanderOne 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
Test if the API is running.

POST /v1/api/Auth/LogIn
Authenticate a user and receive a JWT token.
Body: { "userName": "string", "password": "string" }

POST /v1/api/Auth/ForgotPassword
Initiate password reset process.

Notes