MinecraftAdministrationCenter / mac-docs

Public documentation for the administration panel(both API and UI).
MIT License
0 stars 0 forks source link

Hardware Network Endpoint #13

Open FastFelix771 opened 6 years ago

FastFelix771 commented 6 years ago

Request Example

GET back.end/v1/hardware/network

Reponse Examples

Success

Response-Code: 200 OK

{
    "success": true,
    "content": {
        "interfaces": [
            {
                "link": "up",
                "name": "eth0",
                "speed": "1000",
                "duplex": "full",
                "traffic": {
                    "in": 3430,
                    "out": 14403
                }
            }
        ]
    }
}

Failure

Response-Code: 500 Internal Server Error

{
    "success": false,
    "content": "ERROR_MESSAGE"
}