IoT Stadium

API Documentation

LoRaWAN Gateway

LoRaWAN Gateway - GET Device Network List

Lists the available device networks (e.g., TTN, ChirpStack) that the gateway or device can register to. This helps in multi-network support or switching between different LoRaWAN network servers.

Get
https://api.iotstadium.com/ext/device-network
{
	"key": "Content-Type",
	"value": "application/json"
},
{
	"key": "Authorization",
	"value": "Bearer {{token}}"
},
{
    "message": "success",
    "code": 200,
    "data": {
        "device_networks": [
            {
                "id": 2,
                "name": "Helium"
            },
            {
                "id": 1,
                "name": "TTN V3"
            }
        ]
    }
}
{
    "success": false,
    "error": {
        "code": 401,
        "message": "Unauthorized: Invalid or missing authentication token"
    }
}