📋 REST API Endpoints:
Basic Information:
POST /api/auth
Description Only:
POST /api/auth?description=1
Groups Only:
POST /api/auth?groups=1
All Information:
POST /api/auth?all=1
🔧 cURL Examples:
// Basic information
curl -X POST http://localhost:8080/api/auth \
-H "Content-Type: application/json" \
-d '{"username": "tv", "password": "password123"}'
// Description only
curl -X POST "http://localhost:8080/api/auth?description=1" \
-H "Content-Type: application/json" \
-d '{"username": "tv", "password": "password123"}'
// Groups only
curl -X POST "http://localhost:8080/api/auth?groups=1" \
-H "Content-Type: application/json" \
-d '{"username": "tv", "password": "password123"}'
// All information
curl -X POST "http://localhost:8080/api/auth?all=1" \
-H "Content-Type: application/json" \
-d '{"username": "tv", "password": "password123"}'