Industrial Edge Gateway API Documentation
Welcome to the Industrial Edge Gateway API documentation. The API is RESTful and uses JSON for request and response bodies.
Base URL
http://<gateway-ip>:<port>/api
Default port is usually 8080 or 9090 depending on configuration.
Authentication
Most endpoints require JWT Authentication.
- Call
GET /auth/nonceto get a one-time nonce. - Call
POST /auth/loginwith username and encrypted password (SHA256(password + nonce)). - Use the returned
tokenin theAuthorizationheader:Bearer <token>.
Documentation Modules
- Authentication & User Management
- System Management
- Channel & Device Management (Southbound)
- Edge Computing
- Northbound Configuration
Common Response Format
Success:
{
"code": "0", // or HTTP 200 with data directly
"msg": "Success",
"data": { ... }
}
Error:
{
"code": "1", // or HTTP 4xx/5xx
"error": "Error message description"
}