Appearance
IPCom API Documentation v5.0.0
Welcome to the official IPCom REST API documentation. This comprehensive guide covers all endpoints, authentication methods, and integration patterns for IPCom v5.0.0.
🏁 Quick Start
Get started with IPCom API in minutes:
1. Authentication
bash
curl -X POST "http://your-server:8080/api/login" \
-H "Content-Type: application/json" \
-d '{
"username": "admin",
"password": "your_password",
"api_key": ""
}'2. Use the Token
bash
curl -X GET "http://your-server:8080/api/status" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"