Commander Uno 2025 API

Welcome to the CommanderOne2025 API. This API provides authentication and user management endpoints for your 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.
POST /v1/api/Auth/ResetPassword
Reset password using answers to security questions.
POST /v1/api/Auth/ResetPasswordEmail
Reset password using a code sent via email.

Swagger UI

For interactive API documentation and testing, visit: /swagger

Notes